[flex_india:25641] Can we set mx:Application color before it is getting loaded

2009-10-05 Thread karthik k
hi guys i have one application where i need to place the background color dynamically i.e before it gets loaded i have one xml where it contains all configuration but this xml will be called after the application id loaded, Any idea -- Karthik.k Mobile - +91-9894991640 --~--~-~--~---

[flex_india:25643] Re: alternatife if else function

2009-10-05 Thread Vivek Jain
Use Switch case Insted: Switch(Condition) { case 1: set value; break; case 2: set value; break; } Cheers, Vivek 2009/10/4 xueliang wu > Hi, >I think it's not a good solution.In my opinion, > You can add a variable to mark the status of these checkbox. > var o:Object = new Obj

[flex_india:25642] Session Management In Flex

2009-10-05 Thread Vivek Jain
Hi All, I have a scenario where i have implemented login functionality. I am successfully able to login when i click on one hyperlink but when i click on the second again it demands the login credentials. Once i have logged in, it should not ask for login credentials for all other links. I am lo

[flex_india:25646] Re: Can we set mx:Application color before it is getting loaded

2009-10-05 Thread gaurav rai
You will have to set background color of html which holds main application swf and set backgroundcolor of main application color also. On Mon, Oct 5, 2009 at 12:38 PM, karthik k wrote: > hi guys > > i have one application where i need to place the background color > dynamically i.e before it g

[flex_india:25644] when we moving HdividedBox which event will be triggered?

2009-10-05 Thread prajnith K
hi friends... i developed an application just tourdeflex which have Hdivedebox when i mooe slider which event will be triggered? Prajnith --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. T

[flex_india:25645] Re: Hi

2009-10-05 Thread sankar swaroop
Hi, I used advanced datagrid with grouped columns and used same generalized item renderer for each grouped column. Here i want to send a particular column cell data of that particular group to that particular item renderer. I think u understand Thank you On Sat, Oct 3, 2009 at 9:23 AM, Vasu Reddy

[flex_india:25647] Embeding HTML in flex3

2009-10-05 Thread prashant waykar
Hello Friends, Is there any way to embed Html pages in FLEX3??? thanks In advance --~--~-~--~~~---~--~~ 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@googlegr

[flex_india:25648] full screen view keyboard event listener

2009-10-05 Thread Varun Bajaj
Hi All I am having problem in my full screen view for key event listener. I want to listen all keyboard key event in my full Screen view but it only listens “ESC”. Is there any way to handle all keyboard events. Thanks in advance Vaurn Bajaj --~--~-~--~~~---~-

[flex_india:25649] Re: rotating at the center

2009-10-05 Thread Vivian Richard
Here is the code. I am also attaching the font file. Once the application first show up you can see that the button is in the middle but then if you make the browser small or big you will see that the button is not in the middle any more. http://www.adobe.com/2006/mxml"; layout="absolute"

[flex_india:25650] Re: Session Management In Flex

2009-10-05 Thread Debabrata Acharjee
Hi Vivek, It's not clear from your post what you are trying to achieve. > I have a scenario where i have implemented login functionality. I am > successfully able to login when i click on one hyperlink but when i click on > the second again it demands the login credentials. A flex client can ma

[flex_india:25651] Re: Embeding HTML in flex3

2009-10-05 Thread Debabrata Acharjee
Hi Prashant, Flex only supports limited number of html tags. So, in the real sense of the term you cannot do it but you can fake it using IFrame. Have a look to this demo: http://www.deitte.com/IFrameDemo3/IFrameDemo.html Hope this helps, Deb On Oct 5, 12:28 pm, prashant waykar wrote: > Hello

[flex_india:25652] Re: Session Management In Flex

2009-10-05 Thread HISSAM
what u could do is create a static boolean var , when user successfully logs-in set it true. now set this var as conditional value for other links 2009/10/5 Vivek Jain > Hi All, > > I have a scenario where i have implemented login functionality. I am > successfully able to login when i click on

[flex_india:25653] Re: Session Management In Flex

