vote up 0 vote down star

Hi

I am a newbie to as3, i have an external .swf file that is loaded from the flex app with swfLoader.

The external swf contains a modifiable URI input field with a clickable button to access that URI value.

What i am trying to acheive is moving that URI input field to my flex app, and have the input value from the flex app sent to the external .swf file on load.

The URI is something like "http://localhost/app/...."

I have been hunting around but not too sure how to achieve this?

Really appreciate your help.

Sorry if this seems light a really dumb question, i am still learning action script.

flag

1 Answer

vote up 0 vote down

I'm not totally sure I understand the question, but it sounds like you should just be able to set the "source" property on the swfLoader in response to the user input. Something like:

private function handleButtonClick(event:Event):void
{
    swfLoader.source = "http://localhost/app/...." + userInput.text;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.