ActionScript 2.0 :: Loading Txt File And Scrolling Text
Nov 19, 2010Not sure what am doing wrong here: though i get compiling error's
[Code]....
Not sure what am doing wrong here: though i get compiling error's
[Code]....
I'm trying to do the tutorial on scrolling dynamicly loading text- easy enough...I don't have a scrollBar component in the UI's and when using the one from the open source tutroial it doesn't snap to/resize to text box.[code]
View 3 RepliesI'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 RepliesI'm working on an entirely flash-based site for a client who has already been using Blogspot for his News/Homepage updates. He wants to continue updating through Blogspot, but wants the blog to automatically fill in the text box on the flash site Homepage. I'm not sure if this is possible, or how I would go about doing it.
Here is the blogspot page: [URL]
Here is an example of what the scrolling SWF text box will be like: [URL]
I have used the Scrolling Dynamic Text Tutorial and it works great. I have a url in the file that I want people to click on to launch within the movie. My problem is I can not figure out the code to do this.
Action Script code
loadText = new loadVars();
loadText.load("league.txt");
[Code]....
I have used the Scrolling Dynamic Text Tutorial and it works great. I have a url in the file that I want people to click on to launch within the movie.[code]
View 10 RepliesI am trying to get a text file to display in a dynamic scrolling textbox as HTML. What do I need to put in my code so that the textbox displays it correctly and leaves out the HTML tags?
View 4 RepliesI am trying to make a scrolling banner like the html <marquee> tag that loads text from a .txt file. Here is what I have so far:
Frame1
Code:
var formatObj = new TextFormat();
formatObj.size = 15;
formatObj.color = 0;
formatObj.font = "Comic Sans MS";
[code].....
For some reason it only works by using the stop(); command. The problem is that this causes the animation not to automatically start when placed into an html page. The result I want is for the text to automatically begin to scroll.
I have an xml file loading text into a dynamic text field. What would the AS be to fade it in?
View 3 Repliesi am loading text to an text field from an xml file in which i am having superscript and subscript text. i enabled the html property for my Textfield. but still the text is displaying the in the textfield is normal like i am giving u example .its an mathematical expression;
if i write like this my_txt.htmlText = "x<sup>2</sup>";
it showing like x2 where as it has to show like x to the power of 2.so what should i do to display the text like this ...
I have a dynamic text box that is loading in a text file. It seems to be doing this perfectly well. However, some HTML tags seem to break it. <b> makes the text dissapear. I tried doing a <span> on it, and changing the font-family with CSS, but I dont think its reading the CSS at all.
[Code]...
Code:
var myTextLoader:URLLoader = new URLLoader();
myTextLoader.dataFormat=URLLoaderDataFormat.TEXT;
[code]......
When using the "Display data from an external file" tutorial from this site, I ran into a problem. It loads the text, but it only loads a certain number of characters... I am trying to load a few paragraphs of text but it stops loading halfway through the text file.Can someone please tell me how to get it to read the whole text file?I need it to read from a text file, so xml is out of the question. it must be editable by someone with no computer knowledge so I'm trying to make it as easy for them to change as possible.I am in a rush to fix this problem i'm having. I am searching, but hopefully someone will be able to give me a fix that will make it quicker.
View 1 Replieswhat 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 RepliesDoes anyone know if there is a way to load content from a .txt file to flash (NOT VARIABLES BUT THE WHOLE CONTENT AS TEXT).
View 3 Repliesfiguring out my problem other than my lack of knowledge in action scripting? My issue is I am trying to load a variable from a text file, I am able to load the variable with in the function but I cannot for the life of me figure out how to get it out of the function.
[Code]....
how can I load a text file in flash and at the same time load a css file
View 2 Repliesthe variables from the text file are loaded in swf and in dreamweaver the swf throws an error
Error: Error #2101: The String passed to URLVariables.decode() must be a URL-encoded query string containing name/value pairs.
at Error$/throwError()
at flash.net::URLVariables/decode()
at flash.net::URLVariables()
at flash.net::URLLoader/onComplete()
I understands this is because of flash player security and need to place crossdomain.xml file. but the my doubt is where to post my crossdomain.xml file in the local machine(to check the swf) and also in my website for the rest.
Which is a more easier/simpler/preferred/more control way of dynamically loading a text from a txt file?
1. Put a dynamic text Var as: text
PHP Code:
loadVariablesNum ("text.txt", 0);
2. A dynamic text instance as: text
PHP Code:
loadVariables("text.txt", _root.text);
I'm loading text dynamically from a .txt file ( the font is embeded, verdana 10px, and it is rendered as HTML ). The problem is the following: the HTML tags work quite well but with some exceptions. I can't use <b> <i> <u> ( and maybe other options either but these were the ones I was playing around with ).
View 2 RepliesI want to get some leaders name from text file as variables using URLLoader.load() the application is working fine while testing TestMovie from flash but it's not working in html page and throws the following error even i read articles about crossdomain policies.;[code]
View 2 RepliesI'm creating a flash portfolio, I have small image icons, each icon when clicked on loads a diff. swf file, image gallery that loads bigger external images. I would like a different external text file to load every time a diff. image gallery loads, for some reason I cant find the answer to my problem,
I would like to add some actionscrpt to each icon/button so it will load a new txt file when clicked on.
(each image icon is a button and has the instance name of icon 1, 2 etc.)
the code goes like this;
stop();
menuHolder.loadMovie("retail/photoViewer.swf")
loadMovie ("retail/photoViewer.swf", "_root.menuHolder");
[Code]....
I used a sample in loading text file from the flash samples. I wanted to load a .C file (turbo c file), which is editable and readable as text. While i have successfully done it, it only shows the loaded text in the .fla but not in .swf I am using flash 8 AS2
var my_lv:LoadVars = new LoadVars();
my_lv.onData = function(src:String) {
if (src == undefined) {
[Code]....
I'm trying to load a single string from a text file, but I can't seem to get it to work.Code (Placed On Top Level):
PHP Code:
var Items:Number = -1;
var variable:String ="test";
[code]....
Code:name=Kirupa Chinnathambi&email=blah@blah.com&location=EarthI've tried to make it neater by putting a few line breaks here and there. But it causes the movie to not work. So, is there any way to not write the text in an external file in one super long and disgusting line? It's quite hard to edit the text when you have many variables.Question 2How do you use the basic HTML text formatting functions in an external .TXT file? I'm talking about stuff like:
Code:
<br>, <p>, and etc...
code is working fine.[code]but I would like this to work without loading the TXT file...
View 2 RepliesI'm new to XML and am having trouble figuring out the following:
1. Loading an image from XML into flash, then resizing the image with actionscript in flash
2. The correct way to load text and URL links from an XML file
am trying to use this code to load a text file from a remote server to my textfield in flash. Here is my code:
Code:
var myTextField_txt:TextField = new TextField();
var myURLLoader:URLLoader = new URLLoader();
[code].....
I'm trying to turn caching off so when I reload the text file, it always gets a fresh copy. I keep getting compiler errors however with the useCache line. I'm not accessing the properties correctly or something. When I take out that line it works fine but always fetches the cached file.
My code is:
loadDoctorVariables();
function loadDoctorVariables() {
var requestJo:URLRequest = new URLRequest("
http://www.grxsolutions.com/gtslideshow3/"+doctorURL+".txt");
[Code]....