[flex_india:26691] Re: IFrame Issue

2009-11-16 Thread sathesh
hi, One solution i could think of --> Goto IFrame.mxml and change the moveIFrame method as public then in your main application call moveIFrame on scroll Event For example: http://www.adobe.com/2006/mxml"; layout="absolute" scroll="updateScroll()" xmlns:flexiframe="*" >

Re: [flex_india:26692] Multiple user games using TCP/IP

2009-11-16 Thread nagendra bhange
www.*smartfoxserver*.com On Tue, Nov 17, 2009 at 10:50 AM, karthi keyan wrote: > Thank you, Can u give me any reference links ? > > > On Mon, Nov 16, 2009 at 7:20 PM, nagendra bhange > wrote: > >> use smartfox server >> >> On Mon, Nov 16, 2009 at 11:29 AM, karthi keyan >> wrote: >> >>> Hi Frien

[flex_india:26693] Re: IFrame Issue

2009-11-16 Thread sathesh
hi, checkout these links they could be helpful: http://www.flashstreamworks.com/archive.php?post_id=1241799250 http://www.flashstreamworks.com/archive.php?post_id=1253805570 On Nov 17, 6:08 am, Kiran Kumar Vasireddy wrote: > Dear All, > > I am having trouble in displaying youtube videos in my

[flex_india:26694] Flex Job Opening in Mumbai

2009-11-16 Thread Tejas Sanghavi
Job Openings - Apply to care...@neoquant.com Job Description Form Position:-- Software Developer. Skills Required:-- Adobe Flex 3, J2SE, SQL Server 2008 Location:-Ghatkopar(E),Mumbai-400077. Experience :-- 1-2 years NeoQuant Solutions is a RIA and dashboard development company. The company has r

Re: [flex_india:26690] Multiple user games using TCP/IP

2009-11-16 Thread karthi keyan
Thank you, Can u give me any reference links ? On Mon, Nov 16, 2009 at 7:20 PM, nagendra bhange wrote: > use smartfox server > > On Mon, Nov 16, 2009 at 11:29 AM, karthi keyan wrote: > >> Hi Friends, >> I am new to gaming domain. >> Can you any one suggest me how to implement the multiple user ga

Re: [flex_india:26689] Binding issue

2009-11-16 Thread Rashmi Mirajkar
chage declaration to [Bindable] public var testArr:ArrayCollection; On Tue, Nov 17, 2009 at 1:43 AM, Kiran Kumar Vasireddy wrote: > Hi Pradeep, > > For String and also for arraycollection data binding is not working . You > are getting "Pradeep" string since you initialized it where the variable

[flex_india:26688] Hi All How we implement the flip moment at flex3

2009-11-16 Thread manu
Hi Friends, how implement a flip event in flex3 application just image flip and rotate and more events. * send email. * send a link to you friends. * zoom in -out * next-previous preview like booklets movement like flip . thanks -- You received this message because you are subs

[flex_india:26687] Validate URL with RegExValidator

2009-11-16 Thread jamalovitch
HI Can anyone show me how to validate a website URL in a flex3? I want to validate url which may either consist of host name like www.google.com or ip address of the machine like http://192.168.0.2:8090/rep/ thanks -- You received this message because you are subscribed to the Google Groups "Fl

[flex_india:26685] Identifying a change in local XML file with out reloading a file

2009-11-16 Thread Sandy
Hi all, I need to develop an application which will fetch data from a XML file in the workspace. The problem over here is that XML file will be modified frequently by another java file. All the modifications in the XML file should be reflected on the swf file with refreshing/reloading the page. So

[flex_india:26686] How to add animations for the Area chart in Flex

2009-11-16 Thread niranjan kumar
Hi All, I have a query. I need solution for that... 1. How to add animations in Flex for the Area Chart? Please reply me as soon as possible Thanks : Niranjan -- You received this message because you are subscribed to the Google Groups "Flex India Community" g

[flex_india:26684] IFrame Issue

