Flash - Handling External Functions Files In CS5?

Mar 14, 2011

I was told recently by a Flash developer that I respect that using

include "functions_file.as";

is not the appropriate way to import a list of functions into an AS3, Flash CS5 document.We're not talking about objects and packages, just a list of functions.

View 2 Replies


Similar Posts:


ActionScript 3.0 :: Work With Public Functions And External AS Files?

Feb 26, 2012

so I've worked with AS for a while now but I've always managed to avoid using external AS files so my knowledge of how to work with them is lacking. Right now I'm trying to work with the sample files from the vimeo API found a the bottom of the page here: It all works fine but I'm confused about how to call functions in these external files.I want to dynamically change the video being played from the fla file and have how to call the function VimeoPlayer from the fla file

ActionScript Code:
VimeoPlayer('XXXX', 35697686, 640, 360);
ActionScript Code:

[code].....

View 9 Replies

ActionScript 3.0 :: Question On Event Handling + Functions?

Jul 25, 2011

I'm trying to write a function, that would load XML file when I click an object. Now, I want to have one function for all the objects, and just transfer the proper name of XML file each time I click a different object.So, I think it should look like:
 
Object1.addEventListener(MouseEvent.CLICK, LoadXML("XML1.xml"));
Object2.addEventListener(MouseEvent.CLICK, LoadXML("XML2.xml"));

I'm not sure about "LoadXML("Xml1.xml") though.So I click Object1 - LoadXML with parameter "XML1.xml" is being called.Now, the LoadXML function would look like:

function LoadXML(evt:MouseEvent, urlXML:String):void{
some code
}
 
The problem is, that LoadXML has two parameters - how do I call it?I wrote in the beginning var evt:MouseEvent and just call LoadXML as LoadXML(evt, "XML1.xml")but then I get error message:"Implicit coercion of a value of type void to an unrelated type Function"

View 13 Replies

ActionScript 2.0 :: Creating A High Score Table In Flash Using External File Handling

Feb 8, 2012

Creating a high score table in flash, using external file handling, can be achieved using server-side scripts, such as PHP. However, as this is not allowed for my game (school project), I need a way to write a few variables directly to a text file and read it back again. Is this possible? I am using AS 2.0. Any other ways in which a high score table, which is portable and can be saved and updated

View 3 Replies

Flash :: Access Functions From Other As Files?

Dec 21, 2011

I'm building a small game in AS3, and I have a lot of helper functions, so I've created Helper.as, just to clean it up.[code]...

View 1 Replies

ActionScript 3.0 :: Handling Large Files/data Within An AIR Application

Sep 8, 2009

I've run into some problems trying to handle large text files in AIR (300+ MB in size). I can open a filestream and read the file just fine and even store it into a string variable. the problem occurs when i try to manipulate this data. Im trying to get each line as an element in an array so i can manipulate this data.Here's what i've tried:1. read the file into a string variable and perform a split looking for the newline character ). this freezes the program2. i've tried reading the file in one byte at a time and putting each line into an array AS it is being read from the filestream. This not only takes long but eventually freezes.

3. i've tried splitting the final string variable which contains the entire text file into chunks to process it separately.4. i've even tried putting the file contents into a sqlite database, but this also freezes.At this point, im not sure what my options are. Is AIR even equipped to manipulate data at this level? I could use a point in the right direction

View 2 Replies

ActionScript 2.0 :: Handling External Images In Memory

Nov 7, 2006

I'm using the Flash 9 AS3 Public Alpha IDE. I'm loading a suite of 256 external png images using the Loader class. There are multiple "suites" of these images, but once the .swf starts and a couple of settings are loaded, only one of the suites actually needs to be loaded for that session. Only a small handful of these images are displayed at a time, but this handful changed rapidly. Images are quickly loaded, animated, unloaded, etc. Currently I'm using the Loader class to load the images whenever I need them and then I remove them from memory when I'm done. Because they are used so often, and without much forewarning before they become needed, this solution is no longer effective.

If I place all of these images in the Library and setup their linkage properties individually, everything works fast and efficient loading them with getDefinitionByName, but this is not practical to have to recompile my .swf file everytime the images change (not to mention setting up the linkage for 256 images is very tedious). The other complication is that multiple classes that are not directly connected with each other need access to these images, which means the images need to have some sort of global access (like they with getDefinitionByName). most effecient way to load all 256 images into memory and then give them global access to be *quickly* reproduced, duplicated, multiplied and animated by any class?

View 1 Replies

Flash :: Loading / Unloading External SWF Using Buttons From Loaded External Files

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

ActionScript 2.0 :: Handling Exceptions When External Data Doesn't Load

Sep 23, 2010

I'm loading external data from a txt file into a MovieClip. It contains data that is crucial to the presentation viewing. It is necessary to load, not right away but at some point (the sooner the better). When the txt is on the same server it works instantly, but I'm loading data from another server.