2009-10-05 Thread ganaraj p r
Are you using php as the backend for your flex application? On Mon, Oct 5, 2009 at 12:05 PM, Vivek Jain wrote: > Hi All, > > I have a scenario where i have implemented login functionality. I am > successfully able to login when i click on one hyperlink but when i click on > the second again it d

[flex_india:25654] Re: alternatife if else function

2009-10-05 Thread ganaraj p r
If you use the Repeater to instantiate the images , then you will be able to access the set of images as an array. i.e Inside your script now you will be able to access the images as if(data.d[1] == '1') imageArray[1].visible = true; So now you will be able to loop through the images

[flex_india:25655] Re: full screen view keyboard event listener

2009-10-05 Thread Sumant
Hi, Normally Flash Player restricts keyboard input in full-screen mode. Acceptable keys include keyboard shortcuts that terminate full-screen mode and non-printing keys such as arrows, space, Shift, and Tab keys. Keyboard shortcuts that terminate full-screen mode are: Escape (Windows, Linux, a

[flex_india:25656] Re: Session Management In Flex

2009-10-05 Thread Varun Bajaj
Hi If you don;t want to store login information at server then you can create class like package{ class user{ user(){ // any business logic you want } function setLogin(){ } ... like wise you can do same thing at server side if you want to

[flex_india:25657] Re: Session Management In Flex

2009-10-05 Thread Sumant
Hi Vivek, As Hissam told, create a static variable and after first time login, set that to true and check that everywhere, where you want to check login. Or, you can set SharebObject. I think first option is better for flex applications if you are not loading the application again and again. r

[flex_india:25658] Re: Session Management In Flex

2009-10-05 Thread gaurav rai
Use modellocator class which is a static class and have one instance. You can store ur login data in modellocator and demand for data , u'll easily get it any time. On Mon, Oct 5, 2009 at 2:43 PM, Varun Bajaj wrote: > Hi > > If you don;t want to store login information at server then you can cre

[flex_india:25659] right click and link on flex

2009-10-05 Thread cholid.r
Hi Flex India Community any one know how to make link to some url on right click at chart? (or if it imposible, maybe double click is possible to make it is OK to me) ps:any one know application to drawing graph that is free/ opensource base? Thanks cholid.r --~--~-~--~~

[flex_india:25661] User loging

2009-10-05 Thread explorer
I have questions regarding user management. I am trying to figure out how to allow user to log and to have access regarding his permissions. It will be site, where users could log and get information regarding role he got. --~--~-~--~~~---~--~~ You received this me

[flex_india:25660] Re: How to Download Flex data to PDF

2009-10-05 Thread Malavika
Hi All, Thanks for all your replies. I have tried using AlivePDF in my Flex Application, I have couple of doubts here, (1) How can i add AlivePDF.SWC to my project???, (for AIR appl i can add it using Flex Build Path --> Library path --> Add SWC) (2) i do need go option for users to download as

[flex_india:25662] Re: right click and link on flex

2009-10-05 Thread rishi narang
use contextMenu class for right click functionality in flash player. On Mon, Oct 5, 2009 at 4:21 PM, cholid.r wrote: > > Hi Flex India Community > any one know how to make link to some url on right click at chart? > (or if it imposible, maybe double click is possible to make it is OK > to me

[flex_india:25663] Re: How to Download Flex data to PDF

2009-10-05 Thread Malavika
Hi All, Thanks for all your replies. I have tried using AlivePDF in my Flex Application, I have couple of doubts here, (1) How can i add AlivePDF.SWC to my project???, (for AIR appl i can add it using Flex Build Path --> Library path --> Add SWC) (2) i do need to give option for users to downlo

[flex_india:25664] Re: Can we set mx:Application color before it is getting loaded

2009-10-05 Thread Arindam Mojumder
If you want to remove the background color do this: In Flex Builder: 1. Right Click on the Project + Properties 2. Click > Flex Compiler 3. Add this line to the compiler arguments: -locale en_US -default-background-color #FF This will force the background SWF color to White or #FF."

[flex_india:25665] Re: Can we set mx:Application color before it is getting loaded

2009-10-05 Thread Arindam Mojumder
If you want to remove the background color do this: In Flex Builder: 1. Right Click on the Project + Properties 2. Click > Flex Compiler 3. Add this line to the compiler arguments: -locale en_US -default-background-color #FF This will force the background SWF color to White or #FF." go

[flex_india:25666] Re: User loging

2009-10-05 Thread MJ
i used sharedObject in flex and handeld session in jsp...got 2 knw more... On Mon, Oct 5, 2009 at 4:47 PM, explorer wrote: > > I have questions regarding user management. I am trying to figure out > how to allow user to log and to have access regarding his permissions. > It will be site, where u

[flex_india:25667] Re: Fw: [flex_india:25612] Flex Memory Consumption

2009-10-05 Thread Naresh
hi, How can i increase performance of application ,my application taking lot of memory. Please let me know how can i optimize the memory performance. Thanks and regards, Naresh. On Sat, Oct 3, 2009 at 11:39 PM, Abhinav Mehta wrote: > > Hi Again, > > Anyways a sample program to demonstrate the c

[flex_india:25670] Re: Fw: [flex_india:25612] Flex Memory Consumption

2009-10-05 Thread edwin . vgwhiz
Try extending classes and reducing pic size. On Mon, Oct 5, 2009 at 11:28 AM, Naresh wrote: > hi, > How can i increase performance of application ,my application taking lot of > memory. > Please let me know how can i optimize the memory performance. > > Thanks and regards, > Naresh. > > > On Sa

[flex_india:25668] Re: Problem with checkbox

2009-10-05 Thread Naresh
hi , How can i increase the width and Height of checkBox(Icon).I tried it's not working. Please let me know if any body know . Thanks and regards , Naresh On Thu, Oct 1, 2009 at 1:12 PM, jayapal wrote: > > hey guys..i want urgent help..please. > > I have a datagrid with check as itemrendera

[flex_india:25669] Re: How to Download Flex data to PDF

2009-10-05 Thread Naresh
hi friends , This is naresh,In my current project we have option called generating a pdf. I was tried with Alive pdf. But my client want PDF output as a EPS format(here if pdf is zoom in the quality of PDF Should not blur );. Please let me know if any body knows about this. Thanks and regards, Nar

[flex_india:25671] Re: Youtube and Flex

2009-10-05 Thread Kiran Kumar Vasireddy
Thanks a lot for the code Sumath . I am checking it . Regards Kiran On Fri, Oct 2, 2009 at 3:36 PM, Sumant wrote: > > Hi, > > http://suumant.blogspot.com/2009/10/youtube-video-and-flex.html > > you can get source code. > > regards, > Sumant > > On Oct 2, 6:12 pm, Kiran Kumar Vasireddy wrote: >

[flex_india:/] Re: when we moving HdividedBox which event will be triggered?

2009-10-05 Thread Sumant
Hi prajnith, there are three events for divider in HDividedBox. dividerPress, dividerDrag, dividerRelease. dividerDrag event will be triggered just like press and drag the divider in HDividedBox. I think, this is what you need. regards, sumant --~--~-~--~~~---~--~---

[flex_india:25673] Regarding Events

2009-10-05 Thread vandana flex
private function handleItemDoubleClickEvent(event:ListEvent):void { // something } private function treeChanged(event:MouseEvent):void { // something handleItemDoubleClickEvent(event) } i want to use handleItemDoubleClickEvent() in treeChanged(), but it is thr

[flex_india:25674] Sprite

2009-10-05 Thread lavanya
Hi, I am having a button and combobox ... I want this components to add to a sprite or movieclip.. Becaz i want to attach button with combobox in sprite and add this to a canvas.. And i want this sprite(containing button and combobox) component to be draggable. This is my requirement... Need

[flex_india:25676] what is use of module?

2009-10-05 Thread prajnith K
hi friedns what is the use of module.. how to use ? Prajnith --~--~-~--~~~---~--~~ 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@googlegroups.com To unsubscrib

[flex_india:25675] Re: AMFPHP Help

2009-10-05 Thread santhosh kumar
Hicurrently i'm working in flex with drupal integration using AMFPHP... may I know more details about this... On Thu, Oct 1, 2009 at 10:54 PM, Aaron Post wrote: > > Looking to hire someone who has experience with AMFPHP, not a lot of > work at first. Just trying to solve some issues regarding A

[flex_india:25678] Re: rotating at the center

2009-10-05 Thread Sumant
Now button stays always in middle of the black box. Check the code below: http://www.adobe.com/2006/mxml"; layout="absolute" creationComplete="init()"> @font-face { src:url("MyriadPro-Bold.otf"); fontFamily: "MyriadAIR"; fontWeight: bold; ad

[flex_india:25679] Re: Regarding Events

2009-10-05 Thread Sumant
Hi Vandana, this error is due to different parameter types. In handleItemDoubleClickEvent, you are setting parameter type as ListEvent and in treeChanged function you are calling handleItemDoubleClickEvent with a parameter type of MouseEvent. If you need to call handleItemDoubleClickEvent then s

[flex_india:25680] Re: Regarding Events

2009-10-05 Thread Vaibhav Seth
Hi , The change event in the tree is of type mx.events.ListEvent<../../../mx/events/ListEvent.html>. It won't get casted to MouseEvent type in: private function treeChanged(event:MouseEvent):void > > nd vice-versa in: private function handleItemDoubleClickEvent(event:ListEvent):void Even, afte

[flex_india:25681] Re: Displaying the Piechart in the DataGrid component

2009-10-05 Thread Eshwar
Prasad, U can use custom Item renderer with charts as its component and use it in your data grid as follows <\mx:DataGrid> Thanks, Jagadesh On Oct 3, 4:14 am, prasad wrote: > Hi, > >     I have one requirement, to display the piechart in the datagrid > colum

[flex_india:25682] AMFPHP

2009-10-05 Thread Aaron Post
Is anyone ever used AMFPHP before? Success with it? Working on a project to generate PDF's from Flash, but I am a bit confused on a few things, curious if anyone has experience? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goo

[flex_india:25683] Re: Fw: [flex_india:25612] Flex Memory Consumption

2009-10-05 Thread Abhinav Mehta
Hi Mate See it directly depends and varies on application-to-application basis. Anyways the things which takes lots of memory are images/swfs/videos as well effects/components/classes. The way which i find to minimize all of them is- using Action-Script with cairngorm framework(late-binding mec

[flex_india:25684] Re: Fw: [flex_india:25612] Flex Memory Consumption

2009-10-05 Thread Debabrata Acharjee
Have a look to Mrinal's presentation on Performance tuning and do and don't for flex dev. http://experiments.mrinalwadhwa.com/presentations/OptimizeFlexApps/initRIA.html - Deb On Oct 6, 12:24 am, "Abhinav Mehta" wrote: > Hi Mate > > See it directly depends and varies on application-to-applica

[flex_india:25685] Re: Sprite

2009-10-05 Thread Mohamed Abdulla
create a sprite and add both the button and combobox inside the sprite with addChild() method there is startDrag method with sprite so use that on the MouseDownEvent start the startDrag and on MouseUpEvent use stopDrag any more clarification pls reply regards Abdulla On Oct 5, 9:33 pm, lava

[flex_india:25686] Re: AMFPHP

2009-10-05 Thread Debabrata Acharjee
Yeah, I have worked with AMFPHP with flash long back. I have also seen people working with Flex + AMFPHP with success. Whats your concern on this? - Deb On Oct 6, 12:30 am, Aaron Post wrote: > Is anyone ever used AMFPHP before?  Success with it? > > Working on a project to generate PDF's from F

[flex_india:25687] Re: AMFPHP

2009-10-05 Thread amutha raju
currently i m working in flex with amfphp...its working successfully.. On Tue, Oct 6, 2009 at 10:51 AM, Debabrata Acharjee wrote: > > Yeah, I have worked with AMFPHP with flash long back. I have also seen > people working with Flex + AMFPHP with success. Whats your concern on > this? > > - Deb >