<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: PDFWidget for 2.1 in ArcGIS Viewer for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28036#M1557</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Philipp,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the post..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anshul&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Nov 2010 07:12:59 GMT</pubDate>
    <dc:creator>AnshulMantri</dc:creator>
    <dc:date>2010-11-25T07:12:59Z</dc:date>
    <item>
      <title>PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28028#M1549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: philipp37&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;BrianO had created a PDFWidget for 1.3 (&lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/12142-FSV-1.3-My-version-of-PDF-Widget-using-AlivePDF?highlight=print"&gt;http://forums.arcgis.com/threads/12142-FSV-1.3-My-version-of-PDF-Widget-using-AlivePDF?highlight=print&lt;/A&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have ported this to 2.1.&amp;nbsp; I have commented out the portrait orientation option since the map image does not yet scale properly.&amp;nbsp; That leaves landscape by default and it too is getting cut-off (see attached) on the bottom - so if anyone knows how to scale this properly please respond here!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I was receiving an 'Alpha channel not supported for now' error - you need to replace the logo.jpg (referenced on line 99 of the mxml) with your logo that has no alpha channel (I got mine to work by exporting the logo from photoshop....) - not sure what is going on here exactly.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 17:13:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28028#M1549</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2010-10-20T17:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28029#M1550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: philipp37&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Oh ya...you need to include the AlivePDF.swc library in your build path.&amp;nbsp; I've attached the latest AlivePDF.swc here (0.1.5 RC).&amp;nbsp; Don't forget to also add PDFWidget.mxml to the modules for building...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 17:18:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28029#M1550</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2010-10-20T17:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28030#M1551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I don't think there is much that can be done in terms of scaling the image without distortion...sometimes the image will just not fill up the entire pdf.&amp;nbsp; So I modified the placement of the titleblock and map.&amp;nbsp; Now the titleblock is at the top and the map below...that way the map can never overlap the titleblock.&amp;nbsp; If interested copy the code below and replace everything below '//create a landscape map' in the PDFWidget.mxml posted above...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;else&amp;nbsp; //create a landscape map
&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //create landscape letter-size pdf and set margins
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF=new PDF(Orientation.LANDSCAPE,Unit.MM,Size.LETTER);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.setDisplayMode(Display.FULL_PAGE,Layout.SINGLE_PAGE);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.setMargins(2,2,2,2);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.addPage();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //add PDF document metadata--most people never notice but give credit where due
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //and create a "well-formed" pdf document
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.setTitle(txtTitle.text);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.setSubject(pdfSubject);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.setAuthor(pdfAuthor);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.setKeywords(pdfKeywords);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.setCreator(pdfCreator);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //draw neat line
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //landPDF.drawRect(new Rectangle(2,2,275,212));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //draw title block rectangle
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.drawRect(new Rectangle(3,3,273,32));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //add logo image
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.addImageStream(new myLogoJPG() as ByteArray,"DeviceRGB",null,3,5,40,0,0,1,Blend.NORMAL,null);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //add title text entered in widget input
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.setFont(timesboldFont,22);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.addText(txtTitle.text,50,10);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //add subtitle text entered in widget input
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.setFont(timesFont,16);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.addText(txtSubtitle.text,50,17);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //add some disclaimer text
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var landDisclaimerLine1:String="DISCLAIMER: This map is for informational purposes and has not been prepared for, nor is it suitable for legal, surveying, or engineering purposes. Users of this information ";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var landDisclaimerLine2:String="should review or consult the primary data and information sources to ascertain the usability of the information. The XXXXXXXXXXXXXX makes no warranty or ascertain ";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var landDisclaimerLine3:String="the usability of the information. The XXXXXXXXXXXXX makes no warranty or guarantee as to the content, accuracy, timeliness, or completeness of any of the data";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var landDisclaimerLine4:String="provided, and assumes no legal responsibility for the information contained hereon.";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.setFont(arialFont,8);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.addText(landDisclaimerLine1,50,21);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.addText(landDisclaimerLine2,50,24);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.addText(landDisclaimerLine3,50,27);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.addText(landDisclaimerLine4,50,30);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //add copyright text
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.setFont(arialFont,9);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.addText(copyright,50,33);
 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //add print timestamp
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.setFont(arialFont,8);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var nowLand:String = getCurrentDateTime();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.addText("Printed: " + nowLand,5,7);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //add the map
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var rsLand:Resize=new Resize("FitToPage","left");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; landPDF.addImage(map,rsLand,2,35,0,0,0,1,false,ImageFormat.JPG,100,Blend.NORMAL,null);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //save the pdf
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; const fileReferenceLand:FileReference = new FileReference();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fileReferenceLand.save(landPDF.save(Method.LOCAL,"",Download.INLINE,"landPDF.pdf"),"map.pdf");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp; 
&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; 
&amp;nbsp; ]]&amp;gt; 
&amp;lt;/fx:Script&amp;gt;
&amp;lt;viewer:WidgetTemplate id="wTemplate"&amp;nbsp; height="190" width="300"&amp;gt;
&amp;nbsp; &amp;lt;mx:ViewStack id="viewStack" width="100%" height="100%" creationPolicy="all"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:VBox width="100%" height="100%" verticalGap="10" paddingTop="10"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:Form id="frmPrint" verticalScrollPolicy="off" paddingBottom="0" width="100%" height="100%"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:FormItem label="{titleLabel}" styleName="WidgetText" width="100%"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:TextInput id="txtTitle" text="{title}" /&amp;gt; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/mx:FormItem&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:FormItem label="{subtitleLabel}" styleName="WidgetText" width="100%"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:TextInput id="txtSubtitle" text="{subtitle}" /&amp;gt; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/mx:FormItem&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!--mx:FormItem label="Label"--&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:ToggleButtonBar id="pgOrient" selectedIndex="-1" itemClick="setPageOrientation(event);"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:dataProvider&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fx:Array&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!--fx:String&amp;gt;Portrait&amp;lt;/fx:String--&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!--fx:String&amp;gt;Landscape&amp;lt;/fx:String--&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/fx:Array&amp;gt; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/mx:dataProvider&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/mx:ToggleButtonBar&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!--/mx:FormItem--&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:HBox horizontalAlign="center" width="100%"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:Button label="{submitLabel}" click="makePDF(event)" /&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/mx:HBox&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:Spacer width="100%" height="1" /&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;s:Label&amp;nbsp; text="&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Be patient while PDF is building..."&amp;nbsp; fontStyle="normal" fontSize="12" /&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/mx:Form&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/mx:VBox&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;/mx:ViewStack&amp;gt;
 &amp;lt;/viewer:WidgetTemplate&amp;gt;