Two problems: the onLoad code is stuck if the file doesn't load (connection problem, server down?) and in offline mode what happens if the data is purged out of browsers cache (history problem)?

How can i handle these exceptions?

1. Some code that uses a "timer" to periodically try to load the data again if the connection is slow and the txt doesn't loads the first time?

2. When it doesn't load at all, and the onLoad fails, how can I simulate notOnLoad - exception for data download fail? And retry the dataLoad?

I've already made cross-server data loading possible using crossdomain.xml policy.

The site is still in development. This problem occurred when the server which contains the data.txt was down due to maintenance, and when one of the test-visitors was downloading so much in the background that his connection didn't had enough bandwidth to load data correctly (browser thought he had connection problems).

View 3 Replies

ActionScript 3.0 :: Flash Working With Functions In External As File?

Oct 22, 2010

Im trying to understand alittle more about using external files.

In my flash actionscript window i basicly want to access a function that i wish to put in an external .as file ... but i just cant seem to get it..

like:

Code:
myFunction();
in external file

[Code].....

View 4 Replies

ActionScript 3.0 :: Protect Files (make External Then Unopenable Such As .lib Files)

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

ActionScript 3.0 :: Calling Functions Between Different Class Files?

Mar 13, 2010

I'm new to writing several different class files.. and trying to make a set of boxes that expand/collapse by mouse click and timer..
 
I have 4 class files, Box, BoxGroup, BoxTimer, and Main.
 
I can call the functions in Box class from BoxGroup class, but not the functions in the BoxTimer class. it keeps throwing this error.  I don't understand why since i'm using the same method between the other 2 class files...
 
ReferenceError: Error #1069: Property timer_start not found on
CollapsingBox and there is no default value.    at
CollapsingBoxGroup/on_click()

[Code].....

View 4 Replies

Actionscript 3.0 :: Calling Functions Between Different Class Files.

Mar 14, 2010

I'm new to writing several different class files.. and trying to make a set of boxes that expand/collapse by mouse click and timer.I have 4 class files, Box, BoxGroup, BoxTimer, and Main.I can call the functions in Box class from BoxGroup class, but not the functions in the BoxTimer class. it keeps throwing this error. I don't understand why since i'm using the same method between the other 2 class files..ReferenceError: Error #1069: Property timer_start not found on CollapsingBox and there is no default value.at CollapsingBoxGroup/on_click()

View 11 Replies

ActionScript 3.0 :: Class Files And Accessing Functions In Them?

Dec 14, 2004

Short description of my project:I'm making a "flash-car-damage-registration-program" where a user can click on a part of a car, make two choices (from two comboboxes) that describes the damage, and then save it in a datagrid withing flash.I have split up the code in different class files:I have a damage.as class file that describes the damage and its properties.I have a carPart.as class file that extends the Movieclip class. This sets all the propertiesof each carpart and where the roll-over/out eventlisteners are, pluss som escriptive text to each carpart. This works the way I want it to. This is just to quickly give you an idea of what I'm working on.So to the real question or problem: I have a LoadMyXmlData.as class file where I load some xml data, this works fine. A function in this class takes a combobox and a xmllist as parameters.

I want to populate the mentioned comboboxes from the xml data. Both comboboxes are on the stage within another movieclip, but I can seem to access them. (yes, they have instancenames etc) I get error 1120: 'Access of undefined property'. I have tried ways like: containingMc.comboboxMc' and so forth but no luck. I have been searching the web for days for a solution to my problem, but nothing so far.

View 1 Replies

ActionScript 2.0 :: Use Some Commonly Used Functions Over Multiple SWF Files?

Feb 11, 2007

In C++/Java you can do this to import a library of functions to your current file.

Code:
#include <someFuncitons.h>

Is there a similar command in Actionscript? I want to use some commonly used functions over multiple SWF files and don't want to copy and paste all of them into each file.

View 3 Replies

ActionScript 3.0 :: Placing Functions In Separate AS Files?

Jul 30, 2009

This is doable in almost every language ive coded in. I would like to place a function in a separate .as file, as to not clutter up my main .as file. Ive already got about 15 classes in separate files and I know there must be some way to do this and its got to be pretty obvious.

View 7 Replies

Flash :: New To - Method Of Loading External Files?

Sep 6, 2011

i have been working with a few basic flash presentation to learn the ropes. However, I am working on a flash file which, when compiled, pulls in flash content from elsewhere in the Parent folder. I have read through the FAQ and cannot find the answer, as there doesn't seem to be any Actionscript which handles the importing of these external files.

Are there other methods that I am unaware of? I need to edit these other files, however I find it more beneficial to first understand how the Flash file is compiled before editing.

View 2 Replies

Flash :: Slowly Loading External Files?

