[flex_india:26924] Quadrant

2009-11-30 Thread kanu kukreja
Hi, I need a help from you all. I have 5 canvases all are of different dimension. If i add an image in one canvas, proportionally i want to show that in another banners. How i can achieve that? Thanks -- You received this message because you are subscribed to the Google Groups Flex India

Re: [flex_india:26926] Centering a Scaled Image ( Bug ? )

2009-11-30 Thread nagendra bhange
The aspect ratio of an image is the ratio of its width to its height. For example, a standard NTSC television set uses an aspect ratio of 4:3, and an HDTV set uses an aspect ratio of 16:9. A computer monitor with a resolution of 640 by 480 pixels also has an aspect ratio of 4:3. A square has an

[flex_india:26925] Re: Flex Openings - Chennai

2009-11-30 Thread Santosh
hi, can i have the details regarding the position and experience details Regards Santosh M On Nov 30, 12:18 pm, Bharadwaj bj.r...@gmail.com wrote: Hi All This is Bharad from ZANEC (www.zanec.com). We urgently require a candidate with good knowledge on Flex for a very interesting product

[flex_india:26927] Strange Problem with Item Renderer

2009-11-30 Thread vishal lad
Hi, I have TileList, which is used to populate some product items with images.The problem is when I edit the image and reload the data provider of tile list it shows the older image.Not the newer one.I have tried clearing the dataprovider and again assigning the dataprovider.But this not

Re: [flex_india:26928] Centering a Scaled Image ( Bug ? )

2009-11-30 Thread ganaraj p r
I got that. But let me explain it further. Lets say I have an image of 100x100 which has an aspect ratio of 1:1... Now with a screen of 1200x800 ( and scaling of 100% width and height ) the image would get scaled to the lowest side.. i.e it should get resized to 800x800. That means the image

[flex_india:26929] Re: Strange Problem with Item Renderer

2009-11-30 Thread Akshar
try using something like mx:TileList id=tl / in script block :- tl.invalidateDisplayList(); tl.validateNow(); try with various invalidate and validate properties. you can also try name of dataprovider.reset(); On Nov 30, 4:29 pm, vishal lad vish...@gmail.com wrote: Hi, I have TileList,

Re: [flex_india:26930] Strange Problem with Item Renderer

2009-11-30 Thread edwin . vgwhiz
Are you embedding or dynamic loading? If you are embedding you must recompile the application. Let me know. Thanks Ed On Mon, Nov 30, 2009 at 6:29 AM, vishal lad vish...@gmail.com wrote: Hi, I have TileList, which is used to populate some product items with images.The problem is when I edit

Re: [flex_india:26932] Strange Problem with Item Renderer

2009-11-30 Thread Ajay Chhaya
or try adding time stamp with source to overcome cache - Ajay Chhaya www.ajaychhaya.com On Mon, Nov 30, 2009 at 8:08 PM, edwin.vgw...@gmail.com wrote: Are you embedding or dynamic loading? If you are embedding you must recompile the

Re: [flex_india:26931] Re: Flex Openings - Chennai

2009-11-30 Thread baskaran rajendran
hi, I have 6months experience in flex,can i apply for this? On Mon, Nov 30, 2009 at 4:18 PM, Santosh m.santhos...@gmail.com wrote: hi, can i have the details regarding the position and experience details Regards Santosh M On Nov 30, 12:18 pm, Bharadwaj bj.r...@gmail.com wrote:

[flex_india:26933] How to pass variable value from MXML page to HTML page

2009-11-30 Thread dilu
Hi, In my flex application I using MXML component and HTML page. I need to pass variable from MXML component to HTML page.I am facing problem in this. Can anyone tell me how to do this with some piece of code or any example.? Regards Dileep -- You received this message because you are subscribed

Re: [flex_india:26934] Strange Problem with Item Renderer

2009-11-30 Thread edwin . vgwhiz
Hey Ajay, How do you add a time stamp for source. Can you provide a sample? Thanks Ed On Mon, Nov 30, 2009 at 10:03 AM, Ajay Chhaya ajay.fl...@gmail.com wrote: or try adding time stamp with source to overcome cache - Ajay Chhaya www.ajaychhaya.com

[flex_india:26935] HTTPService

2009-11-30 Thread explorer
How to bring back result of simple database query. I call sendquery.php file. Result of this php file can be variable or text. Now when I use like return $result - Flex see this like array, literaly not array with data,just debug show that result=array If i force php file to make output like

Re: [flex_india:26936] Flex and PHP

