Show Text In Dynamic Text Box (nested Movie Clip)
can someone please help me look in my file.. i stuck here 1 day already..
i wan the dynamic text box fill in the number when i click on the button. And the value is keep increasing by 1 once i click the button.
the nested movie clip is as folo,
mc_A-->mc_B-->txtnumber
the button is in the mc_B..
please help me... thanks..
ActionScript.org Forums > ActionScript Forums Group > ActionScript 2.0
Posted on: 06-07-2007, 05:36 AM
View Complete Forum Thread with Replies
Sponsored Links:
Dynamic Text In Nested Movie Clip
i have a dynamic text box in nested movie clip.. there are..
A_mc--->B_mc-->txtnumber
txtnumber is in B_mc, B_mc is in A_mc..
the txtnumber is blank. i wan to fill in number when i press on the button. and keep increasing if i continue press the button..
my code is like follow,
Code:
on(release){
Number(_root.A_mc.B_mc.txtnumber.text)=Number(_root.A_mc.B_mc.txtnumber.text)+1;
}
but the number has not show in the txtnumber....could someone please help me?? thanks a lot..
View Replies !
View Related
Dynamic Text Inside Nested Movie Clip
hi everyone.please help me!!
basically i am trying to load text from a .txt file into a dynamic text box that is placed in a movie clip that is nested on the main root timeline. I have been trying to adapt this original code but without any luck:
stop();
loadVariables("mytext.txt", this);
i changed this to this:
stop();
loadVariables("mytext.txt","_root.note3_mc");
where mytext.txt is the name of the text file and note3_mc is the name of the movie clip.
the variable is called textField and my txt file reads as:
textField= testing!testing! lawrence your text goes here!!
when i test the movie i just get a blank text box.
any ideas people. thanks in advance.
View Replies !
View Related
Nested Movie Clip-dynamic Text Problem. Flash MX
Hi all,
Flash MX - problem with dynamic text fields/nested _MC's
Essentially, I have created a text scroller movie clip which is embedded into a 'master movie'. The clip contains two dynamic text fields (variables text1 and text2) that scroll & loop. At runtime the master movie calls a .txt file that loads a bunch of variables and sends them to the text scroller movie clip. I've done this to make the scroller easily updateable- just by changing the .txt file. Simple stuff.
Using the debug facility I can see the the variables loaded into the movie clip instance. The scroller works outside the main movie (if I call the variables from within it).
It seems as if by importing the movie clip into another movie, that all dynamic text fields are somehow hidden/deleted or otherwise.
I've tried to place a static dynamic field with a border in the document to see if the border is displayed - to no avail. No dynamic fields are displayed.
Any ideas??
Sorry to burden yourselves with what will probably be, trivia.
Faithfully (& rather frustrated)
James Turner
View Replies !
View Related
Dynamic Text Doesn't Show Up In Movie Clip?
I have a site going and the dynamic text thats right on the main scene works..
but I have parts that move so like.. I had an image as a BG for this one part and its a movie clip..
And I double clicked it to get into it, and then put stuff in that.
So its like
Scene 1 -> Dynamic Text
works fine
Scene 1 -> midGfx_mc -> Dynamic Text
does not work..
The field is there because i can double click and copy and get the value out of it. Its visible and its alpha is 100.. but you can't see the text.. its there.. the cursor changes over it and you can copy whats in it.. You just cant see it!
Why?
-Thank you
View Replies !
View Related
Text Field Nested In Movie Clip
in this code here, i create a movie clip, which will be used as a button, and then a text field inside of it. everything works when i don't specify width and height properties to menu.home. but when i do put width and height, as is shown in the code below, the text doesnt show up.
i need to have a button, and then be able to move the text inside the button wherever i want without actually moving the position of the button.
Code:
menu_buttons();
function menu_buttons() {
var textformat1=new TextFormat();
textformat1.font="arial";
textformat1.size=16;
textformat1.color=0x000000;
menu.createEmptyMovieClip("home",201);
menu.home._height=50;
menu.home._width=150;
menu.home.createTextField("menuText",202,20,60,100,40);
menu.home.menuText.setNewTextFormat(textformat1);
menu.home.menuText.text="Home";
var inX=menu.home.menuText._x;
var outX=inX+50;
menu.home.onRollOver=function() {
menu.home.onEnterFrame=function() {
this.menuText._x+=(outX-this.menuText._x)*.15;
}
position*=-1;
}
menu.home.onRollOut=function() {
menu.home.onEnterFrame=function() {
this.menuText._x+=(inX-this.menuText._x)*.15;
}
}
}
View Replies !
View Related
Nested Movie Clips, Dynamic Text, Help
I am developing a little site, and I have a menu on the root level of the movie, when you roll over a button, there is an action script to start up a movie clip called "menu_clips" , menu clips has a text box that tweens into place and a dynamic text box that changes for each menu item. the root level is all in frame 1 and I have menu_clips in its own layer with instance name "menu_clips" , it works fine with a dynamic text box in the clip "menu_clips" however I want to place the dynamic text box into a container movie clip called "text_box" or something like that, so I can move it around within "menu_clips" more easily. I am having some trouble getting this to work. With "menu clips" I placed an intance of "text_box" (which contains my dynamic text box, variable "menuTextBox") and named the instance "text_box", on the root level, I originally had an actionscript like this:
on (rollOver) {
if (menu_clips.menuTextBox==_root.about) {
stop ();
}else {
setProperty ("menu_clips", _visible, 1);
setProperty ("about_matt", _visible, 1);
about_matt.gotoAndPlay(1);
menu_clips.gotoAndPlay(12);
menu_clips.menuTextBox = _root.about;
}
}
this worked fine, however I can't really do much with a dynamic text box on its own, the new script which does not work looks like this:
on (rollOver) {
if (menu_clips.text_box.menuTextBox==_root.about) {
stop ();
}else {
setProperty ("menu_clips", _visible, 1);
setProperty ("about_matt", _visible, 1);
about_matt.gotoAndPlay(1);
menu_clips.text_box.menuTextBox = _root.about;
menu_clips.gotoAndPlay(12);
}
}
I have also tried just
"text_box.menuTextBox = _root.about;"
but I am having no luck with this one
Please help if you can, any suggestions would be very much appreciated. Thank you.
If you'd like to see the movie, you can check it out here
http://www.roznet.com/ and click on the new roznet preview link, keep in mind it's just a preview and will eventually be full of nice effects and content, but for now it's very basic
View Replies !
View Related
Dynamic Text Not Working In Nested Movie Clips
Hello,
I am trying to load text dynamically in a movie clip and I'm stumped as to why it won't work. I can get it to work just fine on the root level but not in my movie clip, where I need it to be. I've creatd a video player and I have a movie clip that holds a scrollable row of thumbnails, so I need the text fields in this movie clip so they'll scroll with the thumbnails. I've tried every tutorial, every example of code online. Any suggestions would be greatly appreciated.
Thank you,
Candace
View Replies !
View Related
Loaded Text File Wont Show All Of The Text In Dynamic Text Field
When I load an external text file into flash and display the string in a dynamic text box, not all of the text will show in the text box; and using scroll button to scroll the text doesnt help.
The text that is in the text file is as follows, and as far as I can see there is no reason why all this text shouldnt show in the dynamic text field; by the way all my targets are correct, I know that for fact.
message=Code: Cheat:
BEEPSAGONER Deactivate the censor beeps
DRACULASTEABAGS 50 lives
DUTCHOVENS Frying pan mode
XFYHIJERPWAL IELWZS Debug mode
BOVRILBULLETHOLE Shoot all objects
EASY Easy mode
VERYEASY Very easy mode
SPUNKJOCKEY New death animation
SEXYMANN Birdy & Squirrel scene
Code: Unlock chapter:
PRINCEALBERT Barn Boys
CLAMPIRATE Bats Tower
ANCHOVYBAY Slopranos
MONKEYSCHIN Uga Buga
SPANIELSEARS Spooky
BEELZEBUBSBUM It's War
CHOCOLATESTARFISH The Heist
WELDERSBENCH All chapters and scenes
Code: Unlock Multiplayer character:
WELLYTOP Conker
EASTEREGGSRUS Neo Conker
BILLYMILLROUNDABOUT Gregg the Grim Reaper
CHINDITVICTORY Weasel Henchmen
EATBOX Cavemen
RUSTYSHERIFFSBADGE Sergeant and Tediz Leader
BEEFCURTAINS Zombies and Villagers
View Replies !
View Related
How To Add Text To A Dynamic Text Feidl In A Movie Clip Added Through Actionscript?
ok I've never been able to get this to work so I've always just found a way around it. But I really need to get this to work in this project.
I need to get dynamic text to change in a movie clip Where you are adding the movie clip through actionscript (its not on the stage, you are adding to trhough createEmptyMovieClip). I can change dnamic text in a movieclip that is already onthe stage and thats usually how I get around this, but I really need to add it through createEmptyMovieClip this time.
The follow doesn't seem to work and I've searched everywhere all they all say this is how you do it but I can't get it to work...
///////////////////////////////////////////////////////////
//create an Empty movie clip
var CountLayer:MovieClip = home.createEmptyMovieClip('CountLayer', 5);
//add the movie clip to the empty movie clip just created
CountLayer.attachMovie('ScoreCount_mc', 'ScoreCount_mc', 0, {_x:400, _y:400});
//test variable
var test:Number;
test = 0;
//Add text to the dynamic text in the movie clip
ScoreCount_mc.Score_txt.text = test.toString();
////////////////////////////////////////////////////////////////////
The above never seems to add anything to the dynamic text feild. So if anyone know whats going on here or the right way to do it please help.
Thanks.
View Replies !
View Related
Problem Distorting Dynamic Text In Movie... Animation Doesn't Show
Hi,
I have a problem trying to make an animation with a dynamic text input. This is what i want to do...
Sort one of several (text) entries in an Array (randomly) and display each of it's letters with an animation.
I have created a movie object in which there's a dynamic text input that will hold the letter (This is done). Then i created a second movie object in which i take the first object and gave it several animations (Done).
In the end, i duplicate the second object for each letter of the frase, insert the letter in it a tell it to go to a specific effect (Done).
I found one problem with this. If i don't distort (size, rotation, screw, etc) the letter in the animation it will work like it should. If i distort the letter, the animation won't show.
Here is an example of something similiar i found in which the letters appear to be deformed in the animation (the ones that fly away).
http://www.anim-fx.com/samples/bang.htm
Is there any way to fix this?????
Thankz...
View Replies !
View Related
Select Text File From Dropdown List, Content To Show In Swf Dynamic Text Field
I have a php page where there is a form with a dropdown list of all text files in my site. The name of the dropdown is $filename.
The action script in my swf is this:
loadVariablesNum("<?PHP echo $filename; ?>", 0);
but I get nothing. It displays correctly when I replace
<?PHP echo $filename; ?> with the actual value of $filename, for example:
loadVariablesNum("ui_websites.txt", 0);
Any ideas what I'm doing wrong?
View Replies !
View Related
Compare And Combine Two Text And Show In One Dynamic Text Box
Hi All,
I am having a one variable through which i am showing (trace(new_str)) two different text with underline characters at diffrent positions. So What i want is to combine two of them into one and show in dynamic textbox with variable name result :-
new_str="h<u>e</u>llo" + "hel<u>l</u>o"
Result Expected :-
Result = h<u>e</u>l<u>l</u>o // hello
View Replies !
View Related
Using Dynamic Text In A Movie Clip
I have a movie clip that i have dynamic text setup in reading from a text file with scrolling arrows on the side... Well the text will show up but it wont scroll... Is there any programming stuff I need to do besides what you do when its on the base page...
Any help would be great
The arrows have
on (press) {
tellTarget ("uptrigger") {
gotoAndPlay (2);
}
}
on (release, releaseOutside) {
tellTarget ("uptrigger") {
gotoAndStop (1);
}
}
and the down arrow is the same but with downtrigger...
please help!!!
Jonathan
View Replies !
View Related
Dynamic Text In A Movie Clip
I can successfully pull in an external text file's contents as long as the dynamic text field and the loadVariablesNum action are in the root timeline. How can I get it to work within a movie clip within the main timeline? The scenario is - a text bubble appears with dynamic text in it. I need to be able to contain the dynamic text design within the text bubble movie clip, but currently nothing shows up.
Thanks in advance for any help.
View Replies !
View Related
Dynamic Text Into Movie Clip
Using Flash 5, I've created dynamic text (named "text1") into a movie clip (instance named "movie1") on the main timeline. What is the correct syntax when passing the variable in the html?
I know when the dynamic text is on the main time line (not in a movie clip) it is:
EMBED src="Movie.swf?text1=XYZ"
View Replies !
View Related
Dynamic Text Within Movie Clip
Hi,
I'm trying to figure out how to reference a text variable that's within a movieclip (I want to reuse the movie clip numerous times, while changing some of the text within it).
I can't seem to address text variables inside movie clips (I've tried _root _parent _global, most everything I can think of). Seems like it should be straightforward but once I try to reference it in a movie clip, no go.
I've seen other people with the same problem, but haven't found a thread with an answer yet.
Thanks,
Maria
View Replies !
View Related
Movie Clip And Dynamic Text
hi everyone..
let's say i have a movie clip that fades a dynamic textfield in, and then out...
tween:
fades in..... then fades out...
and then i would like to change the text in the dynamic field after it fades out.. because i'd like it to tween again, using new text.
help!
View Replies !
View Related
Dynamic Text In Movie Clip
Hello:
I have playing with flash mx for some time now and have created a somewhat amateur site with it. My ? is, can I put an external a dynamic text field using the scrollbar feature in a movie clip? I did the tutorials that came with flash and took a beginners course in flash in a local college, but didn't cover this.
One of my pages has too much text to fit in one of the pages, so the scroll feature would be great, if I could only figure it out.
Thanks
PS. is this considered a "newbie" ?
View Replies !
View Related
Dynamic Text In A Movie Clip?
I had a flash movie which used dynamic text boxes. As the project has expanded i moved these boxes into a movie clip. Now the text doesn't load.
I used
loadVariablesNum("Dave.txt",0);
text box instance name 'Dave" Var content.
View Replies !
View Related
Dynamic Text Box In Movie Clip
Hello,
I have this movie in flash that graphs tide data. At every point, I attach a copy of a dot-button movie clip. When the user mouses over the dot, it should show the time and height of the tide in a tooltip-like window. This tooltip is just a box in the over state of the button with two dynamic text boxes in it - using variables timeTxt and heightTxt. When I run the script, it does everything right, except that there is no text in the tooltips. I've verified that the variable is there using the debugger, but its not on the text.
[code]for(var j = 0;j < points.length;j++){
this.attachMovie("point_dot","point"+j,1000+j);
this["point" + j].timeTxt = times[j];
this["point" + j].heightTxt = heights[j];
this["point" + j]._x = points[j][0];
this["point" + j]._y = points[j][1];
}CODE]
Also, its online here: http://my.boatus.com/tides/tideChart.html
Thanks
View Replies !
View Related
Dynamic Text In Movie Clip
I am trying to place a dynamic text field inside of a movie clip. My text field displays correctly if it is on the main stage. I used the code loadVariables("text.txt","_root");
But when I put this in the movie clip on frame one it changes my text field and displays: _level0instance67_"name"
Is there a way to call a text document from a movie clip?
View Replies !
View Related
Dynamic Text In Different Movie Clip
Inside scene one i have a movie clip that contains a movie clip that contains a dynamic text field. Also inside Scene one I have a different movie clip that contains a movie clip that contains a movie clip that contains a input text field. And I need for the user to type in to the input text field and see what they are typing show up in the dynamic text field. What would that script look like and where would I put it? Can anyone help please?
Edited: 05/24/2007 at 08:43:49 AM by relief8
View Replies !
View Related
Dynamic Text In A Movie Clip.
so i have a this movie clip, inside the movie clip i am dynamically loading images into little movie clips and i wanna dynamically load text into text fields in the clip as well. currently i am using this code to load the text into the fields, but it's not working.
loadText = new LoadVars();
loadText.load("../images/news.txt");
loadText.onLoad = function() {
myNews.html = true;
myNews.htmlText = _root.one.city1;
};
it is cause i can't trace a path to a text field like i can a movie clip?
View Replies !
View Related
==> Dynamic Text In Movie Clip
when i make a movie clip and place a dynamic text box in side and asign it a var of "name" i can place a
onClipEvent(load) {
name = "Button";
}
and it will show the word "Button" in the dynamic text box in the movie clip but when i put this clip in to motion it no longer shows the test is there a way to get around this problem.
any help would be greatly apricated
PS: i owe to this site and the ppl of these fourm all i know
View Replies !
View Related
Dynamic Text In Movie Clip
Hi,
how do i get the let the dynamic text box inside the movie clip to display the string?
currently i have a movieclip called newblock_mc with linkage inside the library, the variable name for the dynamic box is cy_block.
and my script (on a frame) is:
cy_block = cy_break_array1[1];
attachMovie("newblock_mc",cy_block,2);
so why doesn't the dynamic box in the movie clip display the string, cy_block?
if u need to know... cy_block contain chinese characters.
I placed a dynamic text box on the stage, and it is able to display the chinese words in cy_block, only the one embedded in the movie clip couldn't.
View Replies !
View Related
Dynamic Text In A Movie Clip? Help
I'm trying to put a site together in which the owners can update their text. I've done this before on other sites without any problems but I cant get it to work this time. I'm assuming this is because this time the text field is within a movie clip rather than in the _root directly (i'm also having problems with input text. presumably for the same reason). This is the code I'm using to call up the .txt file:
loadVariables("beginners.txt","_root");
I've tried putting the name of the movie clip and instance name of the movie clip in which the text field is embedded in there except "_root" but I'm still having no joy.
Can anyone help?
View Replies !
View Related
Dynamic Text In A Movie Clip.
so i have a this movie clip, inside the movie clip i am dynamically loading images into little movie clips and i wanna dynamically load text into text fields in the clip as well. currently i am using this code to load the text into the fields, but it's not working.
loadText = new LoadVars();
loadText.load("../images/news.txt");
loadText.onLoad = function() {
myNews.html = true;
myNews.htmlText = _root.one.city1;
};
it is cause i can't trace a path to a text field like i can a movie clip?
View Replies !
View Related
Dynamic Text In A Movie Clip
I am loading an external text document into a dynamic text field using:
loadVariablesNum("text.txt", 0);
However, I am trying to have this dynamic text field inside of a movie clip, and it no longer pulls from the text file. Only pulls from the text file if the text field is sitting in the main scene.
Any direction would be great!
View Replies !
View Related
Dynamic Text Into A Movie Clip...
Stumped: this may be easy for most here, but I am a painter.
I am loading a .swf into a site:
_root.createEmptyMovieClip("container",1);
container.loadMovie("../assets/subpage/subpage.swf");
container._x = container._y = 0 ;
On subpage.swf is a Movie Clip that contains a dynamic text field that I want to load from a .txt file. I can load text dynamically using
loadVariablesNum("text1", 0); into the site, but I need the dynamic text to be inside a movie clip, and then the .swf(subpage) to be loaded into the site... I have tried changing the level, and "exporting for action script" the text file and using:
loadVariables("../assets/subpages/subpage.swf","text_1"); to load directly into the movie clips name...Driving me nuts!
Thanks a million to whoever can help!
View Replies !
View Related
Dynamic Text In A Movie Clip
I'm using Flash MX 2004 Professional, and I was making a heading for an online journal. On the heading, I have a dynamic text box which changes (to be redundant) dynamically onmousover on various buttons. This all worked fine.
Then I decided I wanted to be able to move the entire flash document (i.e., on the click of a button, the whole thing would scroll up). So I converted it all to a movie clip. When you are viewing the movie clip symbol and do Test Scene, it still works perfectly. But when you view the entire movie, none of the dynamic text boxes work. Even if I do something as simple as "textbox1.text = 'HELLO WORLD' " it works in the scene, but not in the overall movie.
Why is this?
View Replies !
View Related
Dynamic Text Within Movie Clip
i have created a dynamic text box which fetches text from a external file. however when i put the text box into a movieclip (rather than directly on the scene's timeline) it stops working. i have a feeling it has to do with the command which loads the files...
loadVariablesNum("news.txt",0);
can anyone help?
View Replies !
View Related
Dynamic Text Within Dynamic Movie Clip Loops
Ok my predicament. I am trying to create thumbnails, but instead of using pictures as the thumbnails I would like to have text, formatted blah blah for people to select. Now the code I am trying to adapt is fine and dandy to get working with pictures, so I know the part of this code that creates the movie clip is fine. However I cannot seem to dynamically create the text boxes within the movie clips. I need to have them within the movie clips so the opacity will change when they are hovered over.
Code:
currentName = "t"+k
thumbnail_mc.createEmptyMovieClip(currentName, thumbnail_mc.getNextHighestDepth());
thumbnail_mc.currentName.createTextField("text"+cu rrentName, thumbnail_mc.currentName.getNextHighestDepth(), 0, 0, 244, 28)
thumbnail_mc.currentName.text="test"
k will be changing anyway for each time through taht a movie clip is made hence why they will need different names.
Any help...hope this can be understood.
View Replies !
View Related
Show Input Text In Dynamic Text?
hi,
I'm trying to show a username that was inserted in a input text field in a dynamic text field. No problem here, the issue is when the dynamic text flied is inside a moveclip...the dynamic text field aprears empty :-(
Can anyone help me?
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
Rotating A Movie Clip That Contains Dynamic Text.
I have a movie clip that is a circle which, in turn has movie clips around the edge.
Each of these movies clips contains a dynamic text field.
When I try and set the _rotation value of the circle clip in the main movie, the dynamic text boxes will only display their text when they are at 0 degrees (at the top of the circle in this instance).
Is this a "feature" in flash or am I doing something wrong?
Thanks in advance for any help.
Andrew.
View Replies !
View Related
Updating A Dynamic Text Box In A Movie Clip
Hi all,
Pleae can someone tell me how to update a movie clip which has been planted on the main timeline to update when I enter some text into a imput text box on the main timeline i.e. entering your name into an imput txt box clicking a forward arrow to move to the movie clip displaying a welcome screen and the name entered.
I can get this to work when the Dynamic text box is on the same stage by using the set variable command but this doesn't work when switching to the movie clip that needs updating.
Any help much appreciated.
Shen
View Replies !
View Related
Dynamic Text Inserted Into A Movie Clip
I am having difficulty getting my external text to load into a movie clip. The text is supposed to load into a circle (movie clip) that is moving around on the screen. I have the text box on the circle, but can't get the text file to actually load into the box, on the clip. Could anyone help me with the script that should load the text into the moving clip?
View Replies !
View Related
Dynamic Text Load In Movie Clip
I a movie clip (_root.movie) with a dynamic text field inside of it. when I use "loadVariablesNum" is there a certain level that I need to use for it to work? If not why can't I get my text to load. Script looks like this:
(on _root.members)
onClipEvent (load) {
loadVariablesNum("./texts/members.txt", 0);
this.scaleDest = 5;
this._x = 0;
this._y = 0;
}
All the other stuff is for an inertia gig I'm working on so you can ignore it.
Thanks,
Tchus,
View Replies !
View Related
Controlling A Movie Clip With A Dynamic Text Box
I have a dynamic text box for the score called SCORE. What I need to happen is that when the score reaches a certain value, say 5, some script tells a movie clip called AWARD to play a certain frame.
Ignoring all syntax I have the following
if SCORE==5
telltarget AWARD
gotoandstop 2
It does absolutely nothing, although the score works.
Plz help
Timo
View Replies !
View Related
Dynamic Text Field In Movie Clip
Hey, I searched all across the forums for something like this... I found a few things similar, but nothing ended up working. I have a Dynamic Text box named "About" inside of a movie clip (not in the main scene). Most will probably say something about "_root.whatever.About" but I'm not entirely sure that I understand that whole concept. Anyway, I have the action of loading the Var inside of this movie clip, in the same clip as the dynamic text. When I test the .swf file, instead of displaying the .txt file I tell it to load, it displays something like "_level0.instance98.instance99.About" and the numbers change every time. If anybody could please help me out, I'd really appreciate it... I've spent hours trying to figure this out already, heheh. Thanks!
View Replies !
View Related
Changing Dynamic Text In Movie Clip
I have a clip that has been attached with attachMovie and it is registered with a class (messageClass). I have several dynamic text boxes and I want to be able to change their values. Here is how I'm trying to do it so far, but it doesn't seem to be working:
Code:
messageClass.prototype.prop = function(a, b, c, d){
this.id = a;
this.dateBox.date = b;
this.authorBox.author = c;
this.messageTextBox.messageText = d;
}
//then later:
message0.prop("hello","hello","hello","hello");
Any ideas on what I'm doing wrong or how you would do this? Thanks...
View Replies !
View Related
Duplicate Movie Clip + Dynamic Text
Hi there,
Can u please check the code for me? It returns wrong at the moment...
PHP Code:
var i;
var total = 5;
for (i=0; i<total; i++) {
duplicateMovieClip(_root.txtMC, "txtMC"+i, i);
with (eval("_root.txtMC"+i)) {
_y += 20*i;
txtField="This is line " + i;
}
}
I would like to get this format....
this is line 0
this is line 1
this is line 2
this is line 3
this is line 4
Cheers
View Replies !
View Related
Dynamic Text Inside A Movie-clip
Hi, let's see what I'm doing wrong...
Main time line...frame 1:
- A dynamic textbox which loads from a txt file.
- AS: loadVariablesNum (variable, 0);
Ok, so far this is working fine...
Now I turn this dynamic text box into a MC symbol.
...and it isn't working any longer...Why??
Just do the test, you'll see it ain't working no-more.
I don't thinks its paths this time...
can anybody help please?
Thanks.
View Replies !
View Related
Yes ANOTHER Dynamic Text Question, In A Movie Clip?
I have found so many threads and tutorials for scrolling dynamic text boxes. I could not find any that state the slight change in code if you are putting a dynamic text box in a movie clip.
I am gussing that you alter the path to the text.txt document to recive the info (text)...?
Do I need to enter the instance name of the movie clip in here:
loadVarsText.load("test.txt");
Am I on the right path?
Thanks for the input.
AD
View Replies !
View Related
|