2009-11-16 Thread Kiran Kumar Vasireddy
Dear All, I am having trouble in displaying youtube videos in my flex application . Since the full screen mode is disturbing the video quality , I tried another approach using IFrame . Created a HTML with you tube embedded script and called it in the Iframe and attached it to the Flex Panel . But

Re: [flex_india:26683] Binding issue

2009-11-16 Thread Kiran Kumar Vasireddy
Hi Pradeep, For String and also for arraycollection data binding is not working . You are getting "Pradeep" string since you initialized it where the variable is declared , try changing the value to some thing in the function still it displays "Pradeep" . In the following example application is c

Re: [flex_india:26682] Design mode view is not the same when running the actual Application StyleSheet

2009-11-16 Thread Kiran Kumar Vasireddy
Hi jalopy, Did you set the alpha =1 , I think that is the problem . Otherwise please share the code and I can check it Regards Kiran On Sun, Nov 15, 2009 at 9:10 PM, jalopy wrote: > Hello Everybody, > > When applying CSS to certain page, and looking at the design mode in > Flex Builder is fine

Re: [flex_india:26681] Re: Moving components along with Page

2009-11-16 Thread Kiran Kumar Vasireddy
Thanks Sathesh . This is what I am looking for . This solved my problem . Once again thanks for your prompt response Regards Kiran On Mon, Nov 16, 2009 at 2:02 PM, sathesh wrote: > hi kiran, > > hope you are are looking for something like this... > > > http://www.adobe.com/2006/mxml"; > layou

[flex_india:26680] Re: adding two types of array to combobox?

2009-11-16 Thread sathesh
hi, to combine two arrays use 'concat' method like arr.concat(lash) http://www.adobe.com/2006/mxml"; layout="absolute"> On Nov 13, 7:51 pm, abhilashm86 wrote: > i created 2 arrays, i declared them in

Re: [flex_india:26679] How to capture the request in flex before hitting to server

2009-11-16 Thread Utkarsh kaushal
Ideally it should be done at web server level. If it is business need to create filter in flex application itself I will suggest to create an .as class instead of submitting request to server directly you can delegate request to this .as class which would conatin business/filtering logic and will

[flex_india:26678] Re: Moving components along with Page

2009-11-16 Thread sathesh
hi kiran, hope you are are looking for something like this... http://www.adobe.com/2006/mxml"; layout="absolute" scroll="updateScroll()"> On Nov 16, 10:55 pm, Kiran Kumar Vasireddy wrote: > Hi Edwin, > > Thanks for your response.( Code is below) . I want the first

[flex_india:26677] How to remove default items from context menu

2009-11-16 Thread rana
I am having a requirement to show only one new item in the context menu. Is it possible to remove the settings and about flashplayer 10 items from the context menu? Please share if you have any solution. regards Raghava -- You received this message because you are subscribed to the Google Group

Re: [flex_india:26676] Moving components along with Page

2009-11-16 Thread Kiran Kumar Vasireddy
Hi Edwin, Thanks for your response.( Code is below) . I want the first Panel to be visible always(in the code below) . I mean Its place on the screen to be fixed what ever the case . If you run the below code you get scroll bar for the application . If I hold down scroll bar and come down , the fi

Re: [flex_india:26675] How to capture the request in flex before hitting to server

2009-11-16 Thread Kiran Singh
S.correct. On Mon, Nov 16, 2009 at 10:34 PM, Utkarsh kaushal wrote: > Are you looking for proxy kind of service? Please elaborate your req. > > Thanks, > Kaykay > > > > On Mon, Nov 16, 2009 at 4:07 AM, Kiran Singh wrote: > >> Hi friends, >> >> Can any one suggest a solution how we can process the

[flex_india:26674] Re: Difference Between LCDS and BlazeDS

2009-11-16 Thread elda...@gmail.com
Take a look: http://sujitreddyg.wordpress.com/2008/01/31/blazeds-and-lcds-feature-difference/ for most Flex applications you could you use just Blaze: most important is Data access/remoting & Publish and Subscribe messaging. Other LCDS options are for enterprice specific applications Gabriel On

Re: [flex_india:26673] Difference Between LCDS and BlazeDS

