ActionScript 3.0 :: Create External Files From A SWF/exe/app File Created In Flash?

May 16, 2011

I'm currently trying to find out how to create external files from a SWF/exe/app file created in Flash. Essentially I'm building a program to create templates for levels in a game. The SWF will be run locally (e.g. not online) and will allow the user to add/remove objects to a level of their design. They then need to be able to save the level template (ideally I need to be able to save as a JSON* file, but I'm sure I could get away with just a simple txt file) somewhere on their computer. These templates will them be imported by the game itself (not written in Flash, hence why I need to save the data as a json or txt file), which will then re-create the levels from the data contained in the save file.
 
I had assumed this would be something that was really simple to do, but I cannot seem to find any tutorials or information on how to create external files. I can find plenty on reading from existing external files, but nothing about actually writing a new file entirely. I have read a few people complaining that non-local Flash SWFs cannot access the user's hard drive for security reasons, but cannot find any information on local SWFs.
 
If anyone could tell me even roughly what I'm looking for, it would be greatly appreciated. I'm a bit stuck just now haha *I have downloaded the corelib files which allow me to work with JSON files

View 4 Replies


Similar Posts:


Actionscript 3 :: Created External As Files That Extended A Class Such As Sprite?

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

ActionScript 2.0 :: Create A Button In Flash 8 To Load External Mp3 Files

Aug 31, 2009

I have created a button in flash 8 to act as a play button for mp3 files on a website in drupal. I however am having trouble, since am new to ActionScript, to make the button load an external mp3 file without hardcoding it in the flash.

View 0 Replies

ActionScript 2.0 :: External Text Files Wont Load Into External Swf File?

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

Professional :: Created Plain Text Field And Managed To Load It From External File?

Feb 10, 2011

i have created plain text field and managed to load it from external file using the AS3 code below. Now i want to load multiple text field but this time in a button, how can i do that?

this is my button code: proposal_btn
var textLoader:URLLoader = new URLLoader();
textLoader.addEventListener(Event.COMPLETE, textLoaded);

[code].....

View 2 Replies

ActionScript 2.0 :: Create A Netstream Connection, To Load External FLV-files

Jan 5, 2011

I'm using this code to create a netstream connection, to load my external FLV-files

ActionScript Code:
var nc:NetConnection = new NetConnection;
nc.connect(null);
var ns:NetStream = new NetStream(nc);

later in my script i use this code to attach a external video in my netstream and start to play it

ActionScript Code:
_root.contentFoto.contentFoto.holder.attachVideo(ns);
ns.play("vids/" + dataList[activeSub].dataInfo[item].pic);

How do I stop that clip and unload the movie of my netstream

View 1 Replies

Actionscript 2.0 :: Create A Basic Flash Script To Load An External Swf File Using MovieClipLoader Class?

Mar 17, 2009

I am trying to create a basic flash script to load an external swf file using MovieClipLoader class. Here's my code:

var myMCL:MovieClipLoader = new MovieClipLoader();
var myListener:Object = new Object();
myMCL.addListener(myListener);
myMCL.loadClip("splash.swf",5);

I simply copied it from a tutorial. Unfortunately it throws an error message as follows:

1046: Type was not found or was not a compile-time constant: MovieClipLoader
1180: Call to a possibly undefined method.

PS: I have CS3 professional in my machine but I am following Flash 8 book. But my CS3 application supports AS1, 2 and 3.

View 4 Replies

Flex :: Alternatives To Create Swf Files (which Has External Content Loaded Into Them) Dynamically?

Jul 2, 2009

I'm about to start a project where there will be a Flash application where the visitor customizes a profile with externally loaded images and texts. Then the visitor needs to be able to download that profile as a dynamically created swf with all that external content baked into the swf.

View 2 Replies

Android :: Created An App With Embedded Flash/.swf Files Such As Animations?

Jan 29, 2011

I understand that flash is quite new to android. Has anyone actually used flash in an android app? How did you do it and what do you recommend. I'm trying to embed flash animation into an app.

View 1 Replies

Actionscript :: Flash Builder And Swc - Add Swc Files After The Project Is Created?

Dec 9, 2011

I just wanted to ask:

1) Is there a way to add swc files after the project is created

