ActionScript 1/2 :: GetURL From An External Text File?
Aug 7, 2009At the end of the flash movie I want it to getURL from an external text file.Is it kinda like the way you do it with a button?
View 3 RepliesAt the end of the flash movie I want it to getURL from an external text file.Is it kinda like the way you do it with a button?
View 3 RepliesI'm stuck with defining a getURL function while loading an external XML file.
I have a Flash AS2.0 file and I've made it CMS driven. The content for everything in the SWF file is loaded from an XML file which resides on the same server. I've defined all other XML variables and I'm able to successfully parse them inside a holder MC I have in my Flash file. Some of the many variables I have are name, caption, thumbnail img, large img, etc... I've also defined the XML file with a 'Link' that points to a URL relative to each image it loads.
I'm unable to define the function in Flash to retrieve the URL from 'Link' parsing value stored in my XML file.
I tried defining a function called getLink in actions layer of my Flash file:
getLink = function () {
getURL('Link[ID]','_blank');
};
The ID is loaded in the beginning of the Flash file - based on the number of values available in XML file. All other functions work, except this getURL function.
I need to have a button load it's GetURL() deal from an external file. XML? Txt?
View 2 RepliesHow can I replace text loaded from an external file with text from another external file? Using setInterval and calling the .load from a function or something? In the example below I'm calling an external text file, could this also work with an .xml file with cycling through the children?
[Code]...
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]...
I'm loading a external text file to flash and according to the number present in the text file i'm trying to do a IF - ELSE command. It's not working coz the value I load from the external file is string. How can i get this as intiger.
View 2 RepliesStructure: 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 Repliesi have banner with 5 images fad in fade out effecti need to load images & test from external file " text file or xml file " with keeping fade effects on imagesall ways i know can't keep fading effect on images so
View 4 RepliesI turn to you for help, dear sweet Kirupa Forumites. First, let me explain the problem: I have a flash file reading an external text file for the content. Everything works perfectly for nearly everyone - you click a menu button, and the content text comes up fine. However, a couple of people have found that the text shows up as "undefined". I have checked the player versions of the people where it doesn't work, and it is the same as for those where it does work, so that ain't the problem.
I don't understand why it works perfectly for nearly everyone, but a small number of people have this "undefined" text problem. It seems to be a problem with loading the external text file, but I don't know why. I have a main flash movie, and load the text in the first frame, using the following:
var my_content = new LoadVars();
my_content.load("content.txt");
my_content.onLoad = function(success){
if (success){
[Code]...
I then have a couple of dynamic text boxes in the main movie - one called ErrorText (for displaying an error message to the user) and one called ContentText (for displaying the content). I use an external menu swf which jumps to a specific frame in the main movie, depending on which button is clicked. Actionscript on the main movie frame for the first button does the following, with the other frames similarly configured:
ContentText.htmlText = my_content.content1;
stop();
My external text file is properly configured (content1=blah blah&content2=other blah blah) etc.
Does anyone have any advice on how I can solve this particular weird problem??
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 RepliesI like to know an easy way to create a text autoscroll (vertical) that worked when the text was loaded from another text file. it can use for news/site update. see the attachment.
View 14 RepliesI cant load and external text file into my dynamic text box...when i trace the loaded var it can be found, but when it's loaded inside the text box, the value that appears is really strange.i tried to load the vars into the MC and on a level, the result is the same, it can be traced but does not appear correctly on the textbox..the code i used is here..i made a text box with about_us instance name, loaded the variables and tried to load my text inside it by setting the text property of the textbox but as u will see...
loadVariables("about.txt", "this");
about_us.text = about;
hi, i'm trying to display text from a textfile in a dynamic textfield, i have a text file called "quotes.txt" wich has variables set like this:
q0=text&q1=text2&q3=text3 etc.
so how can i pick these q's at random and place it in my textbox?i've tried this:
loadText = new loadVars();
loadText.load("quotes.txt");
quotes="q"+Math.round(random(10))
loadText.onLoad = function() {
tester.text = this.quotes;
i thought i could replace the direct reference to q0 or q1 etc into a variable "qoutes", so how can i do this so it does work?
I have an application that combines words introduced by the user to create new words. I would like to be able to save the resulting combinations into an external txt file.
View 2 RepliesDoes 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 RepliesI have a swf (a.swf), which loads another swf (b.swf) into it.b.swf then has a getURL call in it.
Code:
on (release) {
getURL ("http://www.google.com/", "_blank");
[code]......
I have a simple getURL below and have been looking around for a way to #1 - set a time a time delay#2 - call an external js function#3 - load my page
butMov.onRelease = function () {
getURL("http://www.mysite.com"+myURL);
}
So we have some web-based training that we are making. Using CS4 to publish to Flash 7 and then the page is running in IE 6. (Got to love them corporate policies!) We have some resource documents for the users to download. Usually we make them pdfs and use getURL() and the files work just fine. However, this time we have a file that we want to keep as a .doc type. The code is:
[Code]...
If I write a bunch of functions in a js file and host it on [URL], how can I use getURL() to make whoever sees my flash on the same host to execute the js file?
View 2 RepliesIs it possible to execute *.bat file using getURL? Like example something like: getURL(file_for_running_the_other_funcions.bat); or do you know some ways to run the bat file instead of that?
View 0 RepliesI used getURL like this to download a .doc file, in Firefox it's oke but in IE it's doesn't work.
Code:
on(release){
getURL("[URL]", "_blank");
}
I am working in Flash CS4 (AS3).What I have created is basically a simple photo gallery. About 5 thumbs that when rolled over a larger version appears. Both the thumbnail images and larger images are loading dynamically.I've got that working.What it's missing is a headline and a sub headline for each pic that comes up. I need to do this from an external text file.
I was able to do this with AS2.AS3 not so much. How do I control the content of multiple dynamic text boxes on different places throughout the timeline with an external text file in AS3? I just want to name different text boxes different names and have the external text file pass the variables into my swf for each text box.
I'm making a flash movie that contains about 50 buttons. at the moment, i've got each button's action set to:
on (release) {
gotoAndPlay("lots", 1);
title = "LOT No. 13";
[code]....
I'm sure this is an easy fix but for some reason I cannot get the text field to accept HTML coding when I'm loading the text in. I have the Render Text as HTML (<>) button checked but still nothing happens. Here's the code I'm using:
Code:
var externalData:LoadVars = new LoadVars();
externalData.onLoad = function() {
[code]....
Trying to set up a getURL to link to a local htm file, NOT a page on the internet. All the tutorials I have read tell me how to link to a file on the internet I'm trying to set up an intranet site for my training college where students can access training resources etc on the local network. Therefore my getURL needs to point to a local file, not one on the internet. I'm trying to link to a .htm file that resides on my computer. Does the htm file have to be in the same folder as the .fla file?? How do I do this?? I'm working on a Mac, Os X, MX 2004, if that makes any difference.
View 1 RepliesI have an XML driven Mp3 player with a "download" button that appears when song is highlighted. I just need to call the text from xml and add it to the URL: See sample of player
this adds the name of the mp3 to the end of the url but I need it to add text from a child in the xml called "siteurl" instead.
ActionScript Code:
on (release) {
getURL("http://www.bytecommerce.com/" + path, "_blank");
}
[Code].....
what ultimately I want is to click a button and text will be displayed in the text field loaded from an external .txt fileI've adapted some code i found online:
var myTextLoader:URLLoader = new URLLoader();
var myTextField_txt:TextField= new TextField();
myTextLoader.addEventListener(Event.COMPLETE, onLoaded);
[code].....
I've got a problem loading an external text file into a text field.The text field is named: myTextField_txt.It's Dynamic and multiline. I want it to load a text file called: myText. txt. It's in the same folder as the flash file.This is the code I currently have on my text fields key frame:[code]After moving some code around I managed to stop any error messages. But the text will not show up in the text field.
View 4 RepliesI made a scrollbar in action script §3 all from scratch and loaded an external text file edited in text Wrangler to display in the field, and sudden all my HTMl tags are not responding though added htmText to it. Well, the only tag responding is the link tag, the rest no, like bold, or italic or colors.
View 1 RepliesDoes AS3 write to an external text file? If so, how?
View 8 Replies