2009-11-16 Thread Kiran Kumar Vasireddy
Check Reddy's blog http://sujitreddyg.wordpress.com/2008/01/31/blazeds-and-lcds-feature-difference/ and http://www.theriadeveloper.com/2008/04/blazeds-vs-lcds.html Regards Kiran On Sat, Nov 14, 2009 at 12:03 AM, Ravi wrote: > Hi, > > Can any one explain the difference between LiveCycle Dat

[flex_india:26672] Re: Air Apps + File . applicationDirectory issues

2009-11-16 Thread elda...@gmail.com
i suggest you to use LogUtil (for log) & ShareObject (for userPrefs)... See: http://opensource.adobe.com/wiki/display/cairngorm/Best+Practices+for+Logging And See: http://learn.adobe.com/wiki/display/Flex/Shared+Objects On 16 nov, 06:57, riaflexible wrote: > Hi All : > > I have read that Air w

Re: [flex_india:26671] How to capture the request in flex before hitting to server

2009-11-16 Thread Utkarsh kaushal
Are you looking for proxy kind of service? Please elaborate your req. Thanks, Kaykay On Mon, Nov 16, 2009 at 4:07 AM, Kiran Singh wrote: > Hi friends, > > Can any one suggest a solution how we can process the request before it isd > hitting to server. > > My requirement is having a filter bet

Re: [flex_india:26669] Multiple user games using TCP/IP

2009-11-16 Thread nagendra bhange
use smartfox server On Mon, Nov 16, 2009 at 11:29 AM, karthi keyan wrote: > Hi Friends, > I am new to gaming domain. > Can you any one suggest me how to implement the multiple user games in > flash using TCP/IP. > > Thanks in Advance. > -- > Regards > J.R.Karthikeyan. > > -- > You received this

Re: [flex_india:26670] Re: how to get data from java and display in combobox?

2009-11-16 Thread prajnith K
yeah thanks for u reply... i converted event.result as array collection if i have two combo boxes ..what to do... for a remote object we have one result event! in the same screen i have two combo boxes... Prajnith On Mon, Nov 16, 2009 at 7:33 PM, mahesh bab wrote: > convert event.result

Re: [flex_india:26668] Re: how to get data from java and display in combobox?

2009-11-16 Thread mahesh bab
convert event.result as Arraycollection.Give that ArrayCollecton as dataprovider for combobox and labelField property(which field want to display in combobox) Regards D.Mahesh Babu On Mon, Nov 16, 2009 at 12:47 AM, prajnith K wrote: > im trying like this.. > > dataprovider = "{ro.getar

[flex_india:26667] About CapsLock

2009-11-16 Thread surendra babu
HI All, I am implementing AIR application.So i developed a KeyPad component that contains all the functionalities like BackSpace,ClearAll,Space. Now i am facing problem with caps lock functionality. Can any body tell me how i can achieve this functionality. Thanks all, Surendra. -- You

[flex_india:26666] Multiple user games using TCP/IP

2009-11-16 Thread karthi keyan
Hi Friends, I am new to gaming domain. Can you any one suggest me how to implement the multiple user games in flash using TCP/IP. Thanks in Advance. -- Regards J.R.Karthikeyan. -- You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to

[flex_india:26665] How can I copy/clone a display object with out loosing data in it ?

2009-11-16 Thread Ravindra Kumar Challagandla
Hi, How can I clone/copy a display object with out loosing data ? for example if I have entered some text in text input, after cloning/ copying i should have the same text in the copied/cloned text input ? how can i achieve this functionality ? Thanks, Ravindra. -- You received this message bec

[flex_india:26664] drag and drop with Vbox

2009-11-16 Thread rogelio
hi, I need to add drag and drop to a Vbox, but this fonction is not available. can you help me? best regards -- 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_in...@googlegroups.com. To unsubscrib

[flex_india:26663] Re: how to get data from java and display in combobox?

