Hi all ,
I have an application with embed swf thatis called from javascript using handleEvent, This was working fine when they were both on same domain but now when i seperated them it returns an error , any ideas ??
Thanks
...
Hi, I was wondering how to basically edit a .swf file using php, to change a single variable or to change more. How would I go about doing this? Is there a way to edit it without knowing machine code?
If there is an example of how to do this, where can I find it?
Thanks!
Or, if there is an easier way to go about doing this, please let...
I have a Flex 3 SWF in one Amazon S3 bucket, which dynamically loads images for buttons which are stored in another S3 bucket.
I have set a completely open crossdomain.xml file in each bucket, but when I call the SWF from my web site, only a few button images load - and they're just the 'up' or 'normal' state button images (i.e. not 'do...
is it possible to extract dynamic loaded text from a swf (flash application) programatically ?
...
First off, thank you very much for your time and any help that you can offer.
My question is as follows,
I have two swf's: MovieA.swf, MovieB.swf
MovieA is hosted off of a web server at WebsiteA.com
MovieB is hosted off of a web server at WebsiteB.com
WebsiteB contains a crossdomain.xml file, which allows access from WebsiteA,
and to...
I want to load a swf into a Flex application and scale it down into a thumbnail-size.
I've looked at http://stackoverflow.com/questions/245420/dimensions-of-loaded-swfs-stage, but it does not really address my need: I want to size it and keep all the pieces inside a container.
Thanks
...
I have one main "parent" swf that loads several other swfs. If something happens in the main swf I need to tell one of the child swfs about it.
This seems to work well the other way around. Any of the children can simply dispatchEvent(), and I can set up the main swf to listen for the event. However, I can't get the child swf to catch a...
Hi,
I have a fla (using ActionScript 3.0) I am compiling in Flash. I am using URLRequest and URLLoader to access a http webservice.
var loader:URLLoader = new URLLoader();
var request:URLRequest = new URLRequest("http:test.webservice.com");
try {
loader.load(request);
} catch (error:Error) {
trace("Unable to load requested...
I am loading/unloading several swfs from one main swf. When I load a new swf I do something like this:
contentContainer.addChild(the new swf); //add the new swf
contentContainer.swapChildrenAt(0,1);
contentContainer.removeChildAt(1); //remove the previous swf
My question is, when I removeChildAt(), does the old swf keep "playing" and ...
i used play button image within datagrid iteam renderer, if i click image then move to another state (by using currentState ='play') . so i tried like
<mx:DataGridColumn textAlign="center" headerText="" dataField="col2">
<mx:itemRenderer>
<mx:Component>
<mx:HBox textAlign="center" paddingLeft="17">
<mx:Image source...
Suppose on windows if I map the Z:/ drive to some folder on the network and my swf resides there. Can I embed that swf in the html using AC_FL_RUNContent and specifing the path as Z:/test.swf??
...
i'm planning to use a .swf file as a header. this won't work.
<img src="exactheader.swf" width="650" height="140" />
can you tell me how?
...
Say I have 3 different swfs: dog.swf, cat.swf, mouse.swf, and each has their corresponding fla file. In the fla files I have movie clips like "head" and "tail", which are exported for Actionscript with names like Head and Tail, and each just contains an image.
The problem comes when I have a main swf that loads and unloads these animal ...
I know that it is possible to add swf metadata to the compile command as a command option, but I can't find any documentation on how to access these metadata within the actionscript during runtime. We're trying to add a version number to the swf during compile time and then somewhere in our app we would retrieve it during runtime, here i...
Hi Guys,
I have one embed flash movie inside one div, I put one javascript onclick event handler in the main div, but isn't catching the click, what is wrong?
Code:
<div id="top-box-player" onclick="alert('Hi Bananas!');">
<object width="400" height="300">
<param name="movie" value="general.swf">
<embed src="./...
Right now i develop an RIA application, for online movie creating.
Main data format it`s a server side generated swf files.
I need an server side solution for automated swf to video converting.
After some researching and experiments, i found two solutions:
Rewrite a bit an open source flash player gnash
Grab adobe flash player directl...
I am trying to stop the audio of the video swf and i can't get it to stop. Here is my code for loading the file
var myLoader:Loader= new Loader();
myLoader.x=420;
myLoader.y=200;
// boolean variable set for use below in our function
var screenCheck:Boolean = false;
//These three linces keep stafe elements the same size, so they don't d...
I have swf file with some graphics I need to use in my haxe(future compiled to swf too) program. There is no problem with embedding pictures by swfmill, so i tried to disassemble the swf with swfmill and found some entries like DefineSprite and DefineShape which have objectID's.
Is it possible to attach these elements from haxe using th...
Good morning friendly Flashers ;) So I've been trying since yesterday to just load a SWF file into my main movie. I've done this before just placing code inside a movieClip, but this time I'm working inside of Class files. I have my main class which calls a function inside of my sub class which contains the loader. My problem is that the...