[flexcoders] How to create line series dynamically.

2008-05-16 Thread Swamy Nathan
Hi Folks, I am using the xml like data1.xml datas data date=8/1/2007 c3845=98 c6500=100 d1234=22 e5500=1 / data date=8/2/2007 c3845=48 c6500=97 d1234=33 e5500=11/ data date=8/3/2007 c3845=100 c6500=100 d1234=44 e5500=21 / data date=8/6/2007 c3845=98 c6500=98 d1234=55 e5500=31/ data

[flexcoders] How to create linechart legend on each line

2008-05-12 Thread Swamy Nathan
Hi Folks, Am working with the LineChart. I want to show the labels to each line. means [legends in each line]. how can i do that. please any one reply me. -- Thanks Regards Swaminathan. M

[flexcoders] Re: How to create Viewstack Programmatically.

2008-05-07 Thread Swamy Nathan
Yes its working fine without removing the canvas... i am directly add the tabnavigator to viewstack. am not using any canvas. On Wed, May 7, 2008 at 10:21 AM, Swamy Nathan [EMAIL PROTECTED] wrote: Hi Folks, First i am create the empty view stack to the application mx:ViewStack id=Props

[flexcoders] How to create Viewstack Programmatically.

2008-05-06 Thread Swamy Nathan
Hi Folks, First i am create the empty view stack to the application mx:ViewStack id=Props width=920 visible=true bottom=10 height=134 x=10 /mx:ViewStack * and then i am reading the xml and create the canvas inside controls and then i add the canvas to the Props viewstack

[flexcoders] Re: How to create Viewstack Programmatically.

2008-05-06 Thread Swamy Nathan
*and also am using the Props.addchildAt(prpcanvas, index); index++;[means 0,1,2,3,4..]* On Wed, May 7, 2008 at 10:21 AM, Swamy Nathan [EMAIL PROTECTED] wrote: Hi Folks, First i am create the empty view stack to the application mx:ViewStack id=Props width=920 visible=true bottom=10

[flexcoders] Please Help to find the solution...

2008-05-02 Thread Swamy Nathan
Hi Folks give me a solution. I have a XML file for loading into the tilelist controller. Image Name=Apple Type=Png Icon=image1.png PropertyCategory Name=Display Property Name=Width Type=int Value= Property Name=Height Type =int Value= Property Name=X Type=int

[flexcoders] How can i refresh the mx:XML runtime.

2008-05-01 Thread Swamy Nathan
Hi Folks, I am working with the Dragndrop app. When i finished the dragndrop images to the canvas, i saved into the xml file. and also load into the canvas. My problem is when i edit the saved xml file at runtime after i saved. but i open to load the same file after i saving the file. this time

[flexcoders] Re: How can i refresh the mx:XML runtime.

2008-05-01 Thread Swamy Nathan
Am using to load the xml file via URLLoader(); -- Thanks Regards Swaminathan. M

[flexcoders] Flex 3 Uppercase, LowerCase Tips

2008-04-20 Thread Swamy Nathan
Upper case : Ctrl+Shift+ X lowercase : Ctrl+ Shift+Y -- Thanks Regards Swaminathan. M

Re: [flexcoders] How to draw a cylinder

2008-04-19 Thread Swamy Nathan
, Apr 18, 2008 at 10:43 PM, Swamy Nathan [EMAIL PROTECTED] wrote: Hi Folks, i have one problem how can i draw the cylinder. i have an idea about line and rectangle circle drawing. i want to draw some thin long cylinder like pipe shaped. can any one please reply. -- Thanks

[flexcoders] How to draw a cylinder

2008-04-18 Thread Swamy Nathan
Hi Folks, i have one problem how can i draw the cylinder. i have an idea about line and rectangle circle drawing. i want to draw some thin long cylinder like pipe shaped. can any one please reply. -- Thanks Regards Swaminathan. M

[flexcoders] svg image not load through xml ???

2008-04-16 Thread Swamy Nathan
Hi Folks, I am using some drag and drop function. so i import the images to the tilelist control. and am using the gallery.xml. like *gallery image title=Flash name=Flash thumbnailImage=assets/image1.svg / /gallery* the tilelist control have a image item renderer. so that am see the images at

Re: [flexcoders] svg image not load through xml ???

