swf

how to debug swf browser crashes

My swf is occasionally crashing the browser (or just crashing the plugin as chrome tells me). How do I diagnose the bug? I am developing for flash player 9 using flex. Things I have tried: Turned on log files so I can see trace("...") output. However, my log files, and my swf, are ending at inconsistent termination points. Insta...

Flash: What is the SWX data format?

What is this SWX data format that I keep hearing about? The Wikipedia article says: "Data is stored as SWF bytecode, that is interpreted by Adobe Flash Player." Their official site says: "SWX is the native data format for the Flash Platform.", and there are many examples of sites which allow users to modify/update data. Does this mea...

Are SWX Data files modifiable by Client code?

Data is stored in SWX files, that is read natively by Flash Player as "objects". Can the client request the server to update/modify SWX files, much like a MySQL database? How? SWX-PHP? ...

Can any Flash compiler put scripts on multiple frames?

Can any Flash compiler put specific scripts on specific frames of the Flash movie SWF? Like you can do from within the Flash IDE, just place a script on the required frame using the Timeline panel, and the script gets compiled to that frame of the Flash movie SWF. Eg. script on frame 1 : trace("Reached frame 1"); Eg. script on frame...

FireFox Flex Layout/Rendering Issue

The Flex Application is set to 900 pixels width. The object tag is set to 900 pixels width. Firefox is rendering the object at 110% the size requested. So there is a blank vertical column on the right size of the object. (It does this if I set fixed height also) If I set the width in the object tag to 810, then they match up, but thats...

In Flex, what's the best way to remove a swf that was authored in Flash CS3?

So, I have an application where I'll be loading any number of swfs into a SWFLoader and removing them at runtime. The issue is - they are all timeline based movies authored in Flash CS3. I have very little control over what is in the movie other than the authors are not able to program any interactivity (i.e. no event listeners) but I w...

Flash Site Architecture - one swf vs many?

I'm about to start building a site entirely in flash (per the client's request), using AS3, and was wondering about best practices for doing so in terms of application architecture. The site isn't too large--think homepage, persistent nav, 8 subsections or so, each with their own content but similar design between subsections. In the pas...

Load and play embedded SWF file in Flex / Actionscript

Hello friends! I'm trying to create / use a pre-loader in my flex application. The preloader is a SWF file which has 100 frames (1 for every percent of the loader progress). Basically I am trying to Embed this SWF file in my application, display it on screen and change the frame number being displayed as the progress completes. The c...

Flash play() processed immediately?

Does the play() function in Flash: move the playhead of the MovieClip to the next frame -- as soon as play() is called change the MovieClip's state to "playing" -- actually move MovieClip to next frame, when movie moves to next frame ...

flex preloader not working with # in the url (deep linking)

I can't get flash preloaders to work when there is a a # in the url of my page (even without any deep linking libraries or logic). I am using flex 3.3. Flash plugins 9 and 10, all browsers. There is this bug regarding # in the url preventing preloaders from working: http://bugs.adobe.com/jira/browse/SDK-14162 However, somehow, someon...

Flash Movie Not Loaded in IE6

I have a .swf file that I try to browse to and it loads fine in Firefox, but in IE6 it doesn't load. When right-clicking it says "movie not loaded". Any suggestions? ...

SWF object not playing my XML Playlist.

Hello, I've tried to include youtubetune player to social network, but for somereason it wont play the xml files it should play. I got around issue that the tracks dint even appear by uploading the neccessary swf files and swfobject.js file to my server. Now the tracks appears to the player, but the player wont play them. You can see my...

Why SWFUpload ASP.Net samples not working?

http://swfupload.org/node/7/release Why these samples not working, anyone faced the same thing and have a fast solution to make it work? The solution is compiling and the default page is opening normal in FireFox but when i click on the button nothing happen And in IE the button not appearing at all ...

Flash app depends on Flex. Are there any SWF bytecode size optimizers?

Hello world application that uses Flex, compiled with optimize=true has size 178K. How to reduce application size? We do not like to use RSL, we don't like to avoid Flex. Largest part of resulting SWF is unused bytecode. Are there any tools to optimize bytecode — drop unused methods, classes, give methods shorter names and so on? I kn...

SWF link on CD

I have a swf based website. In the main swf I have links to other swf files. If I want this to run from a cd how do link to the files in the root directory of various CD drives. Insetead on a URL my link will have to point to the root directory of the CD. How do I do this? ...

Does a 'model' have to be declared as a 'var' in order to bind to it in Spring Webflow 2 ?

Hello, I'm currently using Spring Webflow 2, and I've been writing a unit test for a flow before I actually write all the JSPs for the flow. For some reason, my requestParameters aren't being bound to my model object. I'm creating the model object right before I enter the view state that binds to it (rather than declaring it as a 'var...

Problem with SWFObject in IE

I'm having a problem with SWFObject in IE. The swf-file shows, but everything below the swf doesn't. Here's the URL: http://timkjaerlange.com/wip/co2penhagen/ Any ideas to what could be wrong? ...

sIFR swf implementation problems

Hi I have tried a few methods of sIFR implementations, but I cant get it to work 100%. I would really appreciate any help or tips on this issue. I have mainly tried to use sIFR 3 (r436) and I get it to work with the rockwell.swf that is supplied in the example, but I can't get it to work with any other .swf-file The font I want to us...

Is a SWF whose src uses HTTPS secure?

Here is a scenario: I am embedding form.swf in http://somesite.com/page.html. The SWF is loaded from https://mysite.com/form.swf and submits to https://mysite.com/secureform.php. So, is the transmission to the server secure? ...

Waiting while SWFLoader loads a swf file

Hi there, Currently I'm working on an application (Flex) which heavily uses external SWFs. I'd like to create a static method which takes a filename as an argument and returns SWF wrapped in some other class. public static function getSWFWrapperFromFile(path:string):SWFWrapper { var loader:SWFLoader = new SWFLoader(); loader.ad...