swf

Embedding not only the first layer of my SWF file?

Like all of you know (if not, you should!) when I use the embed stuff to link a SWF to a class, only the first layer is utilized by my class. So.. is there a way to use all of the other layers too? Thx! ...

External Swf to Communicate with its own timeline after loading it into a containing swf. AS3

I have created a online portfolio that loads in External swfs. Everything works fine on its own but once the external swf is loaded into the containing swf I lose control of the external swfs timeline. Is this a bug or is there just something I am forgetting function ValidateAndSend(event:MouseEvent):void{ //validate form fields i...

Flex Webservice in swf question

I'm trying to use for getting infomation from an WSDL file online. I have no problem running and testing in my FLEX 3 builder. However, After I export release build into SWF file. The program doesn't work even running local. IE/firefox said "transferring data from http://www.webservicex.net" on the status bar and doesn't response. Thi...

Flash AS3: Problems linking a class to a symbol, classpath not found

Im having problems with classpaths. I have used them before with "import" but I'm not able to link a class directly to symbol in the library. I have a class c:/myfolder/src/myclass.as . In prefernces > AS3 settings, I have c:/myfolder/ as default classpath. I click linkage on the symbol and enter src.myclass . When I click the chec...

Flash movie being scaled without me asking

I've been developing a web based pure ActionScript-3 (no MXML involved) videogame using FlashDevelop, and have had no real surprises so far. I've recently tried moving my project over to the trial (but fully functional) of Intellij-Idea and have found that while the .swf produced by Intellij still functions, it has somehow been scaled ...

loading swf from AmazonS3 - crossdomain policy

Hi, Looking for a little help if anyone has any experience with this. I have a flash app sitting in domainA which needs to load a swf which comes from an Amazon S3 bucket. On load I get the following error. "Error #2044: Unhandled securityError:. text=" I have put a crossdomain file in the bucket and presumed that would do the trick. A...

Testing movie with Flash IDE fails to load file from localhost

Hi, I'm just wondering if anybody can help me with my simple but frustrating problem. I have created an SWF that loads an XML file from http://localhost/flash/Projects/MEL/Quiz/Quiz/bin/xml/quiz.xml, but I get this error when running the movie using Test Movie in the Flash IDE. Error #2044: Unhandled ioError:. text=Error #2032: Stream ...

Error #2044: Unhandled securityError:. text=Error #2048: Security sandbox violation:

I have created a crosdomain policy file, I have added code to my flex app, and I still get security sandbox violation...have I done something wrong? Here are my errors and file snippets: Error #2044: Unhandled securityError:. text=Error #2048: Security sandbox violation: http://mysite.com/folder1/folder2/media/swf_demo.swf cannot load d...

html link in swf object

I have a swf file but I dont have the source. I need to add a link to the object swf but I dont know how. I need to do something like this: <a href='http://www.mypage.com'&gt;&lt;object ....> </a> is there a way to achieve this? Thanks in advance ...

swf to flv converter

any tools that are freely downloadable to convert swf to flv format. (not their trial version) ...

Creating Preview Images of SWF files (a server-side solution)?

Hi all, I'm looking for a way to create preview images of SWF files using server-side script, as it's for a web-based application. Any idea how to do this? Thanks, Ryan ...

AS3 Stop external swf

Hi I'm loading an external swf into a MovieClip, and I want it to stop until I choose to play. Currently it plays upon loading immediately. var mc:MovieClip; var swfLoader:Loader = new Loader(); swfLoader.contentLoaderInfo.addEventListener (Event.COMPLETE, eventLoaded); var request:URLRequest; request = new URLRequest("external.swf");...

AxShockwaveFlash.CallFunction() Help (VB 2008)

I'm trying to use CallFunction() to call a function inside a flash file, but no matter what I do it throws a HRESULT E_FAIL error. Any clues why? My flash version is 10 if you need it. ...

swf sending servlet doesn't work on IE

hi im trying to render the swf on jsp page i can show local files "waf.swf" but whenever i use the servlet address it fails on IE but works on firefox this is the servlet code ServletOutputStream out = response.getOutputStream(); response.setContentType("application/x-shockwave-flash"); response.setContentLength(length); response.setH...

Publish a Flex project, which is better option SWF or AIR?

Hello, if i made a project with flex, and i want to distribute it, what it´s the better choice? i mean, it is not internet app, just desktop demo, what about the computer where application should be executed, there is any way to pack the application togheter with the flash/AIR player, in order that everything needed will be just in the ...

Accessing Uza's global object from an loaded external swf

I am using the 1.2 version of Uza's Global singleton (http://www.uza.lt/codex/as3-global-object/). The container swf stores some data and a link to a function in the "global" object. Then another swf is loaded inside the container, it gets it's global instance with Global.getInstance();, and i suppose i can access the data and function...

Can we use compiled HAXE swf's swc's in Actionscript as normal libs?

Can we use compiled HAXE swf's swc's in Actionscript as normal libs? I have a swf compiled from haxe code (I can try to compile it into something else SWC for ex) I want to use it as lib in AS3. Is it possible? If yes how to do it? ...

Radio buttons and textboxes in Flash SWF disappear on IE

Hi there I have developed a Flash application for a client (wedding RSVP) and implemented it on the web. She complains that the textboxes and radio buttons disappear on IE6. Can anyone confirm this for me? http://toolboxstudio.co.za/phoebe/ Please don't submit the RSVP, as I don't want to spam my client, but please just tell me if you...

flash video not working in aspx files

i have a .swf and .flv file and they work perfectly when i open them by double clicking on the swf file. But when i call it inan aspx page, it doesnt open. i checked IIS7 and in MIME types i have .flv and video/x-flv inherited. why wont it work? ...

load a content as class in Actionscript 3.0?

I found it is very useful to load a swf into AS as class (what Embed metadata did). However, I am in trouble to do exact the same thing to content that is not load in compile-time (Loader and URLRequest). How can I do that? ...