[flex_india:32329] Flex4 :MXML into AS3

2010-12-15 Thread Abdul
*Hi All,* Can any one help me to convert the following Flex4 : MXML code into an AS3 code, editable="false" > selectable="false" > focusEnabled="false" > horizontalCenter="0" >

Re: [flex_india:32329] Re: Problems using amf-secure with Internet Explorer on https

2010-12-15 Thread Radu Toev
Hello, My connector has the following attributes Another thing I did not mentioned in my post is the behaviour of IE when the link is accessed: It outputs the following message :There is a problem with this website's security certificate.Then I have two options : click to close the webpage and

Re: [flex_india:32328] Is therer any way to Run a Action Script Class

2010-12-15 Thread Gerald Anto Fernando
ok thank you i will try and inform you On Wed, Dec 15, 2010 at 7:29 PM, Natwar Garg wrote: > Try below code as an example of creating button in action script project: > > > > Note : Here(in this example) we are using/extending sprite class only (i.e. > *flash*.display.Sprite), you can also use *

Re: [flex_india:32325] Can we create new project from my flex application with coding?

2010-12-15 Thread amit shrestha
with flex alone , definitely no, because there is no way you can access file system. You will need a server [which the flex client connects] to do so. How ever if it's air application then it's possible, just use file system library On Tue, Dec 14, 2010 at 10:42 PM, sankarbala wrote: > > Dear fri

[flex_india:32325] Re: Problems using amf-secure with Internet Explorer on https

2010-12-15 Thread db
Just make sure that the SSL port are enabled on tomcat . AMF Channel config---> services-config: https://{server.name}:{server.port}/ {context.root}/messagebroker/amfsecure" class="flex.messaging.endpoints.AMFEndpoint"/> false in r

Re: [flex_india:32324] Re: Live video streaming

2010-12-15 Thread Preetham Hegde
*You should use media server to do that. Otherwise t**here are many free * *live streaming apps available. You can use them **in your site to stream live. * * * Regards, Preetham Hegde On Wed, Dec 15, 2010 at 2:28 PM, Flexitechy wrote: > Thanks.. > > > On Dec 15, 12:51 pm, Santosh B wrote: > >

RE: [flex_india:32322] Is therer any way to Run a Action Script Class

2010-12-15 Thread Natwar Garg
Try below code as an example of creating button in action script project: Note : Here(in this example) we are using/extending sprite class only (i.e. flash.display.Sprite), you can also use fl.controls.Button and other Flash IDE readymade controls (if you have Flash CS Installed). package

[flex_india:32322] Problem with SWF height in Applcation

2010-12-15 Thread sachin kewale
hi all, I am facing problem with SWF height when loading in application, i am loading chart of height 750 and above in grid item i passing the charts height and width to grid Item grid item is added to grid row and grid row is added into Grid of height is 100 % and width 1040 which is a

Re: [flex_india:32320] Is therer any way to Run a Action Script Class

2010-12-15 Thread Gerald Anto Fernando
ok suppose i want to create a button in action script in Action Script project how to do it. if i declare var b:button = new button() , button class is not available Thanks&Regards, Gerald A On Wed, Dec 15, 2010 at 1:17 PM, Natwar Garg wrote: > Flex components are meant for flex projects only,

[flex_india:32318] Re: Live video streaming

2010-12-15 Thread Flexitechy
Thanks.. On Dec 15, 12:51 pm, Santosh B wrote: > Hi, > > Please visit the below link. > I have replied with the Sample code,Hope it will useful. > > http://blog.flexexamples.com/2008/01/22/displaying-a-webcams-video-in... > > Thanks and Regards, > > Santosh Bhoyar > Hyderabad. >

[flex_india:32318] Re: Live video streaming

2010-12-15 Thread Flexitechy
Hi Santhosh, I want to send videos from one system to a server through http. And to see that video from another web page. Same as in video chat Flexitechy On Dec 15, 12:51 pm, Santosh B wrote: > Hi, > > Please visit the below link. > I have replied with the Sample code,Hope it will useful. > >

[flex_india:32315] Problems using amf-secure with Internet Explorer on https

2010-12-15 Thread Radu Toev
Hello, I have the following configuration - client : Flex with sdk 4.1 - server-side : tomcat, spring framework Communication is done with the mf protocol. In my services-config I have the following config for the channels false

Re: [flex_india:32315] Live video streaming

2010-12-15 Thread Santosh B
Hi, Please visit the below link. I have replied with the Sample code,Hope it will useful. http://blog.flexexamples.com/2008/01/22/displaying-a-webcams-video-in-a-flex-videodisplay-control/ Thanks and Regards, Santosh Bhoyar Hyderabad.

RE: [flex_india:32315] Is therer any way to Run a Action Script Class

2010-12-15 Thread Natwar Garg
Flex components are meant for flex projects only, If you want to use any flex framework(UI/Display) controls, you need to use Flex framework (frameworks\libs\frameworks.swc) , depending upon your project requirement you need to choose Project Type (Flex Project/ActionScript Project). Actio