2008-04-16 Thread Swamy Nathan
Thank you very much. I changed to Png format. Now its working fine. On Wed, Apr 16, 2008 at 9:17 PM, gabriel montagné [EMAIL PROTECTED] wrote: On Wed, Apr 16, 2008 at 8:28 AM, Swamy Nathan [EMAIL PROTECTED]mathi.nathan%40gmail.com wrote: but am using the Scalable Vector Graphics (SVG

[flexcoders] how to group the two canvas childrens.

2008-04-11 Thread Swamy Nathan
Hi all, i am working with the drag and drop canvas with images. i finished the image drag and drop. how can i group more than one image. means i drag the both images at a time. i drag only one image at a time. how can i drag the more than one images(children's of the canvas). please reply me.

Re: [flexcoders] Re: Drag and Drop Issue...

2008-04-11 Thread Swamy Nathan
or u can u this type, if (event.dragSource.hasFormat(img)) { var draggedImage:Image = event.dragSource.dataForFormat('img') as Image; var dropCanvas:Canvas = event.currentTarget as Canvas; // Since this is a copy, create a new object to

[flexcoders] how to group the two childrens of canvas

2008-04-11 Thread Swamy Nathan
Sorry not two canvas. but more than one children's On Fri, Apr 11, 2008 at 12:04 PM, Swamy Nathan [EMAIL PROTECTED] wrote: Hi all, i am working with the drag and drop canvas with images. i finished the image drag and drop. how can i group more than one image. means i drag the both images

Re: [flexcoders] Re: Drag and Drop Issue...

2008-04-11 Thread Swamy Nathan
can u send ur code. i will correct it On Fri, Apr 11, 2008 at 12:31 PM, anuppc [EMAIL PROTECTED] wrote: Daniel, just tried a few more things to debug Alert.show(ds.dataForFormat('items').toString()); The Alert shows : [object Object] When i try: var draggedImage:Image =

Re: [flexcoders] Re: Drag and Drop Issue...

2008-04-11 Thread Swamy Nathan
i think u specify the label field. On Fri, Apr 11, 2008 at 12:48 PM, Swamy Nathan [EMAIL PROTECTED] wrote: can u send ur code. i will correct it On Fri, Apr 11, 2008 at 12:31 PM, anuppc [EMAIL PROTECTED] wrote: Daniel, just tried a few more things to debug Alert.show

[flexcoders] How to add text properties to dragged Image.

2008-04-02 Thread Swamy Nathan
Hi i am new to flex. i am using drag and drop functionality in canvas. when i dragdrop the image to canvas the image will add to the canvas container. In that situation i need add the label or text to the image like[ the image name and the image taken date etx.,] how can i do that stuff with the

[flexcoders] How to group the displayObjects

2008-04-01 Thread Swamy Nathan
Hi Folks, I am using the drag and drop functionality in canvas. and i drag and drop images to the container and click those image to drag and drop using the mouseEvent. In this situation, i may select more than one images to drag and drop at the same time like grouping the images. How can i

Re: [flexcoders] How to group the displayObjects

2008-04-01 Thread Swamy Nathan
contain more than one renderer. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Swamy Nathan *Sent:* Tuesday, April 01, 2008 9:24 PM *To:* [EMAIL PROTECTED]; flexcoders@yahoogroups.com *Subject:* [flexcoders] How to group

Re: [flexcoders] Circle Canvas

2008-02-21 Thread Swamy Nathan
to it... On Thu, Feb 21, 2008 at 12:49 PM, Gordon Smith [EMAIL PROTECTED] wrote: Can you explain more what you mean by the Circle Shape Canvas? - Gordon -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Swamy Nathan *Sent:* Wednesday

[flexcoders] Drag n Drop Tile List to Canvas

2008-02-21 Thread Swamy Nathan
Hi Folks, Can any one please help me to drag and drop of tile list images to Canvas -- Thanks Regards Swaminathan. M

[flexcoders] Circle Canvas

2008-02-20 Thread Swamy Nathan
Hi Folks, I am swaminathan, and am new to flex env... i want to create the Circle Shape Canvas. How can i ? Please help me... -- Thanks Regards Swaminathan. M

[flexcoders] mx:Module problem

2008-02-07 Thread Swamy Nathan
Hi Folks, i am swaminathan, new enrty to flex2. i am using the menubar in my application, its is used to navigate many forms. am using the modules for each form. and i want to update the form entry to database... am using httpservice in module. the compilation error will occur. Parse error

[flexcoders] Database field Datas to Combobox

2008-02-07 Thread Swamy Nathan
Hi, Please help me to put Database Table Field datas to Combobox. i have a Student Table, and the StudentNo is the Primary key. The form Shows the StudentNo : Combobox [retrive from the Student Table] and follow one datagrid, whcih is show the Entire Student Table fields. The functionality is