User Piyush Giri - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T02:42:11Zhttp://stackoverflow.com/feeds/user/82433http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1086436/clone-flex-component0clone flex componentPiyush Giri2009-07-06T10:53:33Z2009-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-problem0Flex zoom and scroll problemPiyush Giri2009-06-19T10:17:32Z2009-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)+ "%";
}
]]>
</mx:Script>
<mx:Panel title="Zoom Demo" width="100%" height="100%">
<mx:Canvas id="canvas" width="100%" height="100%" horizontalScrollPosition="500">
<!--<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()"
/>-->
<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">
<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" />
<mx:TextArea id="job_ta" height="20" selectable="true" borderColor="#000000" width="200" x="289" y="10" backgroundAlpha="0.0" textAlign="right"/>
<mx:TextArea id="fullname_ta" height="20" selectable="true" backgroundAlpha="0.0" borderColor="#000000" width="200" x="10" y="38" editable="true" enabled="true"/>
<mx:TextArea id="adress_line3_ta" height="20" selectable="true" backgroundAlpha="0.0" borderColor="#000000" width="200" x="10" y="268"/>
<mx:TextArea id="adress_line2_ta" height="20" selectable="true" backgroundAlpha="0.0" borderColor="#000000" width="200" x="10" y="240"/>
<mx:TextArea id="adress_line1_ta" height="20" selectable="true" backgroundAlpha="0.0" borderColor="#000000" width="200" y="212" x="10"/>
<mx:TextArea id="mobile_ta" height="20" selectable="true" backgroundAlpha="0.0" borderColor="#000000" width="200" x="289" y="40" textAlign="right"/>
<mx:TextArea id="fax_ta" height="20" selectable="true" backgroundAlpha="0.0" borderColor="#000000" width="200" y="68" x="289" textAlign="right"/>
<mx:TextArea id="email_ta" height="20" selectable="true" backgroundAlpha="0.0" borderColor="#000000" width="200" x="289" y="268" textAlign="right"/>
</mx:Canvas>
</mx:Canvas>
<mx:ControlBar horizontalAlign="center">
<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" />
</mx:ControlBar>
</mx:Panel>
</code></pre>
<p>
"</p>
<p>please help .
Thanks in advance.</p>
http://stackoverflow.com/questions/1147405/date-picker-in-flash-cs30Date picker in FLASH CS3Piyush Giri2009-07-18T12:19:09Z2009-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-resize0Flex Drag and resizePiyush Giri2009-06-16T06:27:19Z2009-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-1Flash Image galleryPiyush Giri2009-08-19T07:46:09Z2009-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-problem0flex combobox customize problemPiyush Giri2009-07-15T08:42:27Z2009-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-functions1Passing values between functionsPiyush Giri2009-07-02T07:02:31Z2009-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-server0Flex problem in saving PDF at serverPiyush Giri2009-07-08T10:51:45Z2009-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> <?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.';
?>
</code></pre>
<p>Can someone help me please.</p>
http://stackoverflow.com/questions/1097343/flex-problem-in-saving-pdf-at-server/1117989#11179890Answer by Piyush Giri for Flex problem in saving PDF at serverPiyush Giri2009-07-13T06:47:23Z2009-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> <?php
$fp = fopen( 'upload/drawing.pdf', 'wb' );
fwrite( $fp, $GLOBALS['HTTP_RAW_POST_DATA' ] );
fclose( $fp );
?>
cheers :-) !!!
</code></pre>
http://stackoverflow.com/questions/1055350/macro-problem0macro problemPiyush Giri2009-06-28T17:40:46Z2009-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:\" & strComputer & "\root\cimv2")
Set colFiles = objWMIService.ExecQuery _
("ASSOCIATORS OF {Win32_Directory.Name='U:\'} Where " _
& "ResultClass = CIM_DataFile")</p>
<p>For Each objFile In colFiles
if objFile.FileName = "ml_*" Then</p>
<pre><code> destinationPROD = "X:\ABC\" & objFile.FileName & "." & objFile.Extension
objFile.Copy(destinationPROD)
objFile.delete
else
destinationPROD = "X:\PQR\" & objFile.FileName & "." & 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-runtime0to Delete item at runtimePiyush Giri2009-06-18T12:20:38Z2009-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-component0to create Whiteboard componentPiyush Giri2009-06-17T08:24:10Z2009-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#10124520Answer by Piyush Giri for to Delete item at runtimePiyush Giri2009-06-18T12:47:36Z2009-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-error0Flex drawing example errorPiyush Giri2009-06-16T08:21:12Z2009-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-thumbnails0Flex vertical sliding thumbnailsPiyush Giri2009-06-16T10:03:51Z2009-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&at=0&mi=2&pt=1&pi=10000&s=1&p=0" rel="nofollow">http://www.rburman.com/#a=0&at=0&mi=2&pt=1&pi=10000&s=1&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-option0submenu under linkbar option.Piyush Giri2009-06-09T13:57:52Z2009-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#9998080Answer by Piyush Giri for submenu under linkbar option.Piyush Giri2009-06-16T06:18:04Z2009-06-16T06:18:04Z<p>Thanks for the help Ryan.</p>
http://stackoverflow.com/questions/680593/extract-zip-file-in-flex/970142#9701420Answer by Piyush Giri for Extract zip file in flexPiyush Giri2009-06-09T13:36:54Z2009-06-09T13:36:54Z<p>Thanks Gdeglin for the help !!!
It really works :)</p>
http://stackoverflow.com/questions/680593/extract-zip-file-in-flex1Extract zip file in flexPiyush Giri2009-03-25T07:48:28Z2009-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-cs3Comment by Piyush Giri on Date picker in FLASH CS3Piyush Giri2009-07-18T14:58:07Z2009-07-18T14:58:07ZSomebody please help..http://stackoverflow.com/questions/1130173/flex-combobox-customize-problem/1130258#1130258Comment by Piyush Giri on flex combobox customize problemPiyush Giri2009-07-15T09:11:06Z2009-07-15T09:11:06Zthanx 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#1098895Comment by Piyush Giri on Flex problem in saving PDF at serverPiyush Giri2009-07-10T06:05:18Z2009-07-10T06:05:18ZThanks for the help lukesh.http://stackoverflow.com/questions/1097343/flex-problem-in-saving-pdf-at-serverComment by Piyush Giri on Flex problem in saving PDF at serverPiyush Giri2009-07-10T05:51:56Z2009-07-10T05:51:56Zit is required to save at the server side only.http://stackoverflow.com/questions/1097343/flex-problem-in-saving-pdf-at-serverComment by Piyush Giri on Flex problem in saving PDF at serverPiyush Giri2009-07-08T14:21:21Z2009-07-08T14:21:21ZSomebody please help.http://stackoverflow.com/questions/1086436/clone-flex-component/1086537#1086537Comment by Piyush Giri on clone flex componentPiyush Giri2009-07-07T11:36:36Z2009-07-07T11:36:36ZThanx 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#1086548Comment by Piyush Giri on clone flex componentPiyush Giri2009-07-06T11:55:09Z2009-07-06T11:55:09ZThanx 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 advancehttp://stackoverflow.com/questions/1086436/clone-flex-component/1086537#1086537Comment by Piyush Giri on clone flex componentPiyush Giri2009-07-06T11:54:37Z2009-07-06T11:54:37ZThanx 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 advancehttp://stackoverflow.com/questions/1086436/clone-flex-component/1086540#1086540Comment by Piyush Giri on clone flex componentPiyush Giri2009-07-06T11:53:51Z2009-07-06T11:53:51Zyes 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#1073699Comment by Piyush Giri on Passing values between functionsPiyush Giri2009-07-06T05:40:33Z2009-07-06T05:40:33ZThanx pipeep for such a nic explanation.http://stackoverflow.com/questions/1069134/flex-object-handles-problem/1070312#1070312Comment by Piyush Giri on flex object handles problem Piyush Giri2009-07-02T10:30:48Z2009-07-02T10:30:48ZThanks 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#1072942Comment by Piyush Giri on Passing values between functionsPiyush Giri2009-07-02T07:29:27Z2009-07-02T07:29:27ZHi zdmytriv,
Yes thats what i was wanted as a solution..Thanks a ton.!!
http://stackoverflow.com/questions/1017279/flex-zoom-and-scroll-problem/1020792#1020792Comment by Piyush Giri on Flex zoom and scroll problemPiyush Giri2009-06-22T07:09:10Z2009-06-22T07:09:10ZThanks 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 "Bug a lot"..Its really a helpful solution.
Thankshttp://stackoverflow.com/questions/1017279/flex-zoom-and-scroll-problem/1019385#1019385Comment by Piyush Giri on Flex zoom and scroll problemPiyush Giri2009-06-22T07:04:08Z2009-06-22T07:04:08ZWOW 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-problemComment by Piyush Giri on Flex zoom and scroll problemPiyush Giri2009-06-19T12:52:59Z2009-06-19T12:52:59ZI'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.