ActionScript 2.0 :: LoadVars() - Text File Loads Properly And Displays The Title Of The Mp3, But It Won't Play The Mp3?

Oct 22, 2005

I have on one file (player1.fla), a movie that plays MP3s from an array, which I specify in that movie. The code for that works just fine.I've duplicated the file and renamed it to a different one (player2.fla) so I could load the MP3s from a variable (array) on a text file. This way, to add more songs, all I would have to do is update the text file.

I changed the code around a tiny bit in the "player2.fla" file to accomodate for loading a text file, but nothing more.*My Problem* The text file loads properly and displays the Title of the mp3, but it won't play the mp3.The text file looks something like this: (just an example)

Code:
&songs=song1.mp3, song2.mp3, song3.mp3
&songTitles=my song1, my newer song, the third song

My script is very similar to this: (shortened; just an example)

Code:
lv = new LoadVars();
lv.onLoad = function() {[code]......

View 3 Replies


Similar Posts:


ActionScript 2.0 :: External Text Which Loads And Displays Normally Only When That Frame Is Loaded For First Time

Dec 28, 2006

i've got a problem. i have an external text which loads and displays normally only when that frame is loaded for first time. i'm using getDate because it changes every day. it's peculiar because all of other texts which are external also,always load just fine (first time and every time when return to previously visited frame).

View 6 Replies

ActionScript 2.0 :: Text Field On Frome 10 Which Displays Text From A Text File?

Nov 21, 2003

I have a problem with a dynamic text field. I have 1 text field on frome 10 which displays text from a text file. This text can change when a button is clicked. I have another text file on frame 20, which i want to display what ever text is in the text filed on frame 10.

I have tried:-
[AS]MyTextboxFrame20.text = MyTextboxFrame10.text;[/AS]
but it doesn't work.

View 3 Replies

ActionScript 2.0 :: Dynamic Text Field That Displays Text From An External File?

Feb 14, 2005

I have a dynamic text field that displays text from an external file. The text file has lists of text such as a1=(text here)&w1=(text here)& etcI want to be able to make a button so that will add one to the word count, such as, a button that says "Next" and when i do that, it loads the text string A2, when i click it again, it loads A3

View 1 Replies

Cs4 :: Can't Play An Fla File Properly In Timeline In Flash

Aug 3, 2009

I am having trouble with editing my flash template in flash cs4. When I try to play the fla file in the timeline it does not play everything in each layer. I have made no changes to the exisiting files in the template at all but there is only a partial background and some text playing.I have tried two other fla files from templates and they are the same.

View 1 Replies

ActionScript 3.0 :: Retrieve Title Name Of A Text File?

Aug 1, 2009

How would i retrieve the title name of a text file?

View 1 Replies

ActionScript 2.0 :: Loads In Links From An XML Into An Array And Displays?

Nov 16, 2005

I have a page that loads in links from an XML into an Array and displays them. When you rollover each link it is supposed to turn red. My problem is that I can only get it to make the last link to turn red. Also, when you rollover any other link the last one turns red. I need a way to set up a variable for each link. I have attached the files so you can see what I mean.

View 3 Replies

ActionScript 2.0 :: LoadVars Only Loads First Var?

Jan 16, 2008

i'm currently trying to make a "create you're own guy" type thing, i dont have any clothes right now i just have skin colour and eyes, but it works on frames, like if you have frame 1 of eyes you'll have asian looking eyes. etc.

my problem is that, it only loads the first variable from my php doccument, ive tested everything, and all, switching up my 2 variables, and when EYES comes first in the doccument only eyes load, and when SKIN comes first in the php doc only skin loads...

but anyways heres my code.

Code:
Var = new LoadVars();
Var.load("http://THISISMYSITE.com/site/phptest.php");
eyes.onEnterFrame = function() {

[Code]....

View 1 Replies

Actionscript 3.0 :: Loads And Displays A Random Photograph Each Time Someone Visits It

Jun 1, 2009

I'm trying to make a website which loads and displays a random photograph each time someone visits it. I already know how to preload a photo but in this case the photos are quite big, so I want to preload the RANDOM photo with the site at the beginning of the site loading process. A very simplistic approach is to make 20 or something versions of the site, each with a different photo but this would be very, er... simplistic. I usually have a site.swf, a preloader.swf which loads the site, and I use no frames in my site.swf.

View 7 Replies

Professional :: Editing A Flash File - Text Displays Correctly Before Edit - Not After

Jul 27, 2010

I'm edit a flash file that uses about 11 different fonts.  When I toss it into the editor and publish it some characters are missing from the product, such as W's and M's.  I've installed the fonts that were included with the flash file into windows7.

View 4 Replies

ActionScript 2.0 :: Caching HTML Text From A TXT File Using LoadVars?

Nov 21, 2010

I made a Flash-based "news section" for my website. This file uses a text field (with render-as HTML) and an instance name of dynamicText. The actionscript fills this text field with content from a TXT file called homeNews.txt.Everything works great, except if I make additions to the TXT file and re-upload to the server, the Flash file still calls an old version of the TXT file from my cache. This even happens after emptying the cache. This is a huge problem if I need to add daily updates. This problem only occurs on the server and not when testing locally.

Here is the code I put in my Flash file:

Code:
Ext_text = new LoadVars();
Ext_text.onLoad = addText;
Ext_text.load("homeNews.txt","POST");

[code]....

View 7 Replies

ActionScript 2.0 :: Using Loadvars To Load A Boolean Value From A Text File?

Jul 18, 2006

I am trying to control the visibility of a movie clip using a boolean variable contained within a text file.

The mc i want to make invisible is in a swf which is loaded into a 'master.swf' using a MovieClipLoader object.

I have managed to get text to display across various boxes in my loaded (child) MC using a loadvars obeject defined in the masterMC and used by the childMC. I just cant seem to be able to get the value of my Boolean variable to go with the text variables and therefore control the visibilty of my MC.

This is my code - (in the master movie):

var myLV:LoadVars = new LoadVars();
myLV.onLoad = function(success) {
if (success) {

[Code]....

View 2 Replies

ActionScript 2.0 :: Send A Negative Value To A Text File Using Loadvars()?

Apr 21, 2007

I'm trying to send a negative value to a text file using loadvars().

so i did this:

send_lv.xPos = currObj._x;

but if the _x is negative, the minus is replaced by '%2D' How do i send the minus sign??

View 2 Replies

ActionScript 2.0 :: Loadvars To Load External Text File Is Not Possible?

Sep 12, 2008

The code it concerns is this:

(which I found here on kirupa i belive)
myData = new LoadVars();
myData.onLoad = function() {

[code].....

View 3 Replies

ActionScript 2.0 :: Load A Variable From A Text File With LoadVars?

Nov 12, 2008

Im trying to load a variable from a text file with loadVars.The txt file has this -

Code:
num = 10
The flash looks like this

Code:
var load_lv = new LoadVars();
load_lv.load("tmbnum.txt");
load_lv.onLoad = loadTextVariables;[code]....

View 1 Replies

ActionScript 2.0 :: XML Gallery At The Moment Which Loads In Thumbnails And Displays The Larger Images When Clicked

Sep 8, 2008

I have a xml gallery at the moment which loads in thumbnails and displays the larger images when clicked. What I am having trouble with is that some of the thumbnails have their own multiple images (more than 1 image for that thumbnail). I want to have a numbered menu 1,2,3,4 and when I click on the thumbnail depending how many sub photos there are for that one thumbnail I want to display an that image. And just to be dificult I also am displaying the larger images in another swf on the same page using local connection.

View 1 Replies

Professional :: FLV To SWF To HTML - Loads The Background Color Of The Flash File But It Doesn't Play The FLV?

Nov 26, 2010

I made a 'movie' in Premiere and exported as FLV., Its suppose to be a banner on the top of a web page. The site was made with Dreamweaver. When played locally, the banner does great. When I put it on the server, thats a different story. I can tell thats something is there because it loads the background color of the flash file but it doesn't play the FLV.

View 1 Replies

ActionScript 2.0 :: Obtain The Variables/contents Of A Php Or A Text File From Server Using LoadVars()?

Mar 5, 2010

I am trying to obtain the variables/contents of a php or a text file from my server using loadVars(), and the problem is that flash can get data from almost every server but from mine. (some shared hosting service) I just tried the code provided in the help files:

Code:

var my_lv:LoadVars = new LoadVars();
my_lv.onLoad = function(success:Boolean) {
if (success) {

[code]....

I'm sure that I did no mistake in typing the URL, for it works fine in the browser (also no spaces, no freaky chars), and when i change the URL to another domain (and put the txt file on that server) everything works fine. I tried both possibilities "network access" and "local access" as well as running from an exe projector. But no chance.

View 4 Replies

ActionScript 2.0 :: Make A Text Box That Loads Text From A Text File?

Oct 22, 2007

I'm trying to make a text box that loads text from a text file. I've accomplished that, and now I want to have it so when I click a button is loads another var from the file by changing the end number. Here is my code:

myNotes = new LoadVars();
myNotes.onLoad = function() {
i =1 ;

[Code].....

View 5 Replies

ActionScript 2.0 :: Can't Get Flash To Show In A Dynamic Text Box Which Loads Text Via A Variable From A .txt File On A Server

May 18, 2005

i can't get flash to show, and in a dynamic text box which loads text via a variable from a .txt file on a server.

View 2 Replies

ActionScript 2.0 :: Dynamic Textfield That Loads Text From A Text File

Jul 24, 2006

I have a dynamic textfield that loads text from a txt file. The content of the txt file will be modified daily by the client.What i need is that if there is too much text in the txt file, the dynamic textfield resizes (and not only with autosize because the text can be really long).[code]it doesnt look very good but it works. The only problem is that if I have a really long text the maxsizeY doesnt work fine.

View 1 Replies

ActionScript 2.0 :: Apply Text Effect (including The Blinking Underscore) To A Text Field That Loads From An External .txt File?

Sep 23, 2004

Does anybody know how to apply this text effect [URL](including the blinking underscore) to a text field that loads from an external .txt file.

View 6 Replies

ActionScript 3.0 :: FireFox Displays "some" Flash File - IE Displays All

Feb 17, 2009

I've hit a brick wall here. I have a Flash file that displays fine in IE. It also displays fine when ran as a SWF. However, in FireFox, it does not display my scroller. I developed the Scroller component dynamically... everything is drawn from scratch, no library movieClips, etc. I'm starting to think that could be the cause? I've tried many different things:

[Code]...

View 5 Replies

ActionScript 3.0 :: FireFox Displays "some" Flash File But IE Displays All

Feb 15, 2009

I've hit a brick wall here. I have a Flash file that displays fine in IE. It also displays fine when ran as a SWF. However, in FireFox, it does not display my scroller. I developed the Scroller component dynamically... everything is drawn from scratch, no library movieClips, etc. I'm starting to think that could be the cause? I've tried many different things: Changed the HTML code to bare bones embedding code.Recompiled in Flex.... same result!Tested on another computer... it worked fine! However, I tested on another computer with FireFox... same problem.

It's so weird.I seperated the Image Slide show component from the Scroller... the scroller had the same effect... didn't display in FF.Played around with WmodeChecked my code for addChild problems, visibilty, alpha properties... nothing out of the ordinary.Asked God.Drank some Gin.Took a break and came back to it.I've reseached Google and the most I could come up with is to compile using FP10. It is FP10. I'm using CS3 and FlashDevelop. When I right click on my Flash file, it does indeed display FP10. Same with Flex.

[Code]...

View 6 Replies

Data Integration :: XML Loads Properly In .SWF But Not In .AS

Aug 23, 2006

I have the following script which works jim-dandy when implimented as a frame script in my .swf, but I don't want it there, I want it in a class I've created called FigureItem. I've stripped the script down to just the part that loads the XML. When the script is inside the .swf (without the class constructor, obviously) 'trace(contentXML)' correctly returns the formatted XML. Inside the .as file, 'trace(contentXML)' returns 'undefined'. SOMETHING is loading becase 'trace("yay")' returns 'yay'. (loadXML gets called by the FiguireItem movie clip inside the .swf).

View 3 Replies

IDE :: Loads Text And Images Dynamically From Xml File?

Feb 27, 2009

I am pretty new to xml (and understand just a little actionscript 2.0) I have a functioning flash file that loads text and images dynamically from my xml file. Everything is working fine, but I was wondering if there is a quick code to change the image size when they are loaded into my empty mc?

Here is the code I have so far (real basic):

[Code]...

View 2 Replies

Flash :: Loads External Images And Text Using An Xml File?

Nov 3, 2009

I'm working with a flash template that loads external images and text using an xml file. Everything works well the only problem is I've promised a client that as well as a "title" and "description" I will also include a clickable URL link. I can edit the flash to a certain extent but I am having a nightmare of a time including a clickable url. Is there anyone out there who can help? "photo_description", "photo_title" and "photo_url" are the names of the dynamic text fields.
 
XML snippet looks a little like this...
<title>Title</title>
<description>Description</description>[code].....

View 3 Replies

Flash :: Professional - Xml Website Not Downloading Properly And Loads 1 Minute In

Jun 28, 2010

Does anyone know why my flash site displays a white screen before the loader actually works?  It kind of defeats the purpose of having a loader.  I'm not familiar with xml either so could this be an issue?  My swf file is only 2.2 MB

View 7 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

ActionScript 2.0 :: When The Xml Menu Loads Swf File Its Structure Loads But Not Its Data?

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=""mouse_rollover_color="0xFFFFFF" mouse_rollout_color="0xDDDDDD" />

and I have this swf file with cms that I'd like for this menu to load. Currently the swf file load external text using this code:

Code:
if (contenturl1 ne "") {
loadVariablesNum(contenturl1 + "/" + userid + "/content.txt", 0);[code].....

but when the xml menu loads this swf file its structure loads but not its data.I tried using :

Code:
this._lockroot = true;

in the loading swf main time line but it did not work.I should also mention that the dynamic data that loads onto the swf that is to be loaded by the menu, resides not in it main time line but 4 movie clips deep .I don't know if that makes a difference or not.

View 1 Replies







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