2009-11-16 Thread prajnith K
im trying like this.. dataprovider = "{ro.getarray().lastresult}"; is this correct or in result event var arr:Array = event.result ? which is correct? Prajnith On Mon, Nov 16, 2009 at 11:08 AM, prajnith K wrote: > hi can any tell how to get data from java and display in

[flex_india:26662] Sending email error

2009-11-16 Thread jaseem v v
HI friends, Is there any possible way to send my collected data from an email form directly to my gmail account using AS 3.0 ? Is it possible using binary sockets? If so how to set up? I made an email form and it sends data entered in the form as httpservice to the url where the php file is hoste

Re: [flex_india:26661] Air Apps + File . applicationDirectory issues

2009-11-16 Thread jakir qureshi
Hi, you done one thing while write the file this application file open as a document file and write it. var adbConfigFile:File; // The Config preferences File var adbConfigStream:FileStream = new FileStream(); // The FileStream object used to read and write data. var adbConfigXML:String; // The

[flex_india:26660] How to capture or share the desktop

2009-11-16 Thread Julio B. Costa
Hi friends, Please help! I need share the desktop, Anyone have any idea how to do this!? thanks Julio B. Costa Brazil -- 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_in...@go

[flex_india:26659] Re: Sending email error

2009-11-16 Thread jaseem v v
I think its rectified. what I did was hosted bother swf and php at the same domain so that security sandbox is ok. Thank you On 11/16/09, jaseem v v wrote: > HI friends, > > Is there any possible way to send my collected data from an email form > directly to my gmail account using AS 3.0 ? > Is i

[flex_india:26658] Problem in setting up Cairngorm with RemoteObject

2009-11-16 Thread ShiVik
Hello all I am using Flex 3.4 and Cairngorm 2.2 and Zend_AMF for server side. I am having problem in setting up RemoteObjects. I am getting the infamous Channel disconnected error. [RPC Fault faultString="Channel disconnected" faultCode="Client.Error.DeliveryInDoubt" faultDetail="Channel disconn

[flex_india:26656] Creating screen cast in flex/AIR - Need urgent help

2009-11-16 Thread tanvi bansal
Hello everyone, I have started with AIR recently and want to achieve a functionality. In our application there is a small window where user can record whatever he is doing. for example it is a free pen tool where he creates some image and wants to record how it was created I am able to take snaps

[flex_india:26657] how to get data from java and display in combobox?

2009-11-16 Thread prajnith K
hi can any tell how to get data from java and display in combo box using remote objects... 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_in...@googlegroups.com. To unsubscribe from

Re: [flex_india:26655] can we keep our modules separate and load only those modules are necessary

2009-11-16 Thread jaseem v v
How about compiling them in swc ? On Fri, Nov 13, 2009 at 11:29 PM, pradeep gorijavolu < pradeepflex.gr...@gmail.com> wrote: > Hi Varun, > > This is the one way we can reduce the swf file size do it once.. > Right click on your project and set the compiler argument -debug=false > And observe the

[flex_india:26654] How to capture the request in flex before hitting to server

2009-11-16 Thread Kiran Singh
Hi friends, Can any one suggest a solution how we can process the request before it isd hitting to server. My requirement is having a filter between the server and flex client. So for it before hitting to server.i will capture the request in the flex and mainpulate the request and redirect to ser

[flex_india:26653] Air Apps + File . applicationDirectory issues

2009-11-16 Thread riaflexible
Hi All : I have read that Air wont allow to write to Applications Directory , i.e File . applicationDirectory is just a Read Only Directory . But I have a requirement where in i have to save the userPrefs file & logs in the Application install directory . I knew that most of the Air Apps write th

[flex_india:26652] image enable

2009-11-16 Thread amutha
is there any possibility to disable the image in flex 3? i tried it it's not working...how can i enable the image? -- 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_in...@googlegroups.com. To unsub

[flex_india:26651] Re: Resizing image

2009-11-16 Thread amutha
hi use object handler for image handling ... inside that u can do resize, rotate very well... try this example : import mx.controls.Image; import com.roguedevelopment.objecthandles.ObjectHandleEvent; import com.roguedevelopment.objecthandles.ObjectHa