Jan 3, 2011

I've been using flash functionality in order to fill in dynamic text variable with an external data. The script works fine, except that now runs very slow - around 30 seconds or so.

myData = new LoadVars();
System.useCodepage = true;
myData.load("get_content.php?id="+_root.id); //get external content[code].............

View 1 Replies

ActionScript 2.0 :: Loading Bar For External Flash Files

Mar 14, 2003

how can i make a flash movie, have a loading bar for a movie being loaded into it, but also for the content in the main movie.

and have both the percentages in the same loading bar.

i.e.

main = 25%
loadee = 75%
-----------------------
total = 50%

i dont want a loading bar in each of the movies being loaded in?

something like _level1._getBytesLoaded() or something?

i think i tried it before but since _level1 hadnt even began to load it disregarded it and assumed it was done..

View 2 Replies

ActionScript 2.0 :: Loading External Files Into Flash 8?

Apr 9, 2006

This is the code i have been using

loadText.load("textfile");
//creating the loadVarsText function
loadText.onLoad = function() {
dynamictextboxname.text = this.the=whatever text in notpad;
};

how to load my external text in, i have it all set up. Its all being saved into the same folders etc. But still nothing.

View 1 Replies

ActionScript 3.0 :: Build Flash With All External Files

Feb 4, 2009

Anyone know how to set up a Flash AS structure that doesn't feature any code in the actual compiler FLA and instead places all code in external .AS files? I believe this begins by setting up a Manager class and then setting that as your FLA's Document Class, yes? Everything else runs through the Manager?

View 13 Replies

IDE :: Loading Png Files From External Folder In Flash?

Jun 1, 2009

I recently got the following code from one of your tutorials and am wondering why it is that when I try to change the .jpg images to .png images, the images no longer appear in the swf file. Does flash no allow .png files to be loaded.The reason that I need the files to be png is because the have to have a transparent backgroung.[code].....

View 9 Replies

IDE :: Flash CS3 Not Publishing Changes To External .as Class Files

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

IDE :: Loading Random External Flash Files?

Sep 17, 2009

I have 5 external flash files that i am trying to load randomly in from a seperate flash files (main.swf is trying to randomly load: Flash1.swf, flash2.swf, flash3.swf, flash4.swf, flash 5.swf)

this is what i have so far:

var myLoader:Loader = new Loader();
addChild(myLoader);
var url:URLRequest = new URLRequest("flash1.swf");
myLoader.load(url);

it works in loading just one flash movie but im looking to have to randomly load from the five .swf's

View 1 Replies

ActionScript 3.0 :: Play External Mov Files In Flash?

Apr 27, 2010

Am I only limited in using .flvs and swfs?

View 1 Replies

ActionScript 2.0 :: Using External Text Files In A Flash

Mar 16, 2002

I am fairly new to Flash 5, I have been using Swish for about 1.5 years. I want to advance to a new level though. I have asked this question at others boards, and haven't yet got a detailed enough answer for me to understand it and work it. Either that, or I am making just a tiny error. If anyone could explain in detail how to show a .txt file inside a flash OR give me a link to a detailed tutorial then that would be great.

View 5 Replies

Play External Video Files In Flash Website?

Sep 4, 2009

I am a complete novice when it comes to flash and web design in general. I have purchased a flash template [URL] which I have been able to customise to my liking for a small production company. I am now completely stuck when it comes to integrating videos within the site.

I understand that I need to have an Xml playlist and some action script that references the videos to the player, but I have no clue on what to do.

I am looking to have a video begin as soon as the site loads and then have the buttons on the orange bar allow the user to navigate between other flv files. I would possibly be interested in including firther links on the video samples page.

View 1 Replies

ActionScript 3.0 :: Loading Random External Flash Files?

Sep 17, 2009

I have 5 external flash files that i am trying to load randomly in from a seperate flash files (main.swf is trying to randomly load: Flash1.swf, flash2.swf, flash3.swf, flash4.swf, flash 5.swf) this is what i have so far:

var myLoader:Loader = new Loader();
addChild(myLoader);
var url:URLRequest = new URLRequest("flash1.swf");
myLoader.load(url);

it works in loading just one flash movie but im looking to have to randomly load from the five .swf's

View 2 Replies

ActionScript 2.0 :: Flash Xml Menu That Loads External Swf Files?

Feb 23, 2010

have this flash xml menu that loads external swf files like this:

Code:
<item title="ABOUT"content_path="http://mysite.com/folder1/folder2/folder3/about.swf"target=""mo

[code]......

View 8 Replies

Professional :: Pulling In External Media Files Using Flash?

Feb 26, 2010

I'm currently looking to use Flash to pull in two separate media files and to play them at the same time. From what I know about Flash, it's certainly possible to play two files, but is it possible to play files without embedding them in the Flash file?

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved