User Piyush Giri - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T02:42:11Z http://stackoverflow.com/feeds/user/82433 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1086436/clone-flex-component 0 clone flex component Piyush Giri 2009-07-06T10:53:33Z 2009-11-19T14:28:23Z <p>Hey I am trying to duplicate a flex component at run time.</p> <p>For example if i have this</p> <p>mx:Button label="btn" id="btn" click="handleClick(event)"/></p> <p>i should be able to call a function called DuplicateComponent() and it should return me a UI component thts exactly same as above button including the event listeners with it.</p> <p>Can some one help me please?? Thanks in advance</p> http://stackoverflow.com/questions/1017279/flex-zoom-and-scroll-problem 0 Flex zoom and scroll problem Piyush Giri 2009-06-19T10:17:32Z 2009-10-09T16:40:53Z <p>Hi All, i am required to zoom a canvas through Hslider. The problem is after zooming the canvas i cannot scroll to the extreme left and top of the canvas i.e some part of left and top canvas are not visible. i cannot find the reason. The source code for the example is given below. "</p> <p></p> <p></p> <p> <pre><code>import mx.events.SliderEvent; private function changeZoom(event:SliderEvent) : void { layout_cnv.scaleY = event.target.values[0]*2/100; layout_cnv.scaleX = event.target.values[0]*2/100; } private function adjustDefaultZoom() : void { layout_cnv.scaleX = slider.values[0]/100*2; layout_cnv.scaleY = slider.values[0]/100*2; } private function myDataTipFunc(val:String):String { return String(val)+ "%"; } ]]&gt; &lt;/mx:Script&gt; &lt;mx:Panel title="Zoom Demo" width="100%" height="100%"&gt; &lt;mx:Canvas id="canvas" width="100%" height="100%" horizontalScrollPosition="500"&gt; &lt;!--&lt;mx:Image id="img" x="{canvas.width/2 - img.width/2}" y="{canvas.height/2 - img.height/2}" source="@Embed('../assets/products/Nokia_6630.png')" creationComplete="adjustDefaultZoom()" /&gt;--&gt; &lt;mx:Canvas visible="true" id="layout_cnv" creationComplete="adjustDefaultZoom()" borderStyle="solid" height="300" width="500" verticalCenter="0" horizontalCenter="0" verticalScrollPolicy="off" horizontalScrollPolicy="off" backgroundColor="#FFFFFF"&gt; &lt;mx:TextArea id="company_name_ta" visible="true" selectable="true" editable="true" height="20" backgroundAlpha="0.0" borderColor="#000000" width="200" fontSize="14" borderStyle="solid" x="10" y="10" /&gt; &lt;mx:TextArea id="job_ta" height="20" selectable="true" borderColor="#000000" width="200" x="289" y="10" backgroundAlpha="0.0" textAlign="right"/&gt; &lt;mx:TextArea id="fullname_ta" height="20" selectable="true" backgroundAlpha="0.0" borderColor="#000000" width="200" x="10" y="38" editable="true" enabled="true"/&gt; &lt;mx:TextArea id="adress_line3_ta" height="20" selectable="true" backgroundAlpha="0.0" borderColor="#000000" width="200" x="10" y="268"/&gt; &lt;mx:TextArea id="adress_line2_ta" height="20" selectable="true" backgroundAlpha="0.0" borderColor="#000000" width="200" x="10" y="240"/&gt; &lt;mx:TextArea id="adress_line1_ta" height="20" selectable="true" backgroundAlpha="0.0" borderColor="#000000" width="200" y="212" x="10"/&gt; &lt;mx:TextArea id="mobile_ta" height="20" selectable="true" backgroundAlpha="0.0" borderColor="#000000" width="200" x="289" y="40" textAlign="right"/&gt; &lt;mx:TextArea id="fax_ta" height="20" selectable="true" backgroundAlpha="0.0" borderColor="#000000" width="200" y="68" x="289" textAlign="right"/&gt; &lt;mx:TextArea id="email_ta" height="20" selectable="true" backgroundAlpha="0.0" borderColor="#000000" width="200" x="289" y="268" textAlign="right"/&gt; &lt;/mx:Canvas&gt; &lt;/mx:Canvas&gt; &lt;mx:ControlBar horizontalAlign="center"&gt; &lt;mx:HSlider id="slider" width="400" minimum="1" maximum="100" labels="['0%','100%']" values="[50]" tickInterval="10" snapInterval="1" liveDragging="true" change="changeZoom(event)" dataTipFormatFunction="myDataTipFunc" /&gt; &lt;/mx:ControlBar&gt; &lt;/mx:Panel&gt; </code></pre> <p> "</p> <p>please help . Thanks in advance.</p> http://stackoverflow.com/questions/1147405/date-picker-in-flash-cs3 0 Date picker in FLASH CS3 Piyush Giri 2009-07-18T12:19:09Z 2009-09-04T16:39:15Z <p>Hi All, I need to create or get a date picker component in Flash AS3. Please someone help.Thanks in advance Regards</p> http://stackoverflow.com/questions/999825/flex-drag-and-resize 0 Flex Drag and resize Piyush Giri 2009-06-16T06:27:19Z 2009-08-26T13:25:58Z <p>Hi All, I need to draw Line, Circle, and rectangle by mouse drag on canvas and then i need to to move and resize the drawn shapes. How i can perform this in flex as i am new on this platform. Please suggest me the method or refer any example with source to make it understand to me. Please Help. Thanks in Advance.</p> http://stackoverflow.com/questions/1298362/flash-image-gallery -1 Flash Image gallery Piyush Giri 2009-08-19T07:46:09Z 2009-08-19T07:49:10Z <p>Hi All I've to create a flash image gallery as same as like at the given link:</p> <p><a href="http://movies.yahoo.com/summer-movies/shorts/1810030254" rel="nofollow">http://movies.yahoo.com/summer-movies/shorts/1810030254</a></p> <p>Can someone suggest me any tutorial for or link for solving the given purpose. Thanks in advance</p> http://stackoverflow.com/questions/1130173/flex-combobox-customize-problem 0 flex combobox customize problem Piyush Giri 2009-07-15T08:42:27Z 2009-07-15T09:06:00Z <p>Hi All , I'm new to flex and i need to create item and subitems in combobox, where only subitem is clickable. similar to what is shown in the given link as under: <a href="http://blog.flexexamples.com/2007/09/25/creating-a-custom-combobox-item-renderer-in-flex/" rel="nofollow">http://blog.flexexamples.com/2007/09/25/creating-a-custom-combobox-item-renderer-in-flex/</a> but here both header and option are clicked at the same time whereas i need that only option should be clickable Is there any way to do the same. PLease help. Thanx in advance.</p> http://stackoverflow.com/questions/1072896/passing-values-between-functions 1 Passing values between functions Piyush Giri 2009-07-02T07:02:31Z 2009-07-14T18:34:56Z <p>Hi All is there any way to locally define a variable in a function and then pass it to the oher function. I mean to say is it possible the pass a local value from one function to other function. Somebody Please suggest me the solution. Thanks in advance</p> http://stackoverflow.com/questions/1097343/flex-problem-in-saving-pdf-at-server 0 Flex problem in saving PDF at server Piyush Giri 2009-07-08T10:51:45Z 2009-07-13T06:47:23Z <p>Hi All. I am a new bee to flex. What i am trying to do is to generate and save the layout design which nothing but canvas to a pdf format at the server. Currently i am able to display the pdf in browser (see the function below:) but cannot save the file at the server.</p> <pre><code> private function continueToPdf():void{ myPDF = new PDF( Orientation.LANDSCAPE, Unit.MM, Size.A4 ); myPDF.setDisplayMode ( Display.FULL_WIDTH ); myPDF.addPage(); myPDF.addImage(layout_cnv); myPDF.save( Method.REMOTE, "http://flexindia.org/designtool/upload/create.php",Download.INLINE ,"drawing.pdf" ); } </code></pre> <p>where layout_cnv is a canvas.Also i am using AlivePDF.swc lbrary for this. The php file at server is create.php</p> <pre><code> &lt;?php $method = $_GET['method']; $name = $_GET['name']; if ( isset ( $GLOBALS["HTTP_RAW_POST_DATA"] )) { // get bytearray $pdf = $GLOBALS["HTTP_RAW_POST_DATA"]; // add headers for download dialog-box header('Content-Type: application/pdf'); header('Content-Length: '.strlen($pdf)); header('Content-disposition:'.$method.'; filename="'.$name.'"'); echo $pdf; } else echo 'An error occured.'; ?&gt; </code></pre> <p>Can someone help me please.</p> http://stackoverflow.com/questions/1097343/flex-problem-in-saving-pdf-at-server/1117989#1117989 0 Answer by Piyush Giri for Flex problem in saving PDF at server Piyush Giri 2009-07-13T06:47:23Z 2009-07-13T06:47:23Z <p>Finally after few days I've discovered the solution for the aforesaid problem. Here for saving the file locally at server i just need to do some changes in the following function as:</p> <pre><code> private function continueToPdf():void{ myPDF = new PDF( Orientation.LANDSCAPE, Unit.MM, Size.A4 ); myPDF.setDisplayMode ( Display.FULL_WIDTH ); myPDF.addPage(); myPDF.addImage(layout_cnv); myPDF.save( Method.REMOTE, "create.php",Download.INLINE ,"drawing.pdf" ); } </code></pre> <p>Where create.php is the server script defined as follows:</p> <pre><code> &lt;?php $fp = fopen( 'upload/drawing.pdf', 'wb' ); fwrite( $fp, $GLOBALS['HTTP_RAW_POST_DATA' ] ); fclose( $fp ); ?&gt; cheers :-) !!! </code></pre> http://stackoverflow.com/questions/1055350/macro-problem 0 macro problem Piyush Giri 2009-06-28T17:40:46Z 2009-06-29T08:08:35Z <p>I'm trying to run the below mentioned code in VB(Excel Macro) but i m stuck with an error which pops up on running saying "Automation Error".</p> <pre><code>strComputer = "." </code></pre> <p>Set objNetwork = CreateObject("Wscript.Network") Set fs = CreateObject("Scripting.FileSystemObject")</p> <p>Set objWMIService = GetObject("winmgmts:\" &amp; strComputer &amp; "\root\cimv2") Set colFiles = objWMIService.ExecQuery _ ("ASSOCIATORS OF {Win32_Directory.Name='U:\'} Where " _ &amp; "ResultClass = CIM_DataFile")</p> <p>For Each objFile In colFiles if objFile.FileName = "ml_*" Then</p> <pre><code> destinationPROD = "X:\ABC\" &amp; objFile.FileName &amp; "." &amp; objFile.Extension objFile.Copy(destinationPROD) objFile.delete else destinationPROD = "X:\PQR\" &amp; objFile.FileName &amp; "." &amp; objFile.Extension objFile.Copy(destinationPROD) objFile.delete End If </code></pre> <p>Next</p> <p>Thanks in advance.Please help me</p> http://stackoverflow.com/questions/1012329/to-delete-item-at-runtime 0 to Delete item at runtime Piyush Giri 2009-06-18T12:20:38Z 2009-06-27T13:12:09Z <p>Hi All,</p> <p>I have created some shapes dynamically at run time by mouse drag, Now i want to delete any selected item the white board.How can i achieve that. Currently i am able to delete the last drawn item through "removeChild()" method, but not the previous items. Please help.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1005763/to-create-whiteboard-component 0 to create Whiteboard component Piyush Giri 2009-06-17T08:24:10Z 2009-06-27T12:41:59Z <p>How do I create a simple drawing board/whiteboard functionality in Flex ?</p> http://stackoverflow.com/questions/1012329/to-delete-item-at-runtime/1012452#1012452 0 Answer by Piyush Giri for to Delete item at runtime Piyush Giri 2009-06-18T12:47:36Z 2009-06-18T12:47:36Z <p>Hi guys, Luckily i got my answer very soon. To delete multiple items at run time i've assign the ids to them dyanimically and the done the following:</p> <p><strong>parentComponent.removeChild(parent.getChildByName("itemName"));</strong> </p> <p>before trying this i was doing </p> <p><strong>parentComponent.removeChild(item);</strong></p> <p>Cheers !!!</p> http://stackoverflow.com/questions/1000155/flex-drawing-example-error 0 Flex drawing example error Piyush Giri 2009-06-16T08:21:12Z 2009-06-16T17:29:15Z <p>Hi All, I am new to flex and i am trying to run the code for flex drawing application example given at following path: <a href="http://www.flashcomguru.com/components/flex_whiteboard/whiteboard_demo/srcview/index.html" rel="nofollow">http://www.flashcomguru.com/components/flex_whiteboard/whiteboard_demo/srcview/index.html</a></p> <p>But I get the following error at the compile time:</p> <p>''Unable to locate specified base class 'Whiteboard.WhiteboardManager' for component class 'Whiteboard.Whiteboard'.''</p> <p>Please someone suggest me that why it is coming and how i can overcome this.I am using Flash player version 10 and flex 3.0 sdk for the project. Please help. Thanks in advance.</p> http://stackoverflow.com/questions/1000572/flex-vertical-sliding-thumbnails 0 Flex vertical sliding thumbnails Piyush Giri 2009-06-16T10:03:51Z 2009-06-16T17:28:49Z <p>Hi All, Is it possible to construct an vertical sliding thumbnails of images. The example is shown at following path: <a href="http://www.rburman.com/#a=0&amp;at=0&amp;mi=2&amp;pt=1&amp;pi=10000&amp;s=1&amp;p=0" rel="nofollow">http://www.rburman.com/#a=0&amp;at=0&amp;mi=2&amp;pt=1&amp;pi=10000&amp;s=1&amp;p=0</a></p> <p>As i am new to flex Please suggest the solution or refer to any example with the source code. Please help. Thanks in Advance. </p> http://stackoverflow.com/questions/970234/submenu-under-linkbar-option 0 submenu under linkbar option. Piyush Giri 2009-06-09T13:57:52Z 2009-06-16T06:18:04Z <p>Hi All, Is it possible in flex to create submenu under linkbar option. if yes then please show me the solution. Thanx in advance..</p> http://stackoverflow.com/questions/970234/submenu-under-linkbar-option/999808#999808 0 Answer by Piyush Giri for submenu under linkbar option. Piyush Giri 2009-06-16T06:18:04Z 2009-06-16T06:18:04Z <p>Thanks for the help Ryan.</p> http://stackoverflow.com/questions/680593/extract-zip-file-in-flex/970142#970142 0 Answer by Piyush Giri for Extract zip file in flex Piyush Giri 2009-06-09T13:36:54Z 2009-06-09T13:36:54Z <p>Thanks Gdeglin for the help !!! It really works :)</p> http://stackoverflow.com/questions/680593/extract-zip-file-in-flex 1 Extract zip file in flex Piyush Giri 2009-03-25T07:48:28Z 2009-06-09T13:36:54Z <p>Is there any method to extract zip files and maintain the same folder structure in the output folder.I am able to extract the zip file and its inner files but not able to extract folder from a zip file and thus fail to maintain folder structure also.</p> http://stackoverflow.com/questions/1147405/date-picker-in-flash-cs3 Comment by Piyush Giri on Date picker in FLASH CS3 Piyush Giri 2009-07-18T14:58:07Z 2009-07-18T14:58:07Z Somebody please help.. http://stackoverflow.com/questions/1130173/flex-combobox-customize-problem/1130258#1130258 Comment by Piyush Giri on flex combobox customize problem Piyush Giri 2009-07-15T09:11:06Z 2009-07-15T09:11:06Z thanx for comment Arno but this is not something which i'm looking for actually i need to create submenus in combobox where the header option should not be clickable. http://stackoverflow.com/questions/1097343/flex-problem-in-saving-pdf-at-server/1098895#1098895 Comment by Piyush Giri on Flex problem in saving PDF at server Piyush Giri 2009-07-10T06:05:18Z 2009-07-10T06:05:18Z Thanks for the help lukesh. http://stackoverflow.com/questions/1097343/flex-problem-in-saving-pdf-at-server Comment by Piyush Giri on Flex problem in saving PDF at server Piyush Giri 2009-07-10T05:51:56Z 2009-07-10T05:51:56Z it is required to save at the server side only. http://stackoverflow.com/questions/1097343/flex-problem-in-saving-pdf-at-server Comment by Piyush Giri on Flex problem in saving PDF at server Piyush Giri 2009-07-08T14:21:21Z 2009-07-08T14:21:21Z Somebody please help. http://stackoverflow.com/questions/1086436/clone-flex-component/1086537#1086537 Comment by Piyush Giri on clone flex component Piyush Giri 2009-07-07T11:36:36Z 2009-07-07T11:36:36Z Thanx james .. this is exactly what i wanted !!! I 've created the object copy through the BitmapData method you've suggested like: var bd:BitmapData = new BitmapData(layout_cnv.width,layout_cnv.height); bd.draw(layout_cnv); var ba:ByteArray; ba = (new PNGEncoder()).encode(bd); //this below method should be called at the initialisation of pop up window. Img_new.load(parentApplication.ba), where Img_new is the image file in pop up window. Thanx once again. http://stackoverflow.com/questions/1086436/clone-flex-component/1086548#1086548 Comment by Piyush Giri on clone flex component Piyush Giri 2009-07-06T11:55:09Z 2009-07-06T11:55:09Z Thanx the help, but What i am trying to achieve is that i have a canvas that is acting as a layout design which has some editable textareas, Images, Dynamic shapes that is drawn over there, so after completing the designing process I need to preview the whole layout in a seperate popup window . So for that i need to clone or copy that whole layout canvas including its child into a new canvas in the pop window. So how i can achieve that. Is there any way around to do the same. Thanx in advance http://stackoverflow.com/questions/1086436/clone-flex-component/1086537#1086537 Comment by Piyush Giri on clone flex component Piyush Giri 2009-07-06T11:54:37Z 2009-07-06T11:54:37Z Thanx James for the help, but What i am trying to achieve is that i have a canvas that is acting as a layout design which has some editable textareas, Images, Dynamic shapes that is drawn over there, so after completing the designing process I need to preview the whole layout in a seperate popup window . So for that i need to clone or copy that whole layout canvas including its child into a new canvas in the pop window. So how i can achieve that. Is there any way around to do the same. Thanx in advance http://stackoverflow.com/questions/1086436/clone-flex-component/1086540#1086540 Comment by Piyush Giri on clone flex component Piyush Giri 2009-07-06T11:53:51Z 2009-07-06T11:53:51Z yes Glenn dats true that i've posted the same question as the requirement is all of similar to that one. What i am trying to achieve is that i have a canvas that is acting as a layout design which has some editable textareas, Images, Dynamic shapes that is drawn over there, so after completing the designing process I need to preview the whole layout in a seperate popup window . So for that i need to clone or copy that whole layout canvas including its child into a new canvas in the pop window. So how i can achieve that. Is there any way around to do the same. Thanx in advance. http://stackoverflow.com/questions/1072896/passing-values-between-functions/1073699#1073699 Comment by Piyush Giri on Passing values between functions Piyush Giri 2009-07-06T05:40:33Z 2009-07-06T05:40:33Z Thanx pipeep for such a nic explanation. http://stackoverflow.com/questions/1069134/flex-object-handles-problem/1070312#1070312 Comment by Piyush Giri on flex object handles problem Piyush Giri 2009-07-02T10:30:48Z 2009-07-02T10:30:48Z Thanks for the help Chris but sorry my purpose still not solved.Can someone post link to any such example where i can include the freehand drawing shapes in a object handle. http://stackoverflow.com/questions/1072896/passing-values-between-functions/1072942#1072942 Comment by Piyush Giri on Passing values between functions Piyush Giri 2009-07-02T07:29:27Z 2009-07-02T07:29:27Z Hi zdmytriv, Yes thats what i was wanted as a solution..Thanks a ton.!! http://stackoverflow.com/questions/1017279/flex-zoom-and-scroll-problem/1020792#1020792 Comment by Piyush Giri on Flex zoom and scroll problem Piyush Giri 2009-06-22T07:09:10Z 2009-06-22T07:09:10Z Thanks for the help Andrew but Since i was required to zoom and restrict the layout canvas to the center of the main canvas so it was done like that, now i am able to do it. You can refer the solution showed up just above by &quot;Bug a lot&quot;..Its really a helpful solution. Thanks http://stackoverflow.com/questions/1017279/flex-zoom-and-scroll-problem/1019385#1019385 Comment by Piyush Giri on Flex zoom and scroll problem Piyush Giri 2009-06-22T07:04:08Z 2009-06-22T07:04:08Z WOW thats brilliant !!Thanks a lot :-) It really works..i was not getting the idea how to restrict the layout canvas to move in the negative part of the main canvas and now i am able to do it..!! Its really a wonderful. Cheers !!! http://stackoverflow.com/questions/1017279/flex-zoom-and-scroll-problem Comment by Piyush Giri on Flex zoom and scroll problem Piyush Giri 2009-06-19T12:52:59Z 2009-06-19T12:52:59Z I've just encountered an article regarding this bug of flex <a href="http://bugs.adobe.com/jira/browse/SDK-13009" rel="nofollow">bugs.adobe.com/jira/browse/SDK-13009</a> Is there really no way around to solve this problem. Somebody please help.