[flex_india:20476] Re: Render HTML in DataGrid

2009-03-17 Thread kalpesh mahida
you just need to add item tenderer for the column you want to add html content like mx:itemRenderer mx:Component mx:Text htmlText={data.dataHTML} / /mx:Component /mx:itemRenderer where dataHTML is the field in your array collection which holds your html text Regards, Kalpesh Mahida On

[flex_india:20477] Re: Image Crop

2009-03-17 Thread kalpesh mahida
Hi, See Image Manipulation in Flex at here : http://www.insideria.com/2008/03/image-manipulation-in-flex.html Regards, Kalpesh Mahida On Tue, Mar 17, 2009 at 10:23 AM, Ravi ravindra.cho...@gmail.com wrote: Hello friends, Can anyone please tell me how to crop and scale image in flex regards

[flex_india:20480] Timer

2009-03-17 Thread pradeep.pa...@gmail.com
Hi all, I have an application where I need to perform an activtity after every x seconds. But this x second is variable. I have the collection of time in sec in an array. Ex: timerarray[] = {0, 7, 10, 11, 19, 22} In this example, i need to perform a task after 7th sec, 10th sec, 11th sec, 19th

[flex_india:20479] Re: Image Crop

2009-03-17 Thread Neelima Kakarla
hai, go through this link http://blog.mediablur.com/2008/02/20/flex-image-cropping-component/ On Tue, Mar 17, 2009 at 10:23 AM, Ravi ravindra.cho...@gmail.com wrote: Hello friends, Can anyone please tell me how to crop and scale image in flex regards ravi

[flex_india:20482] isnumeric

2009-03-17 Thread Flex Baby
I am looking for 2 functions in Adobe Flex 2.x, anyone know how to do isNumeric() and isHexadeximal() functions in Flex? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Flex India Community group. To post to this

[flex_india:20483] Re: Schedule Component

2009-03-17 Thread BB47
Same as Gantt chart in MS Project. I want to extend the task length by dragging the task. Also want to update the schedule when drags. On Mar 16, 10:23 pm, cksachdev cksach...@gmail.com wrote: Could you please describe a bit more about your component need. May be you can describe the look and

[flex_india:20481] Re: Multiselect DropDown

2009-03-17 Thread Anoop.Kamalasanannair
Hi Nitin, Thanks for the code. It is selecting multiple. Its highlighting. But its not closing up the dropdown. Any idea why?? Thanks, Anoop P. K. -Original Message- From: flex_india@googlegroups.com [mailto:flex_in...@googlegroups.com] On Behalf Of Nitind Sent: Friday, March

[flex_india:20478] Re: how to load images in swf.

2009-03-17 Thread Kuldeep Atil
Hi, You can use Embed Metadata tag. Check out the link below. http://livedocs.adobe.com/flex/3/html/help.html?content=embed_4.html Regards, Kuldeep purni wrote: hi all, i am developing a imageeditor blog.. i am loading images as such now from the server. since i am loading it as such it

[flex_india:20484] Re: Timer