2) And is there a way to link some of assets in those swc to classes (for example link a ball asset to a class the implements its functionality. You can do that directly from flash pro CS5.5, but is there a way to do it in flash builder)

View 2 Replies

ActionScript 2.0 :: Create Animation And Loading External Jpg Files Using LoadMovie() - It Is Not Work In Firefox2?

Jan 8, 2007

i created a very simple flash animation and loading external jpg files using loadMovie(). I had test it in IE7 and its works fine but not in Firefox2, it cannot display the jpgs. What is the problem?

View 1 Replies

Flash :: SWC Files Be Created In DEBUG Version By Using Conditional Compilation Constants?

Nov 8, 2011

Is there a way to compile SWC files in different targets (Debug vs. Release) similarly how you can compile a SWF file with the AS3 Conditional Compiler constants?

This link shows how SWF files can be compiled with predefined compiler constants:[URL]..

But I need to know how to achieve this with SWC files instead.

Note: I'm using FlashDevelop (Windows 7) to create the SWC (if that's any help to refine the answer).

View 1 Replies

Flash 9 :: Detecting Modified/created Files In Windows (specifically Due To CS4 Installer)?

Nov 15, 2008

I am wanting to install flash CS4, but I want to know exactly which files and registry keys it creates and changes. Spybot informs me of all registry changes, but that is it.Is there any antivirus software or something that will tell exactly which files get changed, created, or deleted during a set period of time or by a specific program? Otherwise I could just search for all files that have been created or modified within the last 45 minutes,

View 1 Replies

ActionScript 3.0 :: Text Is Loaded From External Text Files And Styled With An External Css File?

Jun 7, 2009

I've managed to piece together a flash website with my limited as3 knowledge. The text is loaded from external text files and styled with an external css file.

It's working perfectly in Firefox and Explorer but it only works SOME of the time in Safari (on my mac).It's hit and miss. Sometimes it styles the text sometimes it doesn't.

[Code]...

View 1 Replies

ActionScript 2.0 :: Set Up A Swf File That Preloads Other External Swf Files

Jul 21, 2010

I set up a swf file that preloads other external swf files. I would love these external swf's to be trackable with google Analytics. Is this possible? or is there a other way to do it?

View 2 Replies

ActionScript 3.0 :: Playing External .swf Files In .swf File?

Apr 6, 2011

I would like to play external .swf files which will be located in a specific directory somewhere and I will be getting the filenames through a sharepoint XML file. The .swf files have no interaction at all they are just videos playing but I need them to play one after another and in a constant loop until the XML file changes.

View 6 Replies

Index Mp3 Files On User Side And Create A Database Of File Name?

Oct 3, 2010

How can I index mp3 files on user side and create a database of file name, artist name album name etc and upload them on a server?

View 1 Replies

ActionScript 2.0 :: Load External Swf Files(9) Into Master.swf File

Aug 14, 2009

I can't figure out how to load external swf files(9) into my master.swf file one after the other. This is the Actionscript i have written so far.....(AS2)

var myItems:Array = new Array("swf01.swf", "swf02.swf", "swf03.swf", "swf04.swf", "swf05.swf", "swf06.swf", "swf07.swf", "swf08.swf", "swf09.swf");
var myMCL:MovieClipLoader = new MovieClipLoader();
var myListener:Object = new Object();
myMCL.addListener(myListener);
myMCL.loadClip("myItems[0]", this.getNextHighestDepth());

The first swf loads alright into my master swf but i can't for the life of me work out how to load the rest after each one has finished loading. Don't know if i need a for loop or what?

View 2 Replies

ActionScript 3.0 :: Place In Flash Files In Xhtml Files On IE Without Manually Controls By Clicking On The Flash File?

Apr 28, 2009

I'm in the process of making a web page that'll successfully checked as XHTML 1.0 Transitional ([URL]), but as soon as I place in the fixit.js script under the flash object and view the page in IE, all the flash elements turn white. Quote:

[Code]...

Anyone knows how to place in flash files in xhtml files on IE without manually controls by clicking on the flash file.

View 1 Replies

ActionScript 3.0 :: Create XML File Dynamically By Selecting The Music Files Using The Player?

Nov 23, 2010

