I need to get a javascript var in my Flash application. I like to be able to just set a variable in the javascript (client constraints) rather than define a function.
Can this be done? I am trying to use the ExternalInterface.call()
I get the alert but I can't get the lightbox window to display. When my as code makes the ExternalInterface call I get what looks like a page refresh and a blank browser window.
I have an enterFrame action that I use on a graphic:
[Code]....
Because I want to use the above code more than a few times, I tried to make it a function.
[Code]....
But for some reason the function call does not work when I call it via an action on a graphic where initially the code worked when it was explicitly written and not called as a function.
have a node that has an asfunction embedded - won't work. if I change the a href to a web page- it works fine. If I try to call a custom function it doesn't call it at all.
Is it possible to call a PHP function from flash and have it execute right away?
If so how could I go about doing that, because I am trying to call a PHP function that will update a users facebook status, but thus far I have been unsuccessful, so I am kind of at the end f my rope.
Below is a MXML code built from Flash Builder 4.5 with AIR SDK 3.0. Using Starling framework to create 2D animation and wonder how do I call a addText function without create a new instance of Game?
I'm trying to call a function from a AS3 container which should call old AS2 SWF that cannot be edited bacause we are talking about 1000 swf files, does exist some way to call a function inside the AS2 SWF from the AS3 container? I know a possible way by adding a LocalConnection as written here but as I said I can't edit all the swf files, so I just wonder to know if does exist some alternative.
I've researched over that a way to call a javascript function for actionscript 2.0 and 3.0 is via ExternalInterface?But I'm trying to call a javascript function from my flash during an image click.
This is properly place in the html and my swf file is properly embedded in the html.. but it's not working.. Or maybe i don't understant the function? this is just a simple try to call a javascript function but it's not working..
How to call AS2 method from NextFrame(or any other frame) in Flash?Say you have Action Frame on frame 3, and another one on frame 4, how do you call methods on frame 4 when you are on frame 3.
I'm trying to pass a variable through a function, but I'm getting it's value 0. Here's my code:
thumbLoader.addEventListener(MouseEvent.CLICK, goToCategory); function goToCategory(e:MouseEvent) { trace(c);[code]....
this trace gives me value of 0. Normally I would do goToCategory(c) and inside that category I would get it's value, but in this case I'm calling this function with an event, how can that be done?
var c is declared globally, so I'm using it above this code in different place... is there smth like global $c like in PHP.. or there's some other way to do it?!
Please i am looking for a way to call a function defined in a different frame in ActionScript 2.0. The details are as follows[code]...
For some reason, the code on frame 2 is working by itself but selecting an index from the list from another frame is not working. In other words, i am not able to call successfully selectVideo() from frame 1 while it is defined in frame 2.
The objective of the program, as implied, is referring to a certain video from the list from a different frame. The whole code is working without errors just I'm not able to select a video from the list and play it if i was initially in a different previous frame.
I've got different functions in actionscript 3, one function generates random numbers each time there's a button click. But with another button I want to call the random number which is generated at that moment. I have to call the random number from another function then, but these are two different functions so it just considers it as an undefined property.
[Code]...
But I can't call randomnummer1 because it's inside another function. So I get the property undefined error.
How do you set a function to increment in AS3 Flash. I am trying to start the incremented function when my video starts and then run the same function every 20 seconds until the video stops.
[Code]...
OTHER items are started and set within this function that do not have to do with the incremented function.
My client says make this, and use XML so it's dynamic and easy to update:A text box with scroller holding news headlines, and a more link that will open an MC with the entire news article. Like:11/28/05 - X-Raided Celebrates 3 Years in Prison Folsom Correctional facility officers report that imprisoned rap artist X-Raided threw a party in his cell (with his cellmate) to celebrate his third anniversary in prison. Officials state.[code] how to make that "more" link in the XML tell flash to run a specific function.I already have a function that makes whatever mc I want visible and I can write some code to fill in dynamic text boxes with the proper nodeData.But what would that "href=" have to be in the XML in order to call that function inside of flash. Is there a way you can turn XML data into executable commands?
Here's what I intend to do. Create a base movie. Load a footer into the basemovie. When a button is clicked in the footer, I want to call a function in the base movie to load a page on the top.
refer to the attachment. Basemovie is the main class, that loads the footer swf. In footer.as, I want to be able to call basemovie.fLoadContent() from the function fClickNext().