Put Image In A Text Box
Hello everyone
~.~ I'm having difficulties with the code. I am trying to put images in a text box but nothing comes on my screen when I test the movie. I don't understand what I've done wrong.
There's the following code:
onClipEvent (load) {
daTextBox = "<P ALIGN="something"><FONT FACE="something" SIZE="something" COLOR="#something"></font></P>";
scrolling = 0;
frameCounter = 1;
speedFactor = 3;
}
onClipEvent (enterFrame) {
if (frameCounter%speedFactor == 0) {
if (scrolling == "up" && daTextBox.scroll>1) {
daTextBox.scroll--;
} else if (scrolling == "down" && daTextBox.scroll<daTextBox.maxscroll) {
daTextBox.scroll++;
}
frameCounter = 0;
}
frameCounter++;
}
I would really appreciate if anyone can help me with this.
Thanks ^^*
[Edited by adior on 09-15-2002 at 02:07 AM]
FlashKit > Flash Help > Flash MX
Posted on: 09-14-2002, 10:40 PM
View Complete Forum Thread with Replies
Sponsored Links:
I Need To Load A Image(jpg) Into Flash With A Text File With The Url For The Image
As the name says it all.
I need to add some AS in my flash site, so that the image (banner) is dynamic, meaning when I want to make a change to it, or make it look different, i dont want to go into flash to do it. So I want it so that when I change the jpg itself it changes inside of flash.
I would like flash to look up a txt file I give it, and inside the txt file it will have a URL to which jpg to load up in the movieclip.
If not this way, another similar way would be great
Thanks!
View Replies !
View Related
How To Stop Text Floating To Right Side Of An Image Inside A Dynamic Text Field
Hi
I have dynamic text field that loads in a txt file containing
html formatted text including an embedded image.
When I test the movie the text that should appear bellow
the image, instead, runs down the right side of the image.
I have tried adding various html attributes including -
Code:
<br clear="all"><img src="image.gif" /><br >
I have also tried attaching a style sheet and appying the
following class -
Code:
img.allClear {
clear: all;
}
and also redefining the image tag -
Code:
img {
clear: all;
}
None of witch have worked.
Can someone help with this please.
Regards Mydogmax
View Replies !
View Related
How To Load A Clip Or Image With Text In Dynamic Text Box
Hi guys,
Please help me!
I need text to be displayed with some movie clips or smileys with it in dynamic text box. Like the below
hi how are you?
but when i tried to do this i am getting some thing like this
hi how are you?
it is registering with left or right only. how to rectify it? I am using html output for attaching the clip with text for output.
using flash8 and actionscript 2.0
thanks in advance.
View Replies !
View Related
How To Load A Clip Or Image With Text In Dynamic Text Box With
Hi guys,
Please help me!
I need text to be displayed with some movie clips or smileys with it in dynamic text box. Like the below
hi how are you?
but when i tried to do this i am getting some thing like this
hi how are you?
it is registering with left or right only. how to rectify it? I am using html output for attaching the clip with text for output
thanks in advance.
View Replies !
View Related
Image Gallery With Text - Text Problem
The fllowing AS is for an image gallery and works well except.....
on loading the first image the image name and number do not show up.
Upon advanceing to the next image all the text shows, and if after advanceing you go back to the first image then the text of the first image will show.
What do I need to correct to fix this?
Thanks
-----------------------------
text01.text = "Loading...";
my_xml = new XML();
my_xml.ignoreWhite = true;
my_xml.load("gallery101.xml");
my_xml.onLoad = function(status)
{
if (status)
{
text_xml = this.firstChild.firstChild.childNodes;
createEmptyMovieClip("mc", 1);
loadMovie(text_xml[0].attributes.source, "mc");
stageWidth = 800;
stageHeight = 600;
setPicture(mc);
}
};
next.onRelease = function()
{
// Next image
if (image < text_xml.length - 1)
{
image++;
loadMovie(text_xml[image].attributes.source, "mc");
count.text = text_xml[image].attributes.count;
text01.text = text_xml[image].attributes.text01;
setPicture(mc);
}
else if (image == text_xml.length - 1)
{
image = 0;
loadMovie(text_xml[image].attributes.source, "mc");
count.text = text_xml[image].attributes.count;
text01.text = text_xml[image].attributes.text01;
setPicture(mc);
}
};
previous.onRelease = function()
{
// Previous image
if (image > 0)
{
image--;
loadMovie(text_xml[image].attributes.source, "mc");
count.text = text_xml[image].attributes.count;
text01.text = text_xml[image].attributes.text01;
setPicture(mc);
}
else if (image == 0)
{
image = text_xml.length - 1;
loadMovie(text_xml[image].attributes.source, "mc");
count.text = text_xml[image].attributes.count;
text01.text = text_xml[image].attributes.text01;
}
};
function setPicture(theMC)
{
this.onEnterFrame = function()
{
if (mc._width > 0)
{
mcWidth = mc._width;
mcHeight = mc._height;
mc._x = (stageWidth - mcWidth) / 2;
mc._y = (stageHeight - mcHeight) / 2;
// Text field with picture name
count.text = text_xml[image].attributes.count;
text01.text = text_xml[image].attributes.text01;
}
};
}
------------------
XML is as follows:
------------------
<slides>
<slideshow>
<image count="01" text01="CHRIS ROCK" source="cd-01/001.jpg"></image>
View Replies !
View Related
Image Gallery With Text - Text Problem
The following script works except for one thing....
when the first image comes up the first image name does not.
but if you advance to the next image the second image name comes up no problem.
if you select previous image then the first image name comes up.
Any help to fix this would save me another day of aggrevation.
thanks.
--------------------------------------------------
ActionScript Code:
text01.text = "Loading...";
my_xml = new XML();
my_xml.ignoreWhite = true;
my_xml.load("gallery101.xml");
my_xml.onLoad = function(status)
{
if (status)
{
text_xml = this.firstChild.firstChild.childNodes;
// Create New Movie Clip
createEmptyMovieClip("mc", 1);
// Load picture into new MC
loadMovie(text_xml[0].attributes.source, "mc");
// Positioning
stageWidth = 800;
stageHeight = 600;
setPicture(mc);
}
};
next.onRelease = function()
{
// Next image
if (image < text_xml.length - 1)
{
image++;
loadMovie(text_xml[image].attributes.source, "mc");
count.text = text_xml[image].attributes.count;
text01.text = text_xml[image].attributes.text01;
setPicture(mc);
}
else if (image == text_xml.length - 1)
{
image = 0;
loadMovie(text_xml[image].attributes.source, "mc");
count.text = text_xml[image].attributes.count;
text01.text = text_xml[image].attributes.text01;
setPicture(mc);
}
};
previous.onRelease = function()
{
// Previous image
if (image > 0)
{
image--;
loadMovie(text_xml[image].attributes.source, "mc");
count.text = text_xml[image].attributes.count;
text01.text = text_xml[image].attributes.text01;
setPicture(mc);
}
else if (image == 0)
{
image = text_xml.length - 1;
loadMovie(text_xml[image].attributes.source, "mc");
count.text = text_xml[image].attributes.count;
text01.text = text_xml[image].attributes.text01;
}
};
function setPicture(theMC)
{
this.onEnterFrame = function()
{
if (mc._width > 0)
{
mcWidth = mc._width;
mcHeight = mc._height;
mc._x = (stageWidth - mcWidth) / 2;
mc._y = (stageHeight - mcHeight) / 2;
// Text field with picture name
count.text = text_xml[image].attributes.count;
text01.text = text_xml[image].attributes.text01;
}
};
}
View Replies !
View Related
Flowing Text Around Image In Text Field
I have a text field set to render HTML. In there I have an image tag that
shows a graph. It works great except the text that follows the image always
appears to the right of the image, as opposed to appearing under it like I
want. I have tried adding <br> tags, starting a new paragraph, putting
hspace around the image, making it bigger, etc. Nothing I do seems to work.
Anyone know the proper way here?
--
Dave -
Head Developer
www.blurredistinction.com
Adobe Community Expert
http://www.adobe.com/communities/experts/
View Replies !
View Related
Loading Text And Image From Text File?
Hi there... This is probably a really dumb question so dont laugh.
I've created a dynamic text box within my flash file which loads an external text file. In this text file, I thought maybe I could use html like <img src="myimage.jpg"> to load an image along with text i have in this file. Obviously it doesnt work like that....so is there another way I can do this? I wanted to do it this way so that anyone who knows just a tad bit of html can edit this text file without touching the flash file.
thanks for your help!!
View Replies !
View Related
Loading Text And Image From Text File?
Hi there... This is probably a really dumb question so dont laugh.
I've created a dynamic text box within my flash file which loads an external text file. In this text file, I thought maybe I could use html like <img src="myimage.jpg"> to load an image along with text i have in this file. Obviously it doesnt work like that....so is there another way I can do this? I wanted to do it this way so that anyone who knows just a tad bit of html can edit this text file without touching the flash file.
thanks for your help!!
View Replies !
View Related
To Show Both Image & Text In A Dynamic Text Box
Hi
I have a database(access) which contains both image and text mixed with each other. How can i show both text and image together in the browser. I tried it by using Dynamic text box But was in vain.
any other way to do it.
CAN ANY ONE HELP ME
ANY HELP WOULD BE APPRECIATED
Thanks in advance
Yaniv
View Replies !
View Related
Image+text Scroller, Form Scroller, And Loading External Text Files - Urgent
Hi everybody!
Does anybody know how to do the following things in Flash MX?
1.Make a scroller with text + images in it;
2.Make a scroller with text + a form in it;
3.I followed the tutorial entitled "Scrolling Dynamically Loaded Text", but the text that I tried to load has over 160 lines, and I can only scroll down to about half way of the total lines. Why is that?
4.I also tried to load xml files using the code <?xml version="1.0" encoding="utf-8"?> on the first line of each xml file, but the ', &, and " " don't work.
Can anybody help me, please? This is urgent!
Thanks in advance!
animind
View Replies !
View Related
Image+text Scroller, Form Scroller, And Loading External Text Files - Urgent
Hi everybody!
Does anybody know how to do the following things in Flash MX?
1.Make a scroller with text + images in it;
2.Make a scroller with text + a form in it;
3.I followed the tutorial entitled "Scrolling Dynamically Loaded Text", but the text that I tried to load has over 160 lines, and I can only scroll down to about half way of the total lines. Why is that?
4.I also tried to load xml files using the code <?xml version="1.0" encoding="utf-8"?> on the first line of each xml file, but the ', &, and " " don't work.
Can anybody help me, please? This is urgent!
Thanks in advance!
animind
View Replies !
View Related
Load Variables From Text Then Loading Image File With The Filename Given In Text File
The problem is, that i need flash to load variable from text file, eg: info.txt, with image=gt.jpg in it.
Then I want flash movie to load a gt.jpg into a blank movie.
The point is that after i change filename in txt file, i want movie to load that img.
I wrote AS:
loadVariablesNum("info.txt", 0);
loadMovieNum(image, 0);
but it's not working
After i traced variable image, debugger showed that this variable undefined, but if i put textbox with image as variable, it shows "gt.jpg".
Please help
View Replies !
View Related
Image In Text Box
hi,
I have a strange situation where in I need to display small icons inbetween the text that appears in the dynamic html text box. now this text is being read from an external XML file on click of a button ... or simply put it is an glossary of words where the meaning is stored in a external XML file... now there is a need to display small images and make the words inside the text box clickable... any ideas on how it should be done.... i thought scroll pane wouldnt be a bad idea ... but then need your suggestions
please... its urgent
regards
venkat
View Replies !
View Related
Text Over An Image
I need to load a JPG and add text on top of it. I've successfully loaded the JPG, but can't figure out how to get "Hello World" to display over the image.
Any help is greatly appreciated.
My code (thus far):
----------------------------------
var imagePath = "file://c:/photo2.jpg";
_root.createEmptyMovieClip("image_mc",1);
image_mc.loadMovie(imagePath);
image_mc._x = 1;
image_mc._y = 1;
----------------------------------
-Brad
View Replies !
View Related
Text And Image
How can i display a random text with image?
I've used this for the text:
PHP Code:
displaybox = eval("string" + (Math.floor(Math.random()*20)+1));
string1 = "<b>txt txt txt txt txt </b>";
string2 = "<b>more txt more txt</b>";
But how can i include an image?
displaybox is a dynamic textbox, render as html, mulitline
This doesn't work:
PHP Code:
string1 = "<b>txt txt txt txt txt </b><img src='image.jpg'>";
View Replies !
View Related
Image And Text
Hi,
I would like to create a flash script that provide to have some text (that I take by php) mixed with a image. Every five minutes the text stops and let the image appear for 15 seconds, and the restart the text passages; every five minutes should be repeted the same things. I maneged to create the text in flash and see it for five second with a timer (I wrote the script on the bottom of the page) but i can't manage to make the image appear....How can I do it? It's better to use other two timer or a cyclic one, for example for (;???
Thank you
var delay:int;
delay =5000;
var url:String=new String();
url="http://192.168.1.8/index.php?random=" ;
var stringa:String = new String();
stringa="Testo";
var timer:Timer= new Timer(delay,0);
box_text.text=stringa;
timer.start();
timer.addEventListener(TimerEvent.TIMER, showText);
function showText(evt:TimerEvent):void {
var Request:URLRequest = new URLRequest(url + Math.random( ));
Request.method = URLRequestMethod.GET;
var loader:URLLoader = new URLLoader();
loader.dataFormat = URLLoaderDataFormat.VARIABLES;
loader.addEventListener(Event.COMPLETE, completeHandler);
loader.load(Request);
}
function completeHandler(evt:Event) {
stringa = evt.target.data.stringa;
box_text.htmlText = stringa;
return;
}
View Replies !
View Related
TEXT To IMAGE
Hi,
does anybody know how to trnsform a text like 'SQUARE' into a square-shape...?
I do know how i transform a bowl into a square and stuff like that,
but how do i do the same with text into a shape, or other image..?
thanks in advance
View Replies !
View Related
Text Box And Image
Hi everyone here,
I'm really sorry to trouble all of you here once again.
I have a question here.
Is it possible to show an image on the stage when the user has typed in certain words in the input textbox field?
I need this for the quiz, when students entered an answer, the 'correct' or 'wrong' image will be shown.
Thank you very much.
FiOh
View Replies !
View Related
Image And Text
I need to have a dynamic text field, with an image in the upper left, and the text wrapping around that image.
I know how to do this with Gen2, but I need to have the text aliased, so I am thinking MX...
I know how to do this in HTML, but this is Flash...
I can do the scrolling dynamic text field, but how do I put an image in there, and have the text wrap around it...
Thanks in advance,
Rev
View Replies !
View Related
Bg Image For Text Area
is there a way to set a bg image for a text area in MX pro?
I have tried css:
body
{
background-image:
url("image.jpg")
}
But it didnt work.
By the ways i'm linking xml docs into the text area.
Thanks
View Replies !
View Related
Dynamic Text Run Around Image
I'm using dynamic text and images in my web site. When desplayed I like the whole atrical to be organized when text is runing around images in the same line (like in newspapers)
Is there's any way to "float" images inside dynamic text (like a .float : left in CSS)
View Replies !
View Related
Text In Image Crap...
Hi flash folks,
I've imported a png24 background Image with text on it.
While I'm working in flash, the Image looks crisp.
When I view the movie the text looks crap but everything else looks crisp.
I've tried every setting in the png tab settings and nothing seems to work...
Please someone helpppppp...
Thanks to you all...
Ivorsmallun...
View Replies !
View Related
Using Same Image With Different Text And Sound
Hi all,
I'm trying to do an application with flash for learning 2 or 3 languages at the same time. every page can have several small images with text and pronounciation of the word(image). Having a language menu, which loading the text and the sound(maybe external data) for that language.
Plz, how can I do that?
......thanks
View Replies !
View Related
Image And Text Wiping
I have seen this done time and time again and have never seen a tutorial that can help me.....I uderstand how to do text shines and so on..but the way that boxes images and even text can be wiped across a screen, it confuses me a little..would anyone out there be willing to point me in the right direction of learning this neat little trick.
p.s.
herez a little example frm FWA
http://www.dropstars.com/
View Replies !
View Related
Image & Text Scroll
Hey looking for a tutorial (or fla file) on how to make a scroll pane that essentially scrolls a movieclip with images and words for flash MX. I seem to only find ones for flash 8. any help would be appreciated.
thanks
View Replies !
View Related
Scrolling Text Over An Image
I need to make a flash animation similar to the java thing (the scrolling text that says "December 1, 2006 Bring on the snow") on this website: http://www.ruskcounty.org/snowmobile/
It needs to be linked to a txt file that can be edited - which have figured out how to do, but I don't know how to make it scroll. Can someone please tell me how, or point me to a tutorial on how to do this?
Thanks!
View Replies !
View Related
Image And Text Placeholders
Hello,
I am creating a web-page for a photographer and I am trying to make it so it is easy for him to update (and not come back to me to just add a photograph and caption etc...) so, I am going to use a Flash front-end with an XML database listing all his images and captions.
Apart from the XML parsing issues that I am working around (does anyone have a good and basic tutorial on parsing XML data; text for example, into flash), does anyone know if in Flash you can have placeholders (say a solid rectangle or a framed square) on the stage where the images and text captions from the XML database are loaded into (all the images and captions are going to be the same dimensions etc...)? I came from a Macromedia Director background and this is a very very simple thing to accomplish using a blank image placeholder and Lingo script but doesn't seem as simple from a Flash point-of-view.
What I have seen so far is that when the dynamic image gets loaded onto the stage when viewing it, it puts it in the top left corner and this isn't going to work unfortunately. I would like to have the site designed with the exact places the images and captions would be in and then call them from the XML.
Thanks
View Replies !
View Related
How To Put Image Into Dynamic Text Box?
I created a dynamic text box for my website, i thought the image will appear to follow when i scroll down, but it didnt happen as it stays in the background. How do i link them together so when i scroll the image follows the text?
or is there a better way of doing it ?
View Replies !
View Related
Image Into Text Field.
I'm loading an image into a text field. Everything works great, just one question. Why do my images get inserted like 4-5 px from the text field's origin ? I mean, if you add some text ( you start writing ) , the text shows form the beginning of the TF... but whenever I insert an image it is always nudged a few pixels... can that be corrected ?
View Replies !
View Related
Text On Image Slideshow
ok i have another question:
i have like a slide show of images now from a tutorial i used.
if i want text to overlay each image and not fade in or out (like the images do) how do i do this?
again thanks in advance.
View Replies !
View Related
Image In Dynamic Text?
Im trying to insert 1 image under a paragraph within a dynamic text box. The text scrolls and the boxes are set to "render text as html" and "selectable".
I place the following code inside the text box and the code just displays.
Code:
<img src="images/graph.jpg" width="194" height="300" />
What am I doing wrong?
I typed all the text that is currently inside the dynamic text field. I am not pulling anything from an outside source (e.g. and XML file or .txt file)
Im also typing the html code directly in the dynamic text box as well.
I am very new at this and I have hit a wall attempting to get this to work.
Any suggestions of fixes would be so appreciated.
Thanks
View Replies !
View Related
[CS3] Image In Dynamic Text Box
Im trying to insert 1 image under a paragraph within a dynamic text box. The text scrolls and the boxes are set to "render text as html" and "selectable".
I place the following code inside the text box and the code just displays.
Code:
<img src="images/graph.jpg" width="194" height="300" />
What am I doing wrong?
I typed all the text that is currently inside the dynamic text field. I am not pulling anything from an outside source (e.g. and XML file or .txt file)
Im also typing the html code directly in the dynamic text box as well.
I am very new at this and I have hit a wall attempting to get this to work.
Any suggestions of fixes would be so appreciated.
Thanks
View Replies !
View Related
Text Not Starting Below Image
I'm having a problem with an image loaded into a dynamic text box. It embeds into the box fine, but there is then text below it that doesn't start below the image, it runs along the side of the image.
Is there a way to force the text to start where the image file ends?
You can see what's happening in this example image
I need the "Posted by..." part to start right below the image, but I can't figure it out. Are there some alignment tags that I'm missing?
View Replies !
View Related
Scroll Image Together With Text
Hi all..
i would like to noe how do i make the text together with some images to scroll...?
( like the typical HTML content)
i know how to get the text scrolling..but how do i ADD the images together with the text to scroll as well?
how do i possibly add the images and graphic into the text box?
i'm still very much a newbie..
and pretty much an admature with text xcrolling as well..
please advice on the steps to follow..!!!
i'm using flash 5..
pls help..!!!..it's urgent!!..
any advice is much appreciated..
thank you in advance.>!!
View Replies !
View Related
Startdrag On An Image And Text...
I've built a game system where the player travels between nodes- each node loads a new screen- the new screen has two areas filled with various icons. The player drags (startDrag) the icons from one bin to the other, then travels to a new node.
I want to display some text on the icons with dynamic information based on thier home node. I know how to get this information... What I don't know how to do is draw it in such a way as it is "associated" with the icon and will move around with it.
Any suggestions? I basically need the text to act like it is "baked in" to the movieclip.
Thanks,
T
View Replies !
View Related
Alt Text Or Image For No Flash
Hi, I'm trying to find a way to place alt text or an alternative image on an html page in place of a Flash movie if the user's browser does not have Flash player. I've seen in MX that you can publish to detect for Flash Player and then replace the movie with an image using javascript, but I am looking for a simpler and more effective solution.
I have a company logo that is animated on a page. If the user doesn't have Flash player, the name of the company will not be seen. Is it possible to place an alt text tag somewhere in the HTML or in the publishing process?
Thanks in advance for any help.
View Replies !
View Related
Import Image Into A Text Box
Is it possible to have a dynamic text box that can load an image? For example I would like to do something like this:
[img here] This is the text for a hyperlink
Basically I would like to have a small image loaded next to the hyperlink and if possible make the img part of the hyperlink.
View Replies !
View Related
Intersecting Text And Image
I am trying to put an text on an image (both have the same color) and the intersection should be white.
It works fine with blend mode "invert" when both are black. But as soon as they have another color all the blend modes give an unwanted color in the intersection.
My idea would be to blend the two black objects first and then set the color for the combined image, but I dont know how.
View Replies !
View Related
Image In Scrolling Text Box? How?
Hey,
Im having a lot of trouble finding out how to not only have text in a scrolling box, but also an image...
Id imagine I wouldnt be able to use a dynamic text field as Ive already tried a couple different ways to incorporate a picture and it never worked.. Saying something about lack of a Generator..
Anyways.. If someone knows how to add a picture to a scrolling tect field, Id would much appriciate it.
To see what kind of 'Scrolling Text Field' im talking about, Im using one like in this tutorial: <a href="http://www.actionscripts.org/tutorials/intermediate/scrolling_a_text_box/index.shtml">Scrolling a text box</a>
Thanks!
View Replies !
View Related
XML Image/text Loading
hi there,
im working on an XML based image/text loading movie based on the tutorial on this site. things are working great, but im having a little trouble with two things. i should probably put the XML file here to put things in context.
now if you look below, there are a bunch of group nodes, with description nodes nestled inside. i want to be able to read any existing description values into an array, but i can only seem to extract the value for the first description tag with a literal
itemDesc[i] = xmlNode.childNodes[i].childNodes[0].firstChild.nodeValue;
anyone tell me how to get it from how ever many description nodes there are in the doc?
#2. I want to extract the values from the image tags only within whatever group is loaded at the time, into a single array. anyone know how to do this?
this targeting stuff is so confusing.
thanks in advance! tom
--
XML file:
<images>
<group name="item 1" id="0">
<description>this is the description for 1</description> // this one
<image id="0">images/image_1.jpg</image>
<image id="1">images/image_2.jpg</image>
</group>
<group name="item 2" id="1">
<description>this is the description for 2</description>
<image id="0">images/image_3.jpg</image>
<image id="1">images/image_4.jpg</image>
<image id="2">images/image_5.jpg</image>
</group>
<group name="item 3" id="2">
<description>this is the description for 3</description>
<image id="0">images/image_6.jpg</image>
<image id="1">images/image_7.jpg</image>
<image id="2">images/image_1.jpg</image>
</group>
</images>
View Replies !
View Related
Loading Text And Image In XML
Hello!! I have an XML driven drop-down menu, that creates all the buttons dinamically. I manage to load jpg into a empty_mc from the menu, but i also need do load with the jpg, some text into 2 dynamic text fields, but i'm having trouble with the code!!!!
In flash i have at some point this code to set everything for the buttons:
[as]curr_item.onRelease = function(){
Actions[this.action](this.variables);
CloseSubmenus();[/]
and later on i have this to execute the actions:
ActionScript Code:
Actions = Object();
Actions.loadmovie = function(urlVar){
loadMovie(urlVar, "container");
};
and in my XML I have this code:
<?xml version="1.0"?>
<menu name="links">
<menu name="macromedia">
<item name="flash" action="loadmovie" variables="mymovie.swf"/>
</menu>
and this works great!!!! but i need to add another action so i can load some external text... and i tried almost everything and nothing worked...
please, what code should i put in flash and in my XML so i can load, for example, this "text.txt" into a dinamic text field with the instance name "body", at the same time that i load the jpg?????
thanks for your time, guys!!!!
ps: maybe instead of having the text loaded from from an external file, can i have it loaded from the XML? how can i do it??
View Replies !
View Related
|