[flex_india:23527] Fwd: How to send E-Mail from a Flex Application?

2009-07-06 Thread amutha raju
Hi all. I designed a website in Flex which has a contact us to receive E-Mail(s) from the visitor. But i dont know the code to 'send E-Mail from a Flex Application'. I searched a lot in the internet, but found no solid solution. Some say to use ColdFusion Server others say use PHP Code. I am

[flex_india:23526] downloading and launching air application from website

2009-07-06 Thread flexlover...@gmail.com
hi all, is there any one who can tell me the steps to write code for download and launch our air application from our website ? I have create 1 application in flex and same in air. If user want he can download air application from my flex application(Website). thanks

[flex_india:23528] Re: downloading and launching air application from website

2009-07-06 Thread bala subramanyam
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script ![CDATA[ import flash.net.*; public function openNewWindow(event:MouseEvent):void { var u:URLRequest = new URLRequest(http://www.adobe.com/flex;); navigateToURL(u,_blank); } ]] /mx:Script mx:Button label=Open New Window

[flex_india:23529] Re: Fwd: How to send E-Mail from a Flex Application?

2009-07-06 Thread Kapil Viren Ahuja
You will need a server side component to send emails. Client (Flex) can invoke that component to trigger the email. You have a few options: Cold Fusion, PHP, Java, dotNet based on what your server is? I am not aware of any direct approach aka without an application server. Cheers

[flex_india:23530] Re: Fwd: How to send E-Mail from a Flex Application?

2009-07-06 Thread Devaraj
or you can use direct SMTP Configurations updated in this application.. http://nsdevaraj.wordpress.com/2008/03/06/smtp-quick-emailer-air/ it works well for both flex and AIR Regards, Devaraj On Jul 6, 12:21 pm, Kapil Viren Ahuja k.v.ah...@gmail.com wrote: You will need a server side component

[flex_india:23531] Re: downloading and launching air application from website

2009-07-06 Thread flex
but how can we check is it already there and can we open or launch application from client's machine? On Jul 6, 12:21 pm, bala subramanyam baluvasire...@gmail.com wrote: mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script ![CDATA[ import flash.net.*; public function

[flex_india:23533] Re: browser related issue

2009-07-06 Thread Akhil Agrawal
I am using flash player 10 On Jul 6, 10:27 am, Akhil Agrawal akhil06.i...@gmail.com wrote: @Pattanayak Can you plz help me over this community.Or shoul i call u personally. What is the preferable time to call you. On Jul 1, 8:10 pm, Pattanayak Babu titupattana...@gmail.com wrote: Any

[flex_india:23535] Flex Calender

2009-07-06 Thread nikhil
Hello All, Is there any way to disable the saturday and sunday in the Calender UI? My need is user cannot select the saturday or Sunday as date. Please give me any suggestions regarding this. Thanks Regards Nikhil --~--~-~--~~~---~--~~ You received this

[flex_india:23534] Upload excel view the data in flx

2009-07-06 Thread ganesh kumar
hi friends, very good evening.Can you say how to upload excel file and view the data in flex.thank you for your help. Regards Ganesh Kumar --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Flex India Community group.

[flex_india:23536] Send a resized image to server.

2009-07-06 Thread Tushar
Hi, I am new to flex. I am able to resize the image by using following code. ?xml version=1.0? !-- Simple example to demonstrate the HSlider control. -- mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script ![CDATA[ private var imageWidth:Number=0;

[flex_india:23537] Re: Flex Calender

2009-07-06 Thread nikhil
well I solved this issue now.. :) :) sorry for this new thread... but the solution is set the disableDays property of DateField as [0,6]. On Jul 6, 3:34 pm, nikhil 4ever.nik...@gmail.com wrote: Hello All, Is there any way to disable the saturday and sunday in the Calender UI? My

[flex_india:23538] Dont let focus go to another module

2009-07-06 Thread Portillo
I making an application with modules. Everytime I press tab, the focus goes to another component... but, the problem is: When I have two modules open, the focusManager look to the next TabIndex in another module. How can I do to focus stay in module that I'm working, not to another one.