2009-11-30 Thread edwin . vgwhiz
Search on You Tube PHP and Flex. Very easy to follow video that will get you up and running. Ed On Sat, Nov 28, 2009 at 2:12 PM, explorer skon...@gmail.com wrote: Hello, I used AMFPHP, using remoteObject, and I am familliar with this one. Second what I tryed to explore is HTTPServices, for

Re: [flex_india:26938] Flex Openings - Chennai

2009-11-30 Thread priya
hi i have 6month experience in flex can i apply for tis position On 11/30/09, Bharadwaj bj.r...@gmail.com wrote: Hi All This is Bharad from ZANEC (www.zanec.com). We urgently require a candidate with good knowledge on Flex for a very interesting product that we are creating. To tell you a

Re: [flex_india:26937] HTTPService

2009-11-30 Thread dinesh kumar
Hi, wat kind of string format u get from php ?...atleast should be separated with comma (,) like (value1,value2,value3) or equal(name=value) pairs,if u get any kind of format like this then use the split(symbol) of string class,which returns an array by which u can handle the server data now

[flex_india:26939] Re: HTTPService

2009-11-30 Thread explorer
I get something like FoodDrinkFun... I can easy force to have seperated by coma can you provide me little info about how to use symbol thx On Nov 30, 6:27 pm, dinesh kumar dinesh.lo...@gmail.com wrote: Hi, wat kind of string format u get from php ?...atleast should be separated with

[flex_india:26940] Re: HTTPService

2009-11-30 Thread explorer
I manage to get string from database query. Using HTTPService i define resultHandler private function kategorijeHandler(kat:ResultEvent):void { var string:String = kat.result.toString(); var meniji:Array = string.split(,); } So now

Re: [flex_india:26941] How to pass variable value from MXML page to HTML page

2009-11-30 Thread Vaibhav Seth
use ExternalInterface API On Mon, Nov 30, 2009 at 8:32 AM, dilu discover.dile...@gmail.com wrote: Hi, In my flex application I using MXML component and HTML page. I need to pass variable from MXML component to HTML page.I am facing problem in this. Can anyone tell me how to do this with

[flex_india:26942] Re: HTTPService

2009-11-30 Thread explorer
PROBLEM: Get list of category from database 1. create php file to query database (lisaKategorija.php) -- ?php define( DATABASE_SERVER, localhost ); define( DATABASE_USERNAME, ); define( DATABASE_PASSWORD, ); define( DATABASE_NAME, portal ); //connect

[flex_india:26943] AIR WindowSize From Previous Run

2009-11-30 Thread AIR - Remember WindowSize From Previous Run
I have a AIR applicatioin which is working correctly the way I want. There is one slight problem. I cannot remember the size of the window when the user closed the application. Eg. If I have a simple application something like mx:WindowApplication width=400 height=400 mx:Label =t text=hello

[flex_india:26946] Re: How to pass variable value from MXML page to HTML page

2009-11-30 Thread sreekanth kalluru
You can use FABridge for flex and html communication.Its very to easy to use. Find the example below http://livedocs.adobe.com/flex/3/html/help.html?content=ajaxbridge_2.html On Dec 1, 2:00 am, Vaibhav Seth seth.vaibhav...@gmail.com wrote: use ExternalInterface API On Mon, Nov 30, 2009 at

[flex_india:26944] AIR - Remember WindowSize From Previous Run.

2009-11-30 Thread AIR - Remember WindowSize From Previous Run
I have written an FLEX AIR app that runs fine. Is there a way I can remember the users window size when the user closed the window. So next time when the user starts the window it should start with that window size. Is this something I can do using 'SharedObject' or something else. Example : In

[flex_india:26947] Re: AIR - Remember WindowSize From Previous Run.

2009-11-30 Thread Akshar
you can store the width and height of the window in the share object. In your close handler save the window height and width into the shared objects. use the creationComplete or initialize functions of the WindowedApplication to set the width and height to the value read from the shared objects.

Re: [flex_india:26948] Re: How to pass variable value from MXML page to HTML page

2009-11-30 Thread dileep singh
Thanks.I will get back to you if any problem comes. On Tue, Dec 1, 2009 at 7:38 AM, sreekanth kalluru sreekanth.f...@gmail.comwrote: You can use FABridge for flex and html communication.Its very to easy to use. Find the example below

Re: [flex_india:26949] Strange Problem with Item Renderer

2009-11-30 Thread vishal lad
I am not embedding the Image.Loading it from folder located at server. On Mon, Nov 30, 2009 at 9:46 PM, edwin.vgw...@gmail.com wrote: Hey Ajay, How do you add a time stamp for source. Can you provide a sample? Thanks Ed On Mon, Nov 30, 2009 at 10:03 AM, Ajay Chhaya