Someone sent me a .fla file containing several art assets, with instances all configured to be displayed properly and in the right positions. However, since I'm using FlashDevelop with the Flex 4 SDK, I have no idea how to access these instances in code. Some of the objects are MovieClips that I need to modify the size of, and others are...
Is JavaScript capable of doing the same what Flash does? And if it is the case, can it be a good idea to switch from Adobe Flash to JavaScript?
...
Background: I'm developing Greasemonkey scripts for a website. I do not control the Flash file.
Question: Is it possible to simulate a mouse click on a button/movie clip in a Flash object embedded in a web page? Googling only shows ways to simulate a mouse click on a DOM element, and ways that require the ActionScript to be changed to ...
I am trying to to attach a function with parameters to the timer but it says "unrelated type function" is there any way to get around this??
code example:
var redoTimer:Timer = new Timer(50);
redoTimer.addEventListener(TimerEvent.TIMER, saySomething("helloo"));
redoTimer.start();
this wont seem to work but is there a way to pass on ...
Any sample code to do so ? I can only see example for passing simple variable.
Let's say I have a movieClip M1 and a movieClip M2 loaded by M1. Then M2 will create an instance of a class c that will be passed to MovieClip M1 by calling a predefined method.
I'm totally new to actionscript so I'd need to know the exact syntax and event t...
I really don't want something sophisticated, in fact I want the simplest animation for learning purpose:
I just want to move a shape on a straight line.
Is it possible to do so in pure actionscript (with flex sdk only) by creating a timeline programmatically or without creating timeline ?
...
I'm almost certain this is possible, but am not sure how to go about it.
Basic idea:
User visits a website using a HTTP/socks proxy. Hidden .swf file is embedded on the site which, when loaded by the client, sends data back to the web server, and that allows the IP to be logged along with a corresponding session ID of some sort which ti...
If no will it still show gracefully ?
...
I have been given a book on Actionscript 3 and I am looking to get started with learning it. What version of flash uses actionscript 3?
Also does anyone know if adobe offer trial versions of their software for OSX? (10.6 snow leapard).
...
Given that both of these calls to getQualifiedClassName return the same thing (mx:Label), how would one go about programatically differentiating between an instance of a class and a reference to the class...
var lab1:Label=new Label();
var lab2:Class=Label;
var qcn1:String=getQualifiedClassName(lab1);
var qcn2:String=get...
Hello, I'm an Avid Javascript developer, and am wondering if there's any to use Open web technologies (JS/HTML/CSS) to build a flash game.
After a few Google searches, i've got nothing, so I'm asking here.
...
What is the best (and simplest!) way to record video from a webcam to the local filesystem--all from a browser? Ideally the video would be recorded in HD and then we could use ffmpeg later to convert it into the formats and sizes needed.
Here are some things we've looked into:
Use Flash to stream to a local Red5 server. But we've had ...
I want to know the programming language used by Boxee.tv guys to build their IPTV software. My company is building a IPTV software which will fetch channels and stream channels from the internet.
Boxee's desktop client does the same. Since we want to create a Similar UI, I would like to know what have they used to create such a UI.
Is ...
Hi,
I have a main swf in as3 and I load another swf in as3 in it. Now I want the main swf to pass variable to loaded swf. Which is not happening ? pls. help!
Regards,
Sagar
...
I'm creating a Flash-based (AS3) Facebook Connect site using the Actionscript 3 API and though I've got basic FB Connect functionality in place in terms of allowing users to login correctly, I'm running into walls when trying to ask for certain extended permissions. I'm not positive, but it appears as though there are two fairly signifi...
This is driving me nuts and because it's a combination of various technologies together I have a hard time tracking the problem.
Scenario
I wrote a tiny HTTP server that serves .flv files; these flv files are encoded on the spot. The flv files are encoded with adobe's screencodec (I started with libflv but that was too buggy so I ende...
Hi,
I have a (self-created) swf demo with button triggering getUrl('SampleTargetPage.html')
Now I want to place the swf at our cdn at
cdn.example.com
while my html page resided on www.example.com
More structured:
www.example.com/test.html
cdn.example.com/someflash.swf
cdn.example.com/crossdomain.xml
I thought it would be sufficie...
So, I'm writing an AS3 program that tiles floor tiles. I want the user to be to be able to create their own floor schematic represented by different rectangles. It'll be drag-and-drop. They will lay out their schematic (which is composed of different size rectangular tiles) and drop colors/patterns onto them.
This schematic will then be...
Hi guys, 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.
Any help would be appreciated, thanx!
...
I have 4 buttons on my canvas named item1, item2, item3 and item4. In the first frame i've written this code(as2):
stop();
for (n = 0; n <= 10; n++)
{
this["item" + n].onPress = function ()
{
trace('lol');
};
}
When click the one named item1, it doesn't shows lol, which is funny because if i do this:
stop();
for (n = 0; n <= 10;...