ActionScript 1/2 :: External Class Files Not Updating When "Delete ASO Files" Executed?
May 3, 2009
I've got an external .as file in the same folder as my flash file. In the process of writing the code, whenever I make a change and then test the movie, the flash movie is obviously still looking at the OLD information. I tried using the "Delete ASO Files" on the menu, to no avail.I can' find these ASO files anywhere on mycomputer.Aha! I tried something else. I quit flash,restarted and ran the same script with no changes. It returned the data correctly, but then gave me this unpleasant message:256 levels of recursion were exceeded in one action list.This is probably an infinite loop.Further execution of actions has been disabled in this movie.There are no loops of any kind in the code, which is below.
//This is the Person.as file:
class Person { public var HomName:String = "unknown"; public var HomEmail:String = "unknown"; public var HomPhone:String = "unknown"; public var HomSaveFreq:Number = 0;
[code]......
View 27 Replies
Similar Posts:
Jul 17, 2008
I have a .fla file which is pulling in a document class. Within that main class document many other classes are being called like the code attached. my question is when I make a change to a .as file such as XaMLDiplomat.as, and then republish the .fla, should those changes update to the .swf? I am not seeing the changes I made to the external .as file, so that is the reason for this post.
View 4 Replies
Feb 20, 2012
I have some files in my src directory, some are .class files (Java class files) and some are .properties files, when I create the Adobe air native installer these files are not included. Why is that? How can I work around that?
Also it excludes .mxml files, but that's good. I'm sure that's related, how to change what it includes or excludes?
View 1 Replies
Jul 19, 2011
I'm working on making a pretty chunky game engine for games I plan on making, but I was wondering if you make external AS files unopenable such as .lib files, so that if I give it to a friend that wants to use it, he/she cannot change my code. Is there anyway to make external AS files unopenable? Also, obfuscation isn't an option for this problem as it only stops the people who hack the finished product, not stopping people who have access to the actual files.
View 2 Replies
Jun 16, 2009
I use flash CS3 on Mac OSX and I'm creating several AS2 projects with .as class files. Everything code-wise is working perfectly. The problem comes when I make a change to a particular class file, save the file, and the republish the fla. The changes are almost never reflected in the published swf. The only thing I've discovered to work around this problem and actually get my changes published is to publish to a different flash player version, and then republish back to the version I really want. Somehow that seems to actually get flash to load the most recent version.
It seems like this might be some sort of flash caching problem, but I have no idea how to tell it to always check for the newest version of the file.
View 2 Replies
Oct 14, 2009
Just wondering what is the standard in the Industry; does the client get the ActionScript Classes and the .fla file?
View 2 Replies
Oct 5, 2011
In the Flash app I'm building, I have a "main" SWF that will load a variety of "child" SWFs.
All of the AS3 code for both the main SWF and child SWFs is contained in external .as class files.
In other words, each movie has it's own document class .as file.
There are also a number of .as class files for all of the common elements (e..g, UI buttons and controls).
So - for example - both my main SWF and all child SWFs use the "MyCommandButton" class; the code for this class is in MyCommandButton.as, which all SWFs reference (import).
Here's what I don't understand.
(Let's say that the code in MyCommandButton.as draws buttons that are red.)
First, I compile ALL of the child SWFs.
Next, I change MyCommandButton.as, so that the buttons it draws are blue, instead of red.
Then, I compile the main SWF.
When I run the app (main.swf), I would expect all of the buttons in the main SWF to be blue (since that's what MyCommandButton.as specified when main.swf was compiled), and all of the buttons in the child SWFs will be red (since that's what MyCommandButton.as specified when they were compiled.)
Instead, ALL of the buttons are blue, which means the change I made to MyCommandButton.as affected all of the child SWFs, even though I didn't recompile them.
View 1 Replies
Jul 30, 2009
The problem is class files being cached in external swfs when they are loaded into another swf. (as2-cs3). In a nutshell, we've got a clip on the stage that is linked to a class. You can make changes to the class, pub the swf and everything works fine. When we then load that swf into our application swf, the changes are all lost, and it "reverts back" to a previous version of the class.
View 9 Replies
Jul 12, 2007
Im working on a Flash that loads all its scripts and stuff from external .as files. Basically making the .swf a client of sorts to display and execute, while the .as files on server contain all the functions and basically the game itself. I want to make sure that when someone views the .swf, the .as files and all thier code are loaded again and again so I can update the game without having to open the original .fla at all. I really just want to have to write in the .as files to update, since its just basically a text file, I can open it anywhere with notepad and add code.
I just cant figure out how to do this. #include wont work because all the code is placed in the .swf during compilation. Thus, I'd have to open the .fla. #include is the only way I can think of to load code into Flash. Does anyone else know another way?
View 1 Replies
Sep 9, 2010
Is there a way to share common .as files with multiple swfs?
View 5 Replies
Jun 11, 2010
i've only ever created external .as files that extended a class such as sprite. now i just want to create one that doesn't extend anything and call it from a frame script.
[Code]...
View 1 Replies
Dec 19, 2009
I'm working through actionscript 2.0 tutorials using Flash 8, and I'm getting apparent false syntax alerts from script files containing classes with static properties. The .as files seem to work okay when I run them with corresponding .fla files with the Test Movie option, and the code is copied straight from a Macromedia tutorial pdf manual. [code]...
View 0 Replies
May 28, 2010
I'll start off by saying that I'm new to Flash. I'm using the CS5 Web Premium suite and want to publish an updated version of a Flash movie that contains PhotoShop files which I've recently modified. Unfortunately, when I open the .FLA file in Flash Professional CS5, it's not apparent to me how to do this. I don't see the PhotoShop files anywhere in the Library pane and thus can't figure out a way to update the Flash movie to recognize my newly modified .PSD files.
View 1 Replies
Dec 18, 2008
This question is more about updating swf and xml files on the browser. I have a gallery site that has muliple swf files loaded on the master swf on button click. These swf files loads an xml file. My problem is that whenever I update the xml or swf file, the browser still has the flash cache stored so I have to manually refresh the file to see the changes. As in, I can't just refresh the index.html. I have to refresh the
/xml/filename.xml or /flash/filename.swf
Which works but then when other people view the site again, they won't know that they have to refresh the files because they don't know the file name or path. Know what I mean? I researched the net and found solutions like using index.php instead of html or using a random variable string like index.php?mod="34342234" but that only seems to update the master swf.
View 1 Replies
Jun 18, 2010
On my first FLASH CS4 site I have changed several files from PS and re-imported Imported them into stage several times. Now the library contains lots of folders, i.e. Web Site.psd Assets 1 / Web Site.psd Assets 2 / Web Site.psd Assets 3 etc etc.. They obviously contain the same asset names, each with a corrected content.How can I determine which files are the ones used and delete all the others from the library?
View 4 Replies
Nov 25, 2009
I'm using FDT 3 and Ant to make a jsfl file that is then executed to compile fla's and I'm trying to figure out how to get the jsfl to remove the aso files. I've tried storing the path to the aso files in a property in Ant the is then added to the jsfl when its created and it works to remove the aso file but it means that everyone must edit that property to fit their machine, we are using Macs and Windows.
My question is, is there a way to have jsfl find and delete the aso files?
View 2 Replies
Mar 13, 2012
Our application is a ASP.NET + Flex running on IIS 6.0 server. On the client machines we run IE8 for display. IE creates temp files that seems to be taking up disk space. The Temporary Internet Folder size continues to grow seems to exceed the limit of 8MB - automatic recycle. When and under what conditions does IE delete files from the temporary folders?
View 1 Replies
May 3, 2009
I've got an external .as file in the same folder as my flash file. I'm in the process of writing the code.But whenever I make a change and then test the movie, the flash movie is obviously still looking at the OLD information. I tried using the "Delete ASO Files on the menu, to no avail.I can' find these ASO files anywhere on my computer. ARE they invisible?
I tried something else. I quit flash,restared and ran the same script with no changes. It returned the data correctly, but then gave me this weird message:256 levels of recursion were exceeded in one action list.This is probably an infinite loop.Further execution of actions has been disabled in this movie.There are no loops of any kind in the code, which is below:
[Code]...
View 4 Replies
Apr 12, 2011
I am using many external swf file in my flex application,but when i use the files which are in same name its not getting refreshing properly, so i need to delete my temp file without refreshing the application.
View 0 Replies
Jul 26, 2010
I am trying to delete some files from a flash template I purchased, when I open the .fla file in flash and go into the library, I would like to delete the contact box and the mp3 player, when I locate those files in the library and delete the files, the website no longer opens up (it will not work when I delete those files from the library)?
View 6 Replies
May 28, 2007
Structure: There is 1 main file that loads external SWF files depending on what is clicked on.One of the external SWF files loads its text from external text files. This works fine when viewing the SWF applet on its own. But when viewing as a whole site, the text doesnt appear. Very annoying.I made that particular SWF on my mums computer running Flash MX 2004The flash file itself uses the Scrollbar component from MX.Could someone tell me why the text doesnt load in this scenario? It runs fine on its own, just not as an external SWF.
View 4 Replies
Feb 23, 2011
I spent almost a week trying to figure out how to unload a currently loaded swf using its button and loading a new swf... I have three files, a main.fla, file1.fla and file2.fla. In my main.fla, I have a code which loads the other two files. If i will click the "unload" button in the file1.swf, I would like the main.fla to unload the file1.swf and load the other file, file2.swf. Here is the code to load the file1.swf:
[Code]....
View 1 Replies
Apr 7, 2009
I have created a flash file that allows you to click on a thumbnail image and larger image appears ontop of a tshirt. The same way as a gallery would work. The images and thumbnails are pulled in through xml. However I have a problem, I need the images that appear on the tshirts to be .png files or gif files as the tshirt colour can be changed. At the moment my flash file will only display jpegs! I dont knwo why. The jpegs leave me with a white background, so I need the transparency of a png/gif. My actionscript is:
[Code]...
View 2 Replies
Feb 3, 2009
My users upload a certain kind of text file that sometimeshas references to images stored locally on their hard drive. I needto check this file either on the server or within a flash app tosee if it has these references and then grab those images in aflash app to upload to my server.So I can use FileReference easily enough to have users uploadlocal images. But FileReference requires users to select their files with a dialog box. I can't have that. Myusers wouldn't know where to look and there are typically way toomany files, sometimes with the same name but in differentdirectories.
I can also just use URLLoader with a local URL, I guess I canprobably just use Loader too? That works great. The problem here isI can't communicate with both the server and the local filesystemin the same flash application due to Flash's security sandboxrestrictions. So I can get out of those security restrictions byplacing or editing a trust file in designated locations on variousOSes. I then need to install this trust file which is more invasiveand confusing to users then I want to be...Java's method of accessing local files from a web applet bysimply signing the applet with a certificate and having a dialogbox popup where the users grants access is ideal. Is there anything
View 4 Replies
Sep 8, 2009
iam streaming my web cam to FMS .... i have got a latency of 1 -2 second,,,,,, What should i do to reduce the latency,,,,,, is ter any change i can make in FMS files(xml files) in order to reduce the latency......
View 6 Replies
Jul 18, 2006
I was messing around with some old examples, and I ran into an unfinished example where several 30k-100k XML files are loaded and stored as a string into an Array. The code looks basically like:[code]Basically, when I trace the 'this', the order of the files that are loaded is off. Out of about 10 tries, about 3 times the order is perfect. The remaining 7 times, the order is a bit off. Does anybody have a suggestion on how to ensure the files are loaded prior to the next file being loaded? I tried placing a while loop that basically delays the clock for a few milliseconds, and that didn't work either. Besides, that is not really a good solution to arbitrarily waste clock cycles.
View 6 Replies
Mar 20, 2010
I installed Flash CS4 Professional trial version for school use. It wouldn't install successfully. I deleted the font files the troubleshooting guide said to, tried again, but gave up. (I'm afraid to run regedit and mess up everything else I have loaded.) (I previously had the Fireworks CS4 trial version loaded, then uninstalled it.) My problem is this- I have it running, but it saves files and then they can't be opened, even if I use the save function often- it's worse when I create the file, test the movie and then save.If I try to open it again, it says "cannot open file." Once it opened a copy I had saved, and it appeared blank, even though it was 544 kb file size. I only need it for a few more days, one more assignment and I'm afraid my previous files are corrupt. I have Windows Vista Home Edition.
View 4 Replies
Jul 13, 2005
i have attached a flash file.the problems are
1) i have palced 2 flash file on my web page.if i stop the sound on this file then the sound on another flash movie placed on my web page also stops.i want both the files to be independent to each other and controlled separately
2)if i click on play it shows loading.even after it loads the file it doesnt change itz status. if i click again on play then itz status changes to play.my codes for flash.....
soundUrl = "test.mp3";
// create sound object, assign properties and events
function createSoundObject(){[code].....
View 1 Replies
Nov 29, 2007
my question is to diplay random files , and i have given the code as
[Code]....
one more question is "where i need to store all these movie files. either in samefolder where the flash file is placed. or make it as a seperate folder and or in the flash file library". and one more thing is "how can i place these 20 files in a order like declaring the dimensions on the screen. do i need to put in a CSS.
View 1 Replies
Apr 24, 2010
Lets say I have subgallery.swf file that loads jpeg images. And I have gallery.swf file that loads subgallery.swf.The jpeg images and both swf files are in the same folder.When I test gallery.swf it loads subgallery.swf but subgallery.swf doesn't load images. When testing subgallery.swf alone, it loads jpeg files.Is there any limitation or setting preventing external swfs loading other content?
View 2 Replies