Newbiequestion: Why External Scripts
hello;I am confused/frustrated as to why I should want to use external scripts EXCLUSIVELY in the new AS3 environment; I regularly use external scripts with JS,PHP,AS, for the sake of code re-usability and code-management/clean-coding;now it seems that the ENTIRE code of an AS3 project is required to be in external .as files, which is not a convenience but a burden;for instance, using AS1.0, I might typically have dozens of classes and objects in one project.fla ( that may fall into 5-10 distinct logic-themes, ie packages ), but these classes are located on the timeline somewhere, and thus make for a straightforward authoring experience;if I now must put these classes and objects in external scripts, I will need 6-11 files open during authoring; messy;any insight please;thanksdsdsdsdsd
Adobe > ActionScript 3
Posted on: 03/15/2008 08:40:24 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Problem With External MCs, Loading An External Into An External
What I have is 2 seperate files, Main file is the actual website flash, second file is the external movie clip that loads 3 other external movie clips. The site will see the external clip but nothing will appear on the site, blank movie clip only.
On the main site there is this code to load the external clip into the site:
ActionScript Code:
loadMovie("toonsext.swf", _root.toons_mc)
On the external clip these are the codes for loading the 3 characters onto it:
ActionScript Code:
loadMovie("joshtoon.swf", joshblank_mc)loadMovie("toonmatt.swf", mattblank_mc)loadMovie("metoon.swf", meblank_mc)
Seperately the external clip will work and show the characters however on the main site it will not show anything. What could be the problem can flash not load 2 seperate entities like this or is there a code wrong on my behalf?
Load External Text Inside An Already Loaded External Movie
here's the problem as simply as I can explain it.
there's a main.swf, a news.swf and a text.txt
the news.swf is loaded into the main.swf and I want to load the text.txt into the news.swf
everything works when I just load the text into the news.swf without loading it into the main.swf, so I know the text.txt part is loading.
[F8] External Text Files Wont Load Into External Swf File...
Hi,
I'm making a Flash website in Flash 8 (mac).
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 2004. The 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.
I've attached the files in question. Its a 200kb ZIP download. Do tell me if you need to know more.
Thanks
How To Load An External Movie Using A Link Within An External Swf - Urgent
Hi all
Flash CS3 but coding in AS2 - mac.
I believe I have asked this question before but i was using loadMovie() - I am now using loadClip and the MovieClipLoader class and obviously I have managed to break something.
I have a number of external swfs which load fine, with preloaders using MovieClipLoader, into an empty MC on the stage called holder_mc. In one of the external swf's, there are two links to separate external swf's - if you click on either of them, the current swf is unloaded and the new one is loaded. I used:
Code:
myButtonWithinSwf.onRelease = function() {
this._parent.loadMovie("newMovie.swf");
}
However now that I am using a different code (because before, evrything wasnt preloaded, i just had a white space until it appeared) the code within the swf obviously has to change. The only problem is, I cant for the life of me work out what it is, I have tried all sorts of combinations and probably missed the most obvious one. I do not want to create empty movie clips, I want the movie to load into the MC which I have defined - holder_mc - and usually I would tell it to unloadClip() before loading the new one, but it cant load a new one if it has unloaded itself. I hope that makes sense!
This is the code I am using on the main timeline to control the preloading of the external swf's:
Code:
var mcLoader:MovieClipLoader = new MovieClipLoader();
var loadListener:Object = new Object();
loadListener.onLoadStart = function() {
holder_mc.stop();
};
loadListener.onLoadProgress = function(target:MovieClip, loadedBytes:Number, totalBytes:Number) {
pleaseWait._visible = true;
var preloaded:Number = Math.floor(loadedBytes / totalBytes * 100);
preloaderMC._visible = true;
preloaderMC.loadText.text = preloaded.toString() + "%";
preloaderMC.loadBar._yscale = preloaded;
};
loadListener.onLoadInit = function() {
preloaderMC._visible = false;
pleaseWait._visible = false;
holder_mc.play();
};
/**** register listener object with MovieClipLoader object ****/
mcLoader.addListener(loadListener);
anotherButton.onRelease = function() {
mcLoader.unloadClip(holder_mc);
mcLoader.loadClip("anotherMovie.swf", holder_mc);
}
my preloader is called preloaderMC and pleaseWait is just a movie clip that is placed on the other side of the screen for another reason. loadText and loadBar are the dynamic text and loading bar within the preloaderMC.
I really hope someone can help me ASAP as this was all working before with loadMovie() and now suddenly I cant get it working!
Thanks in advance
Theo
Load External Swf From Html Formatted External Text?
Hi to all,
new to this forum, not so new to flash, but deeper AS...
I searched a while before asking now but didn#t found a solution for what i want to do.
may be someone can give me a hint to this:
I have a html formatted external text file and i want to call from this a external swf movie like
Code:
<a href="loadMovieNum("products.swf",10)">products</a>
I guess i need a asfunction for this?
So i read this:
http://www.macromedia.com/cfusion/kn...fm?id=tn_15639
But still get not the trick how to..?
I tried this:
in 1. Frame of movie i placed:
Code:
function myFunction () {
loadMovieNum("products.swf",10);
}
and changed html text in:
Code:
<a href="asfunction:myFunction">products</a>
when i publish and add a trace function is still got the comment i gave in trace but external swf is not loaded.
I get no error in output window, but not loaded.
Any ideas or hints?
Would be great.
Thank you for a hint.
all best
cyrano
Preloader For External Swf That Pauses External Swf Until Completely Loaded
I'm fairly new to all of this stuff, so bear with me . . .
I want to load an external swf into a main swf movie. (This much I can do).
I would like a separate preloader movie in the main swf movie to display the amount loaded.(I've found tutorials for that, so that's not the issue.)
The problem is that I want the external swf not to start playing until it is completely loaded.
If I put a stop on the first frame of the external swf, that will keep it from playing, but, I'm not sure how to get the external swf to recognize that the load is complete.
I could put a preloader in the external swf, but I'm trying not to so that I can reuse the preloader for other external swf files without having to put it in each one.
Maybe I put a preloader without a visual component on each external swf?
Any help would be greatly appreciated.
Thanks.
Preloaded External Swf Do Not Show External Dynamic File...?
okeli... I am posting because I am totally stuck... my xp regarding coding and stuff is absolutely crap (although I do understand most logic to the scripts u all write out), so I have followed most of ur tutorials on the site.
The problem:
I have made a main file and used primarily two of ur tutorials together. The first one is Claudio's Preloader and transition tutorial, http://www.kirupa.com/developer/mx/p...transition.htm, but also kirupa's Scrolling dynamically loaded text, http://www.kirupa.com/developer/mx/dynamic_scroller.htm.
The file main.swf should load, with transition and loading, the file members.swf - which it does. However when members.swf should load currentmembers.asp as a scrolling text the text do not show up. When I however view members seperately the scrolling text DO SHOW up! I am all confused at this and the only thing I can imagine being wrong is somewhere in the coding of main.fla file... :/ Perhaps I am wrong (which would not be a surprise) so if someone kind enough can have a look through at the coding of the main.fla and/or members.fla I would be sinceraly grateful... thanks...
The files:
http://www.sebszhost.com/~leete/FftC/currentmembers.asp
http://www.sebszhost.com/~leete/FftC/main.fla
http://www.sebszhost.com/~leete/FftC/members.fla
Loading External SWF From External SWF Onto An Empty MC On Main Timeline?
Hi Everyone,
Please bear with me while I explain. I have an external swf that loads into a frame in the main timeline, into an empty MC. I can do this just fine. Once this clip is loaded, I have a button in this clip that loads another external swf into a different empty MC on the main timeline. I'm using loadMovie, and I need to load these movies into specific empty MCs. In other words,
I have the following:
MainStage: frame 5, contains empty MC "ClipA"; frame 6, contains empty MC "ClipB"
External swf: "Movie1"
External swf: "Movie2"
"Movie1" goes into "ClipA" of frame 5 on Main Timeline; and "Movie1" has a button that loads "Movie2" into "ClipB" of frame 6 on Main Timeline. I need help loading "Clip B" into "Movie2" from a button in "ClipA."
I'm sorry my message is so roundabout - it's not really a complicated situation, but explaining it makes it seem so.
Thank you in advance for any help - I'm assuming it's some sort of _root or _parent issue things I'm not quite understanding.
Thanks!
macgirl
Trigger External Swf To Load Into Main Swf From Button In Another External Swf
I'm really stuck with this and it seems like such a simple problem to solve.
I am trying to get a nav button in one movie (main_nav.swf) to target a my main movie (index.swf) and load a sub nav movie (metals_subnav_infinite.swf) into it. The sub nav movie will do a similar task - loading a portfolio swf into main movie (index.swf).
Here is the file breakdown of my working files:
index.swf - main final movie which loads "main_nav_infinite3.swf" on start
main_nav_infinite3.swf - loads main nav "main_nav.swf" and scrolls it infinitely (infinite menu)
main_nav.swf - main nav with buttons that trigger sub nav "metals_subnav_infinite.swf" to load into index.swf
metals_subnav_infinite.swf - loads sub nav "metals_subnav.swf" and scrolls it infinitely
metals_subnav.swf - sub nav with buttons that trigger "folio.swf" (have not created this file yet!) to load into "index.swf"
The script I was focusing on is in main_nav.fla and it is:
metals_mc_bn.onRelease = function() {
reActivateMenu();
this.gotoAndStop(3);
this.enabled = false;
_level1.sub_nav_content_mc.loadMovie("metals_subna v_infinite.swf");
};
I haven't yet activated all the buttons yet just the "Metals" button as the first to get working.
I have attached the FLAs.
exxie!
How To Load An External Movie Using A Link Within An External Swf - Urgent
Hi all
Flash CS3 but coding in AS2 - mac.
I have asked this question before but i was using loadMovie() - I am now using loadClip and the MovieClipLoader class and obviously I have managed to break something.
I have a number of external swfs which load fine, with preloaders using MovieClipLoader, into an empty MC on the stage called holder_mc. In one of the external swf's, there are two links to separate external swf's - if you click on either of them, the current swf is unloaded and the new one is loaded. I used:
Code:
myButtonWithinSwf.onRelease = function() {
this._parent.loadMovie("newMovie.swf");
}
However now that I am using a different code (because before, evrything wasnt preloaded, i just had a white space until it appeared) the code within the swf obviously has to change. The only problem is, I cant for the life of me work out what it is, I have tried all sorts of combinations and probably missed the most obvious one. I do not want to create empty movie clips, I want the movie to load into the MC which I have defined - holder_mc - and usually I would tell it to unloadClip() before loading the new one, but it cant load a new one if it has unloaded itself. I hope that makes sense!
This is the code I am using on the main timeline to control the preloading of the external swf's:
Code:
var mcLoader:MovieClipLoader = new MovieClipLoader();
var loadListener:Object = new Object();
loadListener.onLoadStart = function() {
holder_mc.stop();
};
loadListener.onLoadProgress = function(target:MovieClip, loadedBytes:Number, totalBytes:Number) {
pleaseWait._visible = true;
var preloaded:Number = Math.floor(loadedBytes / totalBytes * 100);
preloaderMC._visible = true;
preloaderMC.loadText.text = preloaded.toString() + "%";
preloaderMC.loadBar._yscale = preloaded;
};
loadListener.onLoadInit = function() {
preloaderMC._visible = false;
pleaseWait._visible = false;
holder_mc.play();
};
/**** register listener object with MovieClipLoader object ****/
mcLoader.addListener(loadListener);
anotherButton.onRelease = function() {
mcLoader.unloadClip(holder_mc);
mcLoader.loadClip("anotherMovie.swf", holder_mc);
}
my preloader is called preloaderMC and pleaseWait is just a movie clip that is placed on the other side of the screen for another reason. loadText and loadBar are the dynamic text and loading bar within the preloaderMC.
I really hope someone can help me ASAP as this was all working before with loadMovie() and now suddenly I cant get it working!
Thanks in advance
Theo
Preloader For External Swf That Pauses External Swf Until Completely Loaded
I'm fairly new to all of this stuff, so bear with me . . .
I want to load an external swf into a main swf movie. (This much I can do).
I would like a separate preloader movie in the main swf movie to display the amount loaded.(I've found tutorials for that, so that's not the issue.)
The problem is that I want the external swf not to start playing until it is completely loaded.
If I put a stop on the first frame of the external swf, that will keep it from playing, but, I'm not sure how to get the external swf to recognize that the load is complete.
I could put a preloader in the external swf, but I'm trying not to so that I can reuse the preloader for other external swf files without having to put it in each one.
Maybe I put a preloader without a visual component on each external swf?
Any help would be greatly appreciated.
Thanks.
External Clip, External Variables Don't Load
hi all,
I'm having some trouble with external variables and external movie clips. I have a main movie, and one part of it is an external movie, the main movie has a bunch of variables stored in a text file. This works fine. The external movie also has a bunch of variables in a different text file. When I play the external movie on it's own it works fine too. When I load the external movie from my main movie, the movie loads but the variables don't. Is there a special way to do this with more movies, do I have to load variables on different levels or something?
I generally use this to load variables
loadVariables ("roznet.txt", "");
I have tried using absolute paths as well (http://) but the same thing. It works by itself but when it is within my main movie the variables don't load. Any ideas? Thanks.
Loading External Swf Which Load External Txt File
Hi,
My main movie loads an external swf with the following:
code:
createEmptyMovieClip("contRight_mc", 5);
contRight_mc.loadMovie("contHome.swf");
contRight_mc._x = 485;
contRight_mc._y = 0;
contHome.swf loads an external text file and stylesheet:
code:
loadVariablesNum("contHome_no.txt", 0);
globalStyle = new TextField.StyleSheet();
globalStyle.load("global.css");
hdrHome00_txt.styleSheet = globalStyle;
hdrHome00_txt is a dynamic text field with the variable hdrHome00, which is used in the loaded text file:
hdrHome00=<html><body><hdr>text</hdr></body></html>
All files are currently in the same directory. When I test contHome.swf (the swf loaded by the main movie), everything works. But when I test the main movie the text does not load, or at least it does not show up as I receive no errors in the output window, and I can't figure out why. Can anyone help?
Generic Preloader For External Swfs From Within An External Swf
Hi,
I have a full flash site that has a main interface.swf that loads in external swf's as holders for their relevant page contents. E.G. using loadMovie I load portfolio.swf into the mainLoader (movieclip) within interface.swf. Within portfolio.swf I load in a further series of external swf's based on button click events, for these I want to use a generic preloader to prevent having to put a preloader in each individual swf.
I have found some code on O'Reilly (http://web.oreilly.com/news/action_0501.html) which seems to offer what I need but I'm having problems implementing this, I'm pretty sure this is down to incorrect targeting due to the fact I am not preloading from _root.
This is what i've been working with:
code:
// ON THE MC I'M LOADING INTO
onClipEvent (enterFrame) {
// If the host clip contains an external .swf file...
if (this._url != _root._url) {
// ...call our preload() function, which displays the
// loading .swf file's download progress.
_parent.preload(this);
}
}
// AND THE PRELOAD FUNCTION ITSELF
function preload (theClip) {
if (!theClip.doneLoading) {
// If we have all the frames, make a
// note that download is complete.
if (theClip._framesloaded > 0
&& theClip._framesloaded == theClip._totalframes) {
theClip.doneLoading = true;
// Optionally start the clip once it's done loading...
// theClip.play();
} else {
// Optionally pause the clip until it's loaded...
// theClip.stop();
}
// Display loading byte counts in text fields.
bytesLoadedOutput = theClip.getBytesLoaded();
bytesTotalOutput = theClip.getBytesTotal();
// Strip out the file name of the .swf loading into the
// clip and display it in a text field.
var lastSlash = theClip._url.lastIndexOf("/");
clipURLOutput = theClip._url.substring(lastSlash + 1,
theClip._url.length);
// Set the width of the loading bar.
var percentLoaded = (theClip.getBytesLoaded()
/ theClip.getBytesTotal());
preloadBar._width = preloadBarBG._width * percentLoaded;
}
}
When testing the preloader never seems to get started, my movies just play and seem to ignore this code.
Any ideas would be much appreciated.
Loading External Jpeg Via External Preloader
mx2004
hello all, i have a button which loads an external jpeg from a folder. what i want is to have it so when the command to load the external jpeg is sent, an external preloader preloads it in the placeholder. this preloader will be generic so it can be applied to load before any image selected in any folder, for updating purposes. anyone know where to start with action script, or how to set it up,
External Swf File Does Not Load External Text
Hi,
I have an external text file that loads dynamically in my swf file.
It uses the actionscript:
loadVariables("joblist.txt","_root");
When I play the swf it works perfectly with the text scrolling in the dynamic text field, but when I load this swf file into my main swf file with loadMovie, the text does not appear.
I have tried embedding the fonts in both files, but it still does not show up when loaded into the main movie.
Can anyone help me with this?
Loading External Html Files With External Css Please Help
Hi people,
I'm new to this forum and new to ActionScript. I have not worked on AS1 or AS2 before so I just got started on AS3.
I'm trying to learn ActionScript 3 and I started experimenting with ideas and workinf examples.
What I'm trying to achieve is a website where the content shown is from external HTML files and external CSS.
My code was working up until trying loading the CSS. The error that I'm getting is "Call to a possibly undefined method URLLoader"
here is my code:
ActionScript Code:
import flash.display.MovieClip;
import flash.text.*;
import fl.transitions.*;
import fl.transitions.easing.*;
var bodyTextField:TextField = new TextField();
bodyTextField.x = 50;
bodyTextField.y = 300;
bodyTextField.width = 500;
bodyTextField.multiline = true;
bodyTextField.wordWrap = true;
bodyTextField.autoSize = TextFieldAutoSize.LEFT;
bodyTextField.selectable = false;
var textBox_mc:MovieClip = new MovieClip();
showContent("html_pages/home.html");
function showContent(paraString:String):void
{
var contentPage:String = paraString;
var myURLLoader:URLLoader = new URLLoader();
var myURLRequest:URLRequest = new URLRequest(contentPage);
var myCSSLoader:URLLoader = new URLloader();
var myCSSRequest:URLRequest = new URLRequest("html_pages/demo.css");
myCSSLoader.load(myCSSRequest);
myURLLoader.load(myURLRequest);
//myURLLoader.addEventListener(Event.COMPLETE, dataOK);
myCSSLoader.addEventListener(Event.COMPLETE, dataOK);
function dataOK(myevent:Event):void
{
var css:StyleSheet = new StyleSheet();
css.parseCSS(URLLoader(evt.target).data);
bodyTextField.styleSheet = css;
bodyTextField.htmlText = myURLLoader.data;
textBox_mc.addChild(bodyTextField);
stage.addChild(textBox_mc);
var myTransitionManager:TransitionManager = new TransitionManager(textBox_mc);
myTransitionManager.startTransition({type:Wipe, direction:Transition.IN, duration:0.5, easing:None.easeOut});
}
}
Can someone please have a look and tell me what I'm doing wrong? Thanks.
Help With External Swf To External Swf Interactivity Along Same Timeline Help Needed
I'm structuring a website in Flash MX 2004, using a main timeline with empty movie clips along the timeline which load external swf files at frame labels corresponding to my main navigation. All is working fine, until I try to link to a specific frame label in one externally loaded swf from buttons in another externally loaded swf on a different location in the timeline. I tried setting a variable in the swf when the button is pressed to true, and placing an if statement in the beginning of the linked-to swf that said if varname is true, then go to the specific frame label. Has anyone ran into problems linking external swf to external swf? Anyone have good references for passing variables? I know the if/else is good, I think the problem is that the variable isn't passing correctly. Should I be using global variables? Linking to an external text file with variables? Creating an event listener? Any references/help are extremely appreciated!!!
Disable Button In External Swf From Diff. External Swf
ok, i am loading an external swf into the main movie, and i want to disable the buttons and movieclips underneath while the movie is loaded. i am using a function, defined on root timeline to disable buttons.
ex:
ActionScript Code:
function butEnable(check) { _root.rap.enabled = check; _root.web.enabled = check;}
it works beautifully and sucessfully disables most of the buttons and mcs underneath.
however, it doesn't work for disabling the buttons that are in external swfs loaded under the top external swf. i'm sure i'm targeting it right. is this just not possible? or do i have to do something different?
~thanks
External Text In External Swf Not Loading In Main Swf
Hi. I'm kind of new to Flash, and am trying to make external text load into an external swf which is loaded into my main swf.
What I have is a swf file where I have buttons that load external text. I then loaded this swf into another main.swf and now the external text will not load. The code i have in the external.swf to load external text is this
but4272005.onRelease=function(){
loadVariablesNum ("4272005.txt","0");
}
but4282005.onRelease=function(){
loadVariablesNum ("4282005.txt","0");
}
but532005.onRelease=function(){
loadVariablesNum ("532005.txt","0");
}
This swf works by itself, but when i load it into the main.swf it doesn't.
I'm sure it has something to do with the "0", but I'm not sure what to put there to make it load correctly in the main swf.
The dynamic textbox i'm trying to load into is named "index_txt". The name of the loader in the main.swf is named "content". Any help would be appreciated.
Problems Loading An External .swf Inside An External .swf
Hey, I created a site using Kirupa's external .swf loading tutorial. Now in one of my externally loaded .swf's, I am loading another external .swf. I've gotten this to work fine, but the second external .swf (loaded into the first) contains buttons that will swap this second external .swf with another external .swf. I can't seem to get the AS references to the variables set up correctly in order to swap the swf's. It sounds rather confusing, so I've included the .fla's and .swf's below.
The file structure:
-band.swf load's profiles_main.swf
-The buttons in profiles_main.swf are trying to load chris.swf (swapping it entirely with profiles_main.swf)
If anyone has a few moments, I'd really appreciate the help.
Problems Loading An External .swf Inside An External .swf
Hiya, I created a site using Kirupa's external .swf loading tutorial. Now in one of my externally loaded .swf's, I am loading another external .swf. I've gotten this to work fine, but the second external .swf (loaded into the first) contains buttons that will swap this second external .swf with another external .swf. I can't seem to get the AS references to the variables set up correctly in order to swap the swf's. The initial .swf loads fine, but the button control gets complicated inside it. It sounds rather confusing, so I've included a link to the .fla's and .swf's below.
http://www.rta.ssxh.net/files.zip
The file structure:
-band.swf load's profiles_main.swf
-The buttons in profiles_main.swf are trying to load chris.swf (swapping it entirely with profiles_main.swf)
If anyone has a few moments, I'd really appreciate the help.
Loading External Files Within External File
Is there a way to load an external file from within an already loaded external file?
Example:
I want to do a section devoted to blog entries. So, I was wanting to externally load the dated references in one textbox on the right side, and when the user clicks on one date, it loads the referenced text file into the larger box next to it.
Any ideas of how to accomplish this?
Thanks!
bbbco
External Actionscript And Calling External Functions
I have not been able to figure out or find a good tutorial on how to use external actionscript or how to call functions located externally. What I have found in flash help and livedocs has not proved to be helpful and I have not managed to make it work. Has anybody seen anything?
Even a simple thing, such as creating an external function that tells a button to go to the next frame and how to call that in my flash file would be greatly helpful.
Loading External Images (from External Domains)
Hello kirupa users
I had a small problem in my latest work project where i wanted to load images from external domains.
The problem was that i did not know if i really need the checkPolicyFile set to true or if i really need to load the crossdomain.xml to tell flash player where the acces is.
As far as i know, in adobe as3 reference they stated that in order to load images from an external domain (a domain other than the one where the actual swf runs) you need a policy file or a security acces file in order to be able to do that.
My question is:
1: could i load an image from external domains without having to load some external file (or the crossdomain.xml file)?
2: if there is no possibility to load an image without the crossdomain policy why the checkPolicyFile method could take the value of false?
Thanks in advanced!
Regards.
Disable Button In External Swf From Diff. External Swf
ok, i am loading an external swf into the main movie, and i want to disable the buttons and movieclips underneath while the movie is loaded. i am using a function, defined on root timeline to disable buttons.
ex:
ActionScript Code:
function butEnable(check) { _root.rap.enabled = check; _root.web.enabled = check;}
it works beautifully and sucessfully disables most of the buttons and mcs underneath.
however, it doesn't work for disabling the buttons that are in external swfs loaded under the top external swf. i'm sure i'm targeting it right. is this just not possible? or do i have to do something different?
~thanks
External Text In External Swf Not Loading In Main Swf
Hi. I'm kind of new to Flash, and am trying to make external text load into an external swf which is loaded into my main swf.
What I have is a swf file where I have buttons that load external text. I then loaded this swf into another main.swf and now the external text will not load. The code i have in the external.swf to load external text is this
but4272005.onRelease=function(){
loadVariablesNum ("4272005.txt","0");
}
but4282005.onRelease=function(){
loadVariablesNum ("4282005.txt","0");
}
but532005.onRelease=function(){
loadVariablesNum ("532005.txt","0");
}
This swf works by itself, but when i load it into the main.swf it doesn't.
I'm sure it has something to do with the "0", but I'm not sure what to put there to make it load correctly in the main swf.
The dynamic textbox i'm trying to load into is named "index_txt". The name of the loader in the main.swf is named "content". Any help would be appreciated.
Problems Loading External CSS With External TXT FMX-2004
hi guys/gals. i'm not so new around here - this site has been a life saver several times, but i'm having trouble finding the answer to this problem i've encountered.
all of the files associated w/ this project are located here, http://www.ohmygraphics.com/test/groovesect/flash.
ok, here's what i'm trying to do.
i have a movie with a button that opens a window w/ a movie clip instance that is draggable. in this draggable movie clip is an external SWF file called "tester.swf". i've tried several times to have a dynamic text field that would load an external CSS file along with a TXT file.
see tester.swf. this is the same TXT w/ the CSS that i want loaded.
here, SITE1.SWF is the final movie w/ "tester.swf" loaded.
as you can see, i got it to load the external TXT file, but not the CSS.
i couldn't get the CSS to load in the SITE1.SWF file, so i thought that since it worked w/ the tester1.swf that i could load an external SWF file and have it work that way. but that didnt' work like i had hoped, which leads me to think that i've got the locations and everything else right in the AS.
i've also uploaded the two .fla files for you guys to look over to see the code. it's pretty simple really, i just don't know why it's not loading the CSS. i thought it might be something with having instances withing instances, but i really have no idea.
thanks in advance for all of your help. it's greatly appreciated.
External Text Load On External Swf Problem?
ok heres the problem, i have a site, and on the main screen it loads an external movie clip onto the space available. loading the movie clip is not a problem, but the thing is that when i do, the external text loading function on the external swf doesnt work. any ideas?
External Gif/ Convert External Jpeg
I need to load gifs into a movie using loadMovie but officially you can only use jpegs??? they need to be gifs for a transparent background.
Has anyone got any ideas. can you convert jpegs somehow after they have been loaded? or does anyone know how to load external gifs?
thanx
Loading External Data Into An External Swf
I have a main interface where I'm loading an external swf's but I'm also trying to load text dynamically from a database from the external swf but the text will not show up,
but the text will load if it's in the main interface.
This is my code:
on (release) {
_level0.section = "about.swf";
_level200.play();
section = "contact";
loadVariablesNum("http://www.myurl.com/get_text.php", 0, "POST");
}
The swf will Load properly but the text won't.
Any help would be greatly appreciated.
ps.I hope what I'm asking for makes sense
Loading External Data Into An External Swf
I have a main interface where I'm loading an external swf's but I'm also trying to load text dynamically from a database from the external swf but the text will not show up,
but the text will load if it's in the main interface.
This is my code:
on (release) {
_level0.section = "about.swf";
_level200.play();
section = "contact";
loadVariablesNum("http://www.myurl.com/get_text.php", 0, "POST");
}
The swf will Load properly but the text won't.
Any help would be greatly appreciated.
ps.I hope what I'm asking for makes sense
External Libraries With External Content
Hey all,
Ok, I will try and be as clear as I can. I realize that there is a possibility in flash to obtain data from external swf libraries. But is there a way to store images such as jpegs in other libraries so that when the main swf needs curtain images, it loads the external libary and diplays the thumb nail and aswell as the large image.
I am aware of using external jpegs but I need to organise a set of specific images in one area because of the number of images that i have. I do not want to creaate alot of script to target alot of images in alot of folders.
eg.
I have 18 categories and each category has more than 20 images in each one. so can i just have each category in its own swf library then make the main swf just access it contents when assigned to?
iam sorry for the long request but i tried to make it short
any suggestions?
External Swf And External Variable Problem
I have been working on a website that loads an external movie for each of the seperate pages of the site. This is no problem. However, I have set up the external swf's to have scroll bars and load content from text files. I can not get these to work together. I can use the content movie with the scroll bars on its own and the text loads, I can use the main navigation movie to load the content movie, but I can not get the main navigation movie to load teh content movie and then have the content movie load the text at the same time. *Wheew* I hope that's not too confusing.
Main Navigation movie
- Seperate page of the site
-Text content
the script i use to load the external swf is :
on (release) {
loadMovieNum("bio.swf", 2);
}
the script i use on the external swf to load the text is :
loadVariablesNum("bio.txt", 0);
If I need to explain it more thoroughly please ask me to do so. Remember i can get these two elements to work seperately but not when both used together. :-(
Can I Load An External SWF Into A Container MC From Another External SWF (NAV)? HELP
DETAILS:
Main Movie contains two empty MCS one instance is called container and the other nav_container.
When the movie first loads, it preloads on frame 1, and then goes to frame two. Frame two has an action to load some sound, and the home_nav.swf file into the load_movie.swf file's nav_container.
This is where I run into my problem. From the home_nav.swf file, I have some script on my buttons. The buttons call an external file swf (subpage - content) to load into container MC (on load_movie.swf timeline). I cannot get the script to call in these subpages! Here is the script I used:
on (release) {
_root.container.loadMovie("social.swf");
}
I assume it's a path issue? I feel like i have tried everything...i'm sure it's something simple that I missed.
I appreciate your help!
Thanks,
Valerie
Passing Varibales From External Swf To Another External Swf
Hey guys,
gotta big problem... ive created a page with an externally loaded navigation bar... when choosing a link for a specific section (externally loaded swf., a variable called stagetoggle is raised by one. This variable is used as the stageinformation needed for the loadmovie-action. This causes that each movie loaded will be on top of the one loaded before!
Problem is following: Ill post the code first to explain...
Code:
on (press) {
if (bioload == "unloaded") {
loadMovieNum ("biosite.swf", stufentoggle);
bioload = "loaded";
biostufe = stufentoggle;
stufentoggle = stufentoggle+1;
}
}
i load the movie biosite.swf into the stage "stufentoggle"; after it has been loaded, stufentoggle is raised by 1 to put the next loaded movie on top (bioload is simply to prevent reloading when the movie has already been loaded and the link is clicked again) To safe the present stage for later unloading, i pass on the value of stufentoggle to
To unload it i use the following code:
Code:
on (press) {
unloadMovieNum (biostufe);
}
as soon as im clicking the link in the loaded swf to call the previously explained action, all content is gone.
Help, anybody pls =)
Loading External Swfs From An External Swf
im building a site that uses a simple AS to load "contact us.swf" into the main movie. my question is how can i code it that from "contact us.swf i can load another external swf such as "form.swf"? i cant get it to load the form heres the code im using
from the mainmovie
on (release) {
_root.contents.loadMovie("contact us.swf");
in the contact movie
_root.contents.loadMovie("formswf");
any suggestions?
Retaining Properties Of External Swf Within External Swf
hi there,
I know there are millions of threads on external swfs however i did do a search but couldnt find my exact problemo.
I have a few portfolio items that i want to include in my portfolio but i dont have the original fla's to alter the actionscript so they work without referring to the _root. I want them to run independently so when they are imported in they play independently. One of the main problems is i have a preloader in them which goes to the "main" frame label, i have this also in my main portfolio movie so its referring to the "main" on the main timeline rather than the individual swf and messing things up a bit!
Hope this makes sense, grateful for help
Thanks
p
Loading An External Swf Inside An External Swf
Hello,
I've used loadMovie to load an external swfs in two host files. both work fine on there own, but when I try and load the second host file into the first host file I'm not able to view the 2nd's loaded swf.
Anyone know the problem/have a way around it??
Thanks
Loading External Text Into External SWF
I'm looking to somehow load an external .txt file into an external swf file for a website section.
I've attached a zip that contains the main SWF file and the external SWF file that should load as a subsection of the main SWF.
The problem is, the external text loads fine in the about.swf just fine, but as soon as the about.swf is loaded into main.swf the text and it's buttons do not appear.
Any help or tips would be greatly appreciated for a flash novice.
Again, the files are attached
Thanks!
[F8] External Text, External Swf Problems Again...
Hi all,
been searching this forum for the last 2 hrs and cant find anything on this - all seem to get close to the answer then... stop? (this worries me... ).
i would appreciate it someone could point us in the right direct over external text files in externals swfs which i just cant seem to get to load. I've got a feeling i should be using the loadVariable command somewhere instead of what i've got.
I've attached what i have and as you'll see, the swf works fine independently, but as soon as it's loaded into the target (holder) swf, there's no text...
anyone able to help me out?
External Array / External Input (as3.0)
the only thing I ever imported externally for a flash website was video.
what I have is a list of multiple contacs, and input about them in a separate list.
both lists are external.
contact lists is saved in notepad.
contact input is in Excel 2007.
first what I want to do is create an array using the external contacts list.
second when I click on the contacts name load his external info.
thanks for any help or input with this project. all will be greatly apreciated
sincerly sybershot
Trouble With External Text, External CSS
I'm stuck here.
I've created a Textfield, loaded external text and loaded external CSS. My problems is that I can't get the styles to apply to the text.
I have verified that my CSS style is legit - Dreamweaver displays it correctly. Additionally, I'm using the htmlText prop and not the text prop.
Traces confirm that an [object StyleSheet] exists - and that it appears to be assigned to the stylesheet property of Textfield.
I've verified that the html and css correspond. According to the AS3 cookbook by Lott - "The HTML text must be applied after the CSS is applied." So I've moved that around a bit - thinking it may be the issue...
I've also tried to move code to a button - just for testing purposes and still nothing. Button code not included below.
Anybody see what I'm missing here?
ActionScript Code:
//make a container
var sprContainer:Sprite = new Sprite();
//create a textfield
var tCal:TextField = new TextField();
tCal.text = "Test";
//put text field into container
sprContainer.addChild(tCal);
//add container to display list
this.addChild(sprContainer);
//Set textfield default size & position
tCal.border = true;
tCal.width = 294;
tCal.height = 107;
tCal.x = 135;
tCal.y = 253;
tCal.background = true;
tCal.multiline = true;
var textHolder:String;
var styleHolder:String;
//----------------------- CSS Loading ---------------------------------------------
// create a new TextField.StyleSheet instance
var cssCalStyle:StyleSheet;
//load the external css
var cssLoader = new URLLoader();
cssLoader.load(new URLRequest("calStyles.css"));
cssLoader.addEventListener(Event.COMPLETE, cssStylesLoaded);
function cssStylesLoaded(event:Event):void {
//trace("CSS Loaded OK");
cssCalStyle = new StyleSheet();
cssCalStyle.parseCSS(event.currentTarget.data);
styleHolder = event.currentTarget.data;
tCal.styleSheet = cssCalStyle;
//tCal.htmlText = textHolder;
}
//------------------------ External Text Loading ---------------------------------
//Load the external text
var txtLoader:URLLoader = new URLLoader();
txtLoader.addEventListener(Event.COMPLETE, onTextLoaded);
txtLoader.load(new URLRequest("tourschedule.txt"));
function onTextLoaded(event:Event):void{
//trace("text Loaded OK");
tCal.htmlText = event.currentTarget.data as String;
textHolder = event.currentTarget.data as String;
//trace(textHolder);
}
On External Swf Stop; Load New External Swf
Ok I've searched the tutorials and forums to no avail so here goes.
I have a splash intro/logo swf that when clicked plays to the end and stops. Then I have another swf that I want to load and play when the first intro swf is finished. But I don't want the second swf to be visible during the splash intro swf screen.
I've tried using tsomething like this
onClipEvent (enterFrame)
{
if (this.instance._currentframe == 140)
{
loadMovie("blah",3)
}
}
but it seem that at the time the MC enters the frame the intro swf isn't at frame 140 then it doesn't ever go back and check, so it seems I need to make a loop to keep checking to see what frame the intro swf is at but I'm not sure how to do that? is it a "for" statement or a "do while"?
thanks a bunch,
Ethan
External Text Within An External Movie
Okay, so I have an external text file with some simple html that is loaded into a dynamic text box (with a scroll bar) working fine. When I test that swf it works fine. When I try to load that swf into another swf, the text won't load. Am I messing something up with the levels? Any thoughts are welcome.
Dave
script on file with text box
loadVariablesNum("myMovieText.txt", 0);
Loading External .swf With External Images
I have created a basic website and wish to load an external .swf file into it. The .swf loads fine but the images that are to load within that particular .swf do not. The images are external and load using this action script.
btn1.onRelease = function (){
loadMovie ("IMG_2812.jpg", _root.photo.empty)
}
They load fine using just the .swf file but when the .swf is loaded within another document it doesnt load the imgs.
How To Use External Button To Close External SWF?
Hi,
Basically I have a swf portfolio site. I have to load an external swf that's the same size as the main swf site, which means that the close button (for the external swf) needs to be on the external swf. I have the load and unload code on the main swf, but I'm getting a 1120 error - it's not recognizing the instance of the external button....and I don't see how it would recognize it, unless there was some other way of linking the files. Any help would be greatly appreciated. This has probably been discussed many times, so if there's any links to code, that would be very helpful.
Thanks!
btw - I'm fairly new to AS3 & AS2, but they're at least more fun than the Pascal & TSR-80 basic I remember from elementary & middle school...:0)
|