&amp;lt;/viewer:BaseWidget&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 21:07:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28030#M1551</guid>
      <dc:creator>philippschnetzer</dc:creator>
      <dc:date>2021-12-10T21:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28031#M1552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: thejones23&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is a print sample that Mark H put together. I find it to be a very nice utility for trimming the map to get the print size correct. There are a few different pieces to get this to work but I would recommend downloading it and looking at the code to see how he trims the map. I use some of this code on my site and it has been very helpful for sizing the map correctly. Technically you don't need all of the pieces and you can just call his PrintMapUtil.as to return your map as a bitmap. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.esri.com/arcgisserver/apis/flex/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=16778"&gt;http://resources.esri.com/arcgisserver/apis/flex/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=16778&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Oct 2010 15:22:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28031#M1552</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2010-10-22T15:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28032#M1553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, I will look into that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;On a different note...is it possible to ensure the background colour set in the viewer gets exported to the PDF?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In my config.xml I have added a sixth element which designates the background colour....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;stylecolors&amp;gt;0xCCCCCC,0x777777,0x555555,0x333333,0xCCCCCC,&lt;/SPAN&gt;&lt;STRONG&gt;0xBED2FF&lt;/STRONG&gt;&lt;SPAN&gt;&amp;lt;/stylecolors&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;....but this does not make it onto the PDF.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Oct 2010 15:17:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28032#M1553</guid>
      <dc:creator>philippschnetzer</dc:creator>
      <dc:date>2010-10-23T15:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28033#M1554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: rscheitlin&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Philipp,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; I have found that you have to explicitly set the map objects background color before you take the snapshot.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Oct 2010 16:55:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28033#M1554</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2010-10-23T16:55:11Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28034#M1555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Oh ya...you need to include the AlivePDF.swc library in your build path.&amp;nbsp; I've attached the latest AlivePDF.swc here (0.1.5 RC).&amp;nbsp; Don't forget to also add PDFWidget.mxml to the modules for building...&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Philipp,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have downloaded the source code for PDF Widget and incorporated the AlivePDF.swc to libs. The widget is implemented error free, but does not proceed further after I click on the "Generate PDF" button. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could you post the latest widget source code?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;nshaukat&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Nov 2010 19:18:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28034#M1555</guid>
      <dc:creator>NadeemShaukat</dc:creator>
      <dc:date>2010-11-16T19:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28035#M1556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: philipp37&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;nshaukat&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I haven't made any changes to the code that you have already implemented.&amp;nbsp; Did you add the PDFWidget.mxml to the 'modules'?&amp;nbsp; Also, once you click the 'Generate PDF' button there is no progress bar to let you know how long the process will take....for me it has been running anywhere from 5 seconds to about 25 seconds....&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 10:47:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28035#M1556</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2010-11-17T10:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28036#M1557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Philipp,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the post..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anshul&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Nov 2010 07:12:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28036#M1557</guid>
      <dc:creator>AnshulMantri</dc:creator>
      <dc:date>2010-11-25T07:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28037#M1558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: philipp37&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If anyone could chime in with the method on how to include certain widgets (ie, Roberts Dynamic Legend widget) on the resulting PDF that would be much appreciated.&amp;nbsp; Export to PDF is great but certain maps simply require a legend to be printed (ie, zoning maps).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for any help!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Dec 2010 11:52:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28037#M1558</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2010-12-06T11:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28038#M1559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Philipp,&lt;BR /&gt;&lt;BR /&gt;I have downloaded the source code for PDF Widget and incorporated the AlivePDF.swc to libs. The widget is implemented error free, but does not proceed further after I click on the "Generate PDF" button. &lt;BR /&gt;&lt;BR /&gt;Could you post the latest widget source code?&lt;BR /&gt;&lt;BR /&gt;nshaukat&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hey Nadeem,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Did you ever get this to work? I am having the same problem with the widget, it is not doing anything, when i click on Generate PDF. Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Dec 2010 15:26:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28038#M1559</guid>
      <dc:creator>SandeepTalasila</dc:creator>
      <dc:date>2010-12-06T15:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28039#M1560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: philipp37&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;with the addition of this import statement:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;import com.esri.viewer.ViewerContainer;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and changing this line (line 296):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;landPDF.addImage(map,rsLand,2,35,0,0,0,1,false,ImageFormat.PNG,100,Blend.NORMAL,null);&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;to this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;landPDF.addImage(ViewerContainer.getInstance(),rsLand,2,35,0,0,0,1,false,ImageFormat.PNG,100,Blend.NORMAL,null);&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;it is possible to print everything that is visible on your map (ie, open widgets, legend, scalebar, navigation control and header). What I would like to do is to remove the header and navigation widgets from the resulting pdf....anyone have any ideas? Also, while I'm on the topic it would also be nice to see a north arrow in there....I guess that could be done now using the StaticImageWidget.....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 13:51:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28039#M1560</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2010-12-21T13:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28040#M1561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hey Nadeem,&lt;BR /&gt;Did you ever get this to work? I am having the same problem with the widget, it is not doing anything, when i click on Generate PDF. Thanks.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;tsandeep&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have figured out that if you take out the Logo's Image Bindable and ImageStream lines that are there in the mxml to show logo, the widget functionality proceeds and creates a PDF. Try it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Nadeem&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Dec 2010 03:37:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28040#M1561</guid>
      <dc:creator>NadeemShaukat</dc:creator>
      <dc:date>2010-12-23T03:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28041#M1562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: lissajo64&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to implement this widget for my site. So far it works well.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I wonder if since there isn't really a way to see a progress bar to show when it is done generating the pdf, would there possibly be a way to make it open when it is finished?&amp;nbsp; Any ideas would be greatly appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Melissa&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jan 2011 19:25:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28041#M1562</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-01-20T19:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28042#M1563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I think I have asked this before - but will try again....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have this PDFwidget working so that all open widgets, navigation controls, scalebar and header get inserted on the map.&amp;nbsp; I had to do this so that you could have the Dynamic Legend widget open and have it appear on the map.&amp;nbsp; The drawback is that all other open widgets get included as well - including the actual PDFwidget!&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It would be ideal to be able to remove the header and navigation widget and be able to choose which widgets to include.&amp;nbsp; This is probably a tall order....and I am not sure how to go about this...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for any input!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 10:50:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28042#M1563</guid>
      <dc:creator>philippschnetzer</dc:creator>
      <dc:date>2011-02-03T10:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28043#M1564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: lallen4585&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ahhh, seeing a dynamic legend printed on the map, now that would be good!&amp;nbsp; Takes me back to the good ol' days.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2011 18:03:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28043#M1564</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-02-04T18:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28044#M1565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;This is a print sample that Mark H put together. I find it to be a very nice utility for trimming the map to get the print size correct. There are a few different pieces to get this to work but I would recommend downloading it and looking at the code to see how he trims the map. I use some of this code on my site and it has been very helpful for sizing the map correctly. Technically you don't need all of the pieces and you can just call his PrintMapUtil.as to return your map as a bitmap. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.esri.com/arcgisserver/apis/flex/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=16778"&gt;http://resources.esri.com/arcgisserver/apis/flex/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=16778&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thejones23, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could you elaborate on how to use the PrintMapUtil.as in conjunction with AlivePDF?&amp;nbsp; I'm already using the print sample you're talking about, but using it for the PDF is a bit beyond my understanding, especially since I'm really new to AlivePDF.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 15:45:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28044#M1565</guid>
      <dc:creator>MelonyBarrett</dc:creator>
      <dc:date>2011-02-10T15:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28045#M1566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: nathanenge&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm having sandbox violations when I attempt to export if I have WMS in my operational layers that have skipgetcapabilities="true"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;does this export to pdf support WMS?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2011 21:54:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28045#M1566</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-04-14T21:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28046#M1567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I'm having sandbox violations when I attempt to export if I have WMS in my operational layers that have skipgetcapabilities="true"&lt;BR /&gt; &lt;BR /&gt;does this export to pdf support WMS?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The general problem is that Flash does not let you take a snapshot of a image (access its bitmap data) if it's loaded from another domain and the domain doesn't have a permissive crossdomain.xml file. You can work around this by using a proxy.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 22:16:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28046#M1567</guid>
      <dc:creator>DasaPaddock</dc:creator>
      <dc:date>2011-04-20T22:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: PDFWidget for 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28047#M1568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: nathanenge&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;dasa&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am not entirely sure how to deal with proxy pages. this is not my area of expertise.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have IIS on win7 and .net framework vers 2.0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have downloaded the proxy pages for .net from here: &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/flex/help/index.html#/Using_the_proxy_page/017p0000000v000000/"&gt;http://help.arcgis.com/en/webapi/flex/help/index.html#/Using_the_proxy_page/017p0000000v000000/&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and am trying to follow the instructions there. but is a bit convoluted. I need to create a new directory in IIS to put my proxy pages in, then convert to app? or does it mean the web app for flex viewer that I have running, that is referencing WMS from another server?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Apr 2011 20:33:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/pdfwidget-for-2-1/m-p/28047#M1568</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-04-26T20:33:58Z</dc:date>
    </item>
  </channel>
</rss>