I was trying to make a media player with AS3 coding.. I know how to make play, pause, next buttons etc.. And i also learned to load playlist from a XML file (created mannually)..What i actually need is to browse the computer and select multiple files and add those files to a playlist.. All these must be done with the media player itself(not manually typing the XML data).. XML file dynamically by selecting the music files, using the player.. Or is there some other method to create playlist without making the XML?..

View 6 Replies

Flash :: Save Pro CS5 File Created In Windows To A Mac Os File?

Jan 2, 2012

I created a flash banner with flash pro CS5 using windows 7. Can I save the file so my client can open it with a Mac OS?

View 1 Replies

Professional :: Plain Text Files Loads From An External File?

Apr 20, 2011

i have created a plain text files loads from an external file. I am facing one problem which is the text does not load unless someone select the button. I will like the text to show as soon as someone enters the page

//Plain text files loads from an external file
var textLoader:URLLoader;function loadStory(evt:MouseEvent):void{
textLoader = new URLLoader();

[code]....

View 7 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 :: Create A Preloader (in Flash With The "percent-loaded"-thingie) For An External .html File

Aug 4, 2004

I want to create a preloader (in flash)(with the "percent-loaded"-thingie) for an external .html file that I want to load. Here's my code:

[Code].....

On the "main" frame" I've put a getURL action on a movieclip. Can this work.???? I'm still new at this and a bit confused?

View 6 Replies

ActionScript 2.0 :: Preload Multiple External Swf Files Into Specific Frames Of Parent File?

Dec 15, 2009

I am trying to eliminate the Loader component from a project. Run locally, the Loader is sufficient to load-up the voiceover swf files that exist on many of the frames in the parent file. On the web, the short download delays at runtime due to the Loader are causing timing issues. I'm not sure if there is a way to preload multiple swfs into specific frames of a parent file so that they are available before runtime.

View 4 Replies

ActionScript 2.0 :: Load An External Mp3 Player File Randomly From A List Of Files In A Folder?

Nov 10, 2003

1 is there a way to load an external mp3 file randomly from a list of files in a folder? is there a "rand" function (as in php) or something to get random numbers?

2 how can I display the ID3 tags?

View 5 Replies

Dom :: Call Dynamically Created Flash External Interface In IE?

Jan 28, 2010

What I have:A swf exports a function via ExternalInterfaceJavascript creates new embed object and adds it to the documentCalling flash functions works fine in other browsersCalling flash functions will fail in IE 8Example of exporting functions in swf:

flash.external.ExternalInterface.addCallback("isActive", ...
Example of creating the embed object:
var b = document.createElement('embed');

[code].....

View 4 Replies

ActionScript :: Flash - Loading External Programatically Created SWF?

Aug 23, 2011

i've never had to do any cross scripting until now and i'm running into a (probably really stupid) error right at the start.

External SWF:i've created a new ActionScript 3.0 project in Flash Professional CS5. on the first frame i've added the following script:

[Code]...

perhaps i'm misunderstanding the nature of cross scripting or loading external swf files, but i can only seem to make this work if i've manually drawn display objects on the stage and not if the external swf's display objects are generated by code.is it not possible to load external swfs that are programatically created and add them to the display list of a main swf?

View 2 Replies

ActionScript 3.0 :: CS3 - Create External Text File?

Jun 22, 2011

I am using CS3 / AS3 to create a kiosk app. As part of the kiosk I need to create an external file that I can append with visitor comments (2 text fields and 2 radio buttons).  These would then be approved by a museum administrator and copied over to another text file that gets read into the kiosk and displayed. I'm not having any trouble reading in an external file, but I'm finding so many conflicting things about writing an external file with AS3. 

View 3 Replies

ActionScript 3.0 :: Cs3 - Create A Glossary That Is Read From An External *.txt File

May 11, 2009

I wish to create a glossary that is read from an external *.txt file. The glossary function like a dictionary in that there is a word, its definition, and a link to a relevent page where the word appears. e.g. <label="apple" def="that thing people eat" url="apple.txt"> The reason I want it external to flash is so that new words can be added and removed manually and flash will simply update. A user can type in a word to search for in the "sorted alphabetically" list within flash.

View 2 Replies







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