2009-03-17 Thread Ravi
try this public var timer:Timer; public var idx:int=0; timerarray[] = {0, 7, 10, 11, 19, 22} function(){ timer = new Timer(timerarray[idx]); timer.addEventListener(TimerEvent.TIMER,change); timer.start();} function change{ idx++;

[flex_india:20485] Re: Image Crop

2009-03-17 Thread Ravi
Hi Neelu.. i already chk tht component.. but i want to crop image again and again ,means in that component the cropped image displayed in next canvas ,i want to display it in first canvas itself and again we can crop that cropped image..can u plz help me in this On Mar 17, 11:42 am, Neelima

[flex_india:20487] Re: Timer

2009-03-17 Thread Dinesh Kumar
Hi pradeep, I tried a sample hope it helps you... ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=initApp() mx:Script ![CDATA[ [Bindable] private var change:int=2; private var arr:Array= [4, 6, 8,

[flex_india:20486] Re: isnumeric

2009-03-17 Thread Flexian_me
isNumeric is available in both Flex 2 and 3 . whats the problem that you are facing ? On Mar 17, 11:53 am, Flex Baby send2sivagan...@gmail.com wrote: I am looking for 2 functions in Adobe Flex 2.x, anyone know how to do isNumeric() and isHexadeximal() functions in Flex?

[flex_india:20490] set Function attribute with Action script

2009-03-17 Thread zied Majdoub
Hi, I want set a Function attribute using AS, but I only have the function name as a string. For example I want to put labelFunction to DataGridColumn object. public function set labelFunction(value:Function):void { _labelFunction = value; if (owner) {

[flex_india:20491] Flash Remoting

2009-03-17 Thread deepak karma
Hi Every one! I want to ask that what should be on server if i want to upload my web application containing Flash remoting with asp.net. Please send me details about the configuration on server for Flash remoting with asp.net. -- Deepak karma Project Engineer 9930079801 Mathimitation Technology

[flex_india:20492] communicate between two mxml

2009-03-17 Thread devi lakshmi
hi all , how to communicate between two mxml.. i need help.. thanks in advance with Regrads Devi --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Flex India Community group. To post to this group, send email to

[flex_india:20493] Insert Image in RichtextEditor

2009-03-17 Thread venkat
Hi friends, I am inserted image in richtexteditor but the image is displayed in next line. for example: Hai how are you.(here i inserted image) the image is displayed in next line like this: hai how are you. Image displayed here.

[flex_india:20494] Re: communicate between two mxml

2009-03-17 Thread Anish Kumar
If you have reference to the other mxml then probably you can have a public function invoked to communicate. The other way of doing is using custom events. Dispatch a custom event in one mxml and add a event listener to that event in the other mxml. Check some useful links on custom events here:-

[flex_india:20489] Re: Any body succeeded installing Red5 Server?

2009-03-17 Thread Saravanan
forgot to tell abt the configuration I am trying to install 0.7 red5 with tomcat 6 -sara On Mar 17, 2:11 am, Saravanan saras...@gmail.com wrote: Hi, I am trying  to install Red5 Server, but still the samples files not working for me ... Is there any nice configuration examples... to setup

[flex_india:20488] Re: isnumeric

2009-03-17 Thread Saravanan
Not comfortable with built in functions need customized validation go for regex... -sara On Mar 17, 3:25 pm, Flexian_me amarshukla...@gmail.com wrote: isNumeric is available in both Flex 2 and 3 . whats the problem that you are facing ? On Mar 17, 11:53 am, Flex Baby

[flex_india:20495] Re: set Function attribute with Action script

2009-03-17 Thread Ravi Mishra
Hi Zied, I could not get what you want to achieve. Can you be a little more clearer? -Ravi On Mar 17, 4:10 pm, zied Majdoub zied.e...@gmail.com wrote: Hi, I want set a Function attribute using AS, but I only have the function name as a string. For example I want to put labelFunction to

[flex_india:20498] Re: CheckBox problem in DataGrid

2009-03-17 Thread Meenakshi H
hi Vasu, i have a same requirement.. i have wriitten sum custom component, hope this will solve.. ?xml version=1.0 encoding=utf-8? mx:DataGrid xmlns:mx=http://www.adobe.com/2006/mxml; liveScrolling=false headerRelease={stopEvent(event)} allowMultipleSelection=true allowDragSelection=true

[flex_india:20502] loading dynamicaly arraycollection to combobox...

2009-03-17 Thread peter.du...@googlemail.com
i have 2 arraycollections -- mx:ArrayCollection id=ar1 mx:Object label=135 x 135 dataw=135 datah=135 source=swf/ swf1.swf/ /mx:ArrayCollection mx:ArrayCollection id=ar2 mx:Object label=140 x 90 prava dataw=140

[flex_india:20497] Date formating

2009-03-17 Thread pradeep.pa...@gmail.com
Hi, I need to print date in simple format. Date in flex gives sometthing like: Tue Mar 17 18:01:05 GMT +05:30 2009 I want it to be printed something like: 17032009180105 Thanks Pradeep --~--~-~--~~~---~--~~ You received this message because you are subscribed

[flex_india:20499] Re: communicate between two mxml

2009-03-17 Thread Abhilash
Hi, you can use event dispatch for communication On Mar 17, 3:21 pm, devi lakshmi ndevi...@gmail.com wrote: hi all , how to communicate between two mxml.. i need  help.. thanks in advance with Regrads Devi --~--~-~--~~~---~--~~ You received this message

[flex_india:20501] Zoom Effect on mouse over

2009-03-17 Thread Vasu
How to zoom the icons(group of icons) in flex like below link, http://www.ndesign-studio.com/demo/css-dock-menu/css-dock.html Can you give me the any suggestions on this?. Thanks Regards, Srinivas. --~--~-~--~~~---~--~~ You received this message because you are

[flex_india:20503] Re: How to embed swf objects in to html file.

2009-03-17 Thread Flexian_me
Ha ha ha .. I couldn't stop myself to laugh . You know what if you just copy and paste your own question i.e , How to embed swf objects in to html by using java script. into google as it is and hit enter you will get the answer of your question . Why don't you use google for very basic problems

[flex_india:20504] Re: Problem related to File Referance

2009-03-17 Thread GAGAN anand
Hi xelf Just have a look at this link http://livedocs.adobe.com/flex/2/langref/flash/net/FileReference.html In this, there is one event named select. This might solve your problem. Regards Gagan 2009/3/12 xelf samjayan...@gmail.com Hi friends, I have one issue related to File reference

[flex_india:20505] Re: image+pagetitle

2009-03-17 Thread GAGAN anand
Could u please tell page is which container?? Is it panel, title window or somthing else. Regards Gagan Deep 2009/3/13 Flex Baby send2sivagan...@gmail.com hi, how i can set image near pagetitle of the web page? --~--~-~--~~~---~--~~ You received this

[flex_india:20507] how to clear line (grafics class)

2009-03-17 Thread Ravi
Hello friends, I am developing family tree application,in which i am adding runtime siblings,childs, I am connectin all these with line...i used graphics class and then lineTo method to draw a line to connect them, In this tree i can remove perticular componet (child or siblings) and i want to

[flex_india:20509] Re: set Function attribute with Action script

2009-03-17 Thread Ravi Mishra
Hi Zied, You don't need any object of type function but you need a function which returns a string. Just assign the name of that string returning function to the labelFunction property of datagridColumn. Like this: dgc.labelFunction = myFunction; Hope this helps. -Ravi On Mar 17, 6:19 pm,

[flex_india:20510] Re: CheckBox problem in DataGrid

2009-03-17 Thread Sreenivas...........
Thanks Meena, Can u send me the whole code what u have.I need urgently. Thanks Regards, Srinivas. On Tue, Mar 17, 2009 at 4:55 PM, Meenakshi H meenakshi.h1...@gmail.comwrote: hi Vasu, i have a same requirement.. i have wriitten sum custom component, hope this

[flex_india:20511] Re: Execute exe files from Adobe air

2009-03-17 Thread Ram Shetty
hey , thats great . can you mail them to me . thanks in advance On Jan 28, 7:48 am, vickypathania vickypatha...@gmail.com wrote: Hi Guys ,     I have a developed a hack using java and air to execute the exe files from the air interface , any one interested in it please let me know and i

[flex_india:20512] Re: set Function attribute with Action script

2009-03-17 Thread zied Majdoub
Hi Ravi, Actually, I have the function that returns a String. But I want to get the name of the function from an XML file. And I want to set dgc.labelFunction at runtime where I only have the name of the method in a string. Thanks, On 17 mar, 15:50, Ravi Mishra ravi.achi...@gmail.com wrote:

[flex_india:20514] Re: set Function attribute with Action script

2009-03-17 Thread sambhavg...@gmail.com
Hi Zeid, You can achieve it like this: declare a function like: function dataLabelFunction(oCol:Object, oItem:Object):String{ return display label; } Now when you want to assign it to the dataGrid Column at runtime you can do like following dgc.labelFunction = this[dataLabelFunction];

[flex_india:20516] Re: Execute exe files from Adobe air

2009-03-17 Thread karthik Flex
hey prasad i have already got this solution but you will have problem with this 1. if you keep your server in one system(server system) and if you run the application in another system(client system) then how you can launch exe file in client system if you send path to java which is in server

[flex_india:20517] Please Help Me Its Very Urgent for Me..

2009-03-17 Thread krishna2004
Hi Friends, I want to make skins for my flex components in Flash CS4 for that I have installed Flex Builder 3 and Flash CS4 Pro and these are working fine. But when i am trying to install Flex Component Kit for flash CS3 it will not support and it will show the following message

[flex_india:20518] Re: Zoom Effect on mouse over

2009-03-17 Thread kalpesh mahida
Hi, Check out the link below: http://www.quietlyscheming.com/blog/components/fisheye-component/ Regards, Kalpesh Mahida On Tue, Mar 17, 2009 at 5:03 PM, Vasu seenuindia...@gmail.com wrote: How to zoom the icons(group of icons) in flex like below link,

[flex_india:20519] Ant script to comille Flex Apps

2009-03-17 Thread riaflexible
Hi , If there is a single Application MXML file in a project , Writing a Ant script to compile it is pretty easy . But in my project i have more MXML Application files , How to write a script which compiles all the MXML files . i.e , How to compile multiple MXML files , Through Ant script .