Dynamic Text Animation
is it possible to get some data from database like news or something and animate them ?
FlashKit > Flash Help > Flash MX
Posted on: 06-18-2003, 07:38 AM
View Complete Forum Thread with Replies
Sponsored Links:
Dynamic Text Animation Bug
I have a MC with a text field inside of it. When the text is static and I try to animate(enlarge) the movie, the text inside of it goes fine but when I set the text to dynamic it enlarges in some strange (not smoth) way. Any way to solve that problem? I don't think u will understand what I'm talking about untill u see for urself, just make a MC put text inside of it and try animate that MC like chance it's size or skew.
View Replies !
View Related
Dynamic Text Animation?
hey i want to do a pretty simple thing - scroll a line of
dynamic text (from a text file) horizontally across the screen,
with one starting keyframe and one ending keyframe and a motion tween in between. this does not seem to work, yet accessing the text without tweening it does.
does flash let you animate dynamic text fields?? thanks.
View Replies !
View Related
Dynamic Text Animation
Hi, I have atlast found the way that will import a dynamic textfrom a external location using these scripts...
function addItems() {
// Set the Title from Text File.
Title = myData.Title;
// First we set some properties of the Dynamic Text field.
// Most of these should be obvious due to their name on what they are setting.
myText.multiline = true;
myText.wordWrap = true;
myText.type = "dynamic";
myText.background = true;
myText.backgroundColor = "0x000000";
myText.border = false;
myText.html = true; // Enables HTML in the text field.
// Sets the Actual Text to the Text Field. Notice how we grab the text from the myData object we loaded in.
// If you are loading in html text - Make sure to use myText.htmlText - instead of myText.text.
myText.htmlText = myData.myText;
ScrollBar.setScrollTarget(myText);
// The Next Part is just examples of applying style's to the Text Field and Scroll Bar component.
// The rest of this is optional - It just sets the stlye for the ScrollBar.
formStyleFormat = new FStyleFormat;
formStyleFormat.scrollTrack = "0x000000";
formStyleFormat.highlight = "0x000000";
formStyleFormat.highlight3D = "0xffffff";
formStyleFormat.arrow = "0xffffff";
formStyleFormat.face = "0x000000";
formStyleFormat.background = "0x000000";
formStyleFormat.shadow= "0x666666";
formStyleFormat.darkshadow= "0x333333";
// Apply the Changes.
formStyleFormat.addListener(ScrollBar);
formStyleFormat.applyChanges();
// Sets some of the Text Formatting Options..
textFormat = new TextFormat();
textFormat.color = "0xffffff";
textFormat.bullet = false;
textFormat.underline = false;
textFormat.bullet= false;
textFormat.size = 11;
textFormat.font = "arial";
// Set Text Format.
myText.setTextFormat(textFormat);
}
and
// Create a New LoadVars Object
myData = new LoadVars();
// This Tells the Flash movie What function to invoke when the Load Vars
// Is complete.
myData.onLoad = addItems;
// Change this URL to the Text File you want to Load..
// This line just tells the movie to load the variables.
myData.load("Files/ScrollBar_Text.txt");
Now, I would like to know the way to import them with animations.... This just 'SHOWS' the text.. How Do I animate them...
Please assist me with this...
Thank you
Wishy
View Replies !
View Related
Dynamic Text Animation
Hello,
I was trying to animate a simple MC with a dynamic text box inbedded within - just an alpha fade out. The static text animates, but not the dynamic.. does anyone know what is going on... please help, thanks --Jacob
View Replies !
View Related
Dynamic Text Animation
Hey guys,
I wanted to know if anyone could share with me how to make text animate dynamically. In other words, I want to have a standard animation and a text field. When I enter text, I want those letters to animate based on the standard animation that I had set up. How might I go about doing this. Thanks guys
Don
View Replies !
View Related
Dynamic Text Animation
Hello,
I'm trying to create a dynamic text animation as shown below.
But I'm not able to make it work.
I also tried create a MovieClip instance and added to timeline and added the TextField to over the MovieClip instance (like myMovie.addChild(myText))
However, result wa same. How do I make this work?
Please someone advise.
Thank you.
ActionScript Code:
package
{
import flash.display.MovieClip;
import flash.text.TextField;
import flash.text.TextFormat;
import flash.text.AntiAliasType;
import fl.transitions.Tween;
import fl.transitions.easing.*;
public class textAnimation extends MovieClip
{
[Embed(source='/assets/verdana.ttf', fontName="Verdana" mimeType="application/x-font-truetype")]
private var myMovie:MovieClip;
private var myTween:Tween;
private var myText:TextField;
private var myTextFormat:TextFormat;
public function textAnimation()
{
createText();
setLabel("This is My Text");
}
private function setLabel(str:String):void
{
myText.text = str;
}
private function createText():void
{
myTextFormat = new TextFormat();
myTextFormat.font = "Verdana";
myTextFormat.color = 0x00000;
myTextFormat.size = 15;
myText = new TextField();
myText.width = 200;
myText.defaultTextFormat = myTextFormat;
myText.embedFonts = true;
myText.antiAliasType = AntiAliasType.ADVANCED;
//myText.alpha = 0;
myText.antiAliasType = AntiAliasType.NORMAL;
addChild(myText);
myTween = new Tween(myText, "alpha", None.easeNone, 0, 1, 2, true);
}
}
}
View Replies !
View Related
Animation In Dynamic Text
hi
can anyone explain me to create animation in dynamic text
the animation is just like a typeriter effect i.e. the text comes charater by charecter.
actually i want to build a bulleted list. and the text comes through any server pages
thx
View Replies !
View Related
Help.. My Dynamic Text Animation
Dear all AS gurus,
I would like to add one more text line which are dynamically attached from My XML.
Please view my .fla file i attached herewith.. i want to add more text line with the same animation..
please help me with this....I am kind of stuck with this and can't proceed with the other work on it.
Source files..
Dynamic_test.zip
best
Sekar
View Replies !
View Related
Dynamic Text Animation?
Hi, I'll try to explain my problem.
I want to load several links into flash using an external .txt-file. Ok, so far, so good.
Now what I would like is that I can animate each line. If the mouse moves over a link it has to enlarge (some kind of zoom effect). But I don't know how to animate the dynamic textfields. And do I have to use a different dynamic textfield for each link?
Thx a lot in advance...
View Replies !
View Related
Dynamic Text Animation
im having some trubble wit some dynamically loaded text.
i want the text to be animated into the main stage, so i hav it as a movieclip, correct? however wen i try to get the text 2 scroll it doesnt work. so i am wonderin if u peeps can help wit and possible suggestions on how to put scrolling text separately into a Movieclip. and also let the scroll buttons b contained outside the movieclip on the main stage so that the buttons are not animated amongst the movieclip.
hope u peeps can help!
Vic1ous
View Replies !
View Related
Dynamic Text And Animation?
Is it possible. I swear I've done this before as long as it was a simple tween. Horizontal or vertical. But Im working with it in Flash 8 right now and it's just not working.
Are dynamic text box's limited to no animation?
Tell me it ain't so!
View Replies !
View Related
Mask Animation Using Dynamic Text
Here's what i'm trying to do -
I've got a small box, and I wanted to have some short messages slowly scroll through the box, but I wanted the messages to be easily editable, so I was loading the messages through a textfile.
My problem is, I am trying to animate the scrolling, using a rectangular shape as the viewing box, so the rectangle is a mask. Now, if I use a dynamic textbox animated to scroll through, nothing shows up. Static text works fine, but dynamic text will not show up at all through the mask.
Is this even possible, or am I missing something? The messages are loading fine, and will appear used normally, they just wont seem to work being masked.
thanks for help
View Replies !
View Related
Dynamic Text And Simple Animation
So maybe not so simple for an ole feeble mind, but hopefully it will become clear after this post
I recently pulled down a simple example of dynamic text boxes and multiple variables from: http://webthang.co.uk/tuts/tuts_fmx...h2/d_flash2.asp
simple enough in itself....
after attempting to put the 2 text boxes into seperate movie clips and place them on seperate layers to do some simple animation, ie; float in left to right, top to bottom etc, I get nada?? Is this even possible?
this is placed on the bottom layer, first frame:
loadVariables("text2.txt","_root");
TIA Bewildered Bob
View Replies !
View Related
Dynamic Text And Actionscript Animation
I am building a website in dreamweaver, and the client wants a section at the side with certain quotes and they want this to change every few minutes or so.
I think the best way to do this would be in flash, firstly i thought the best way to do this would be from an updateable text file, so the client can add or change statements whenever they want, but i dont have a clue what to do and secondly I dont know how to make the text fade in flash without having to tween it on the timeline.
any help or direction would be sincerly appreciated
cheers
View Replies !
View Related
Chunky Animation Due To Dynamic Text?
I designed this website here modeled after another website that i like. But if you click on "About Ari" or "Press" or the sub menus you will see that the animation isn't very smooth. I was wondering if this was due to the amount of dynamically load text that i have. 5 differnent text boxes all dynamically load. Does this normally cause animation not to be smooth? Also, it hammers the CPU pretty good. Is that normal? 30 fps btw.
Thanks.
View Replies !
View Related
Dynamic Text Interfering With Animation
Hi,
Ive created these buttons - http://www.easyflashsite.co.uk/buttonscs3.swf
Now the rollover and out animations play well UNLESS the mouse is over the text. Try it out.
Im using dynamic text for the buttons and the code i am using is below.
Any Ideas?
b1.link_mc.MyText_txt.text="Home";
b2.link_mc.MyText_txt.text="About";
b3.link_mc.MyText_txt.text="Services";
b4.link_mc.MyText_txt.text="Portfolio";
b5.link_mc.MyText_txt.text="Contact";
b1.addEventListener(MouseEvent.CLICK,clickHandler);
function clickHandler(event:MouseEvent):void{
navigateToURL(new URLRequest("
View Replies !
View Related
Dynamic Text And Simple Animation
So maybe not so simple for an ole feeble mind, but hopefully it will become clear after this post
I recently pulled down a simple example of dynamic text boxes and multiple variables from: http://webthang.co.uk/tuts/tuts_fmx/...2/d_flash2.asp
simple enough in itself....
after attempting to put the 2 text boxes into seperate movie clips and place them on seperate layers to do some simple animation, ie; float in left to right, top to bottom etc, I get nada?? Is this even possible?
this is placed on the bottom layer, first frame:
loadVariables("text2.txt","_root");
TIA Bewildered Bob
View Replies !
View Related
Dynamic Text Fields Are Screwing With My Animation
I have been working on peice of flash that loads a movie onto the main stage and then masks some images dynamically and wipes them on and off the stage. I finally got that working just like I wanted it.
Next on moved on to the text that will go next to it. As soon as I put dynamic text fields on the stage my other animation stopped working. It seems like the mask isn't working becuase the images aren't showing or maybe my movie didn't load to the stage.
Is there some bug that I need to know about?
View Replies !
View Related
Dynamic Text...in Movie Clip Animation
I cud use some help here...I kinda get what needs to be done here but can't quite figure it out.
I need to create a lot of buttons....each one is to animate when rolled over. basically, u roll over the button (which is text in a movie clip) and it slides to the right a bit and little arrow tweens to the right as well. the problem is that i dont want to have to recreate this button 30 times when i'm sure there is a way to do this dynamically.
i am skilled enuff that i can create a dynamic text field and populate it with text using script...the problem is that i have the dynamic text field inside a movie clip and when i animate it, it becomes a tween....so i am really confused as to how to script things in the main timeline.
help!
...thanks
View Replies !
View Related
Text Animation Issues (using Dynamic Textfields)
Hello,
I just completed the actionscripting tutorial for animating text and was trying to recreate it with my own path. I ran into troubles when trying to use dynamic text fields for doing the letters, it should be a simple fix but I've been looking at it for hours and can't figure the darn thing out. I've attached the project in hopes of someone pointing it out to me, thanks in advance!
-Reza
View Replies !
View Related
Setting Dynamic Text In Tweened Animation
I'd like to be able to dynamically control text in an imported clip, where the artist has used shape tweening to animate the text.
From my reading of the documentation, to do shape tweening of text you have to convert it to objects which can no longer be accessed as a text field. So clearly I can't do this directly. Is there any trick or work-around that might help?
Like, could the text be left as a text field, then somehow, the main application does the work of converting it to an object at runtime so that it will work with the tweening? (That seems like a pretty dubious prospect honestly, but it's all I can think of...)
View Replies !
View Related
Dynamic Text Fields & Animation - Won't Work?
Hey there,
I got a quick question..
I have a Dynamic Text field inside a MovieClip and I'm trying to make it "Fade" (Go to Alpha 0%) with a Motion Tween over time.
I've noticed everythin within the MovieClip BUT the Dyanmic Text field fades...
Am I not able to animate Dynamic Text fields? Is there a fix ?
Cheers!
View Replies !
View Related
Simple Animation Using Dynamic Text From MySQL... Is This Possible?
Hey all,
I just upgraded to MX and starting to explore the database integration. What I want to do is create a simple animation with data from 3 or 4 fields in a MySQL database. Can dynamic text be animated (simple animation... size, movement over a few frames... nothing fancy)??
Right now I'm using this page to load an event calendar, with each link opening a new window for more detail. I'd like this popup (view_event.php) to contain the flash with the text loaded for the specific event (event_id=x).
Code:
while (list($event_id, $event_name, $event_date, $day_name,
$event_day, $month_name) = mysql_fetch_array($result))
{ printf("<tr><td width="170" align="right"
class="bold12d">$day_name, $event_day $month_name</td>
");
printf("<td width="170"><a href="#top"
class="small" onClick="MM_openBrWindow('view_event.php?
event_id=$event_id', 'eventwin', 'scrollbars=yes, resizable=yes,
width=480, height=360')">$event_name</a></td></tr>
");
}
Any help would be greatly appreciated!
View Replies !
View Related
Dynamic Text Fields Are Screwing W/ My Animation / Mask
I have been working on piece of flash that loads a movie onto the main stage and then masks some images dynamically and wipes them on and off the stage. I finally got that working just like I wanted it.
Next on moved on to the text that will go next to it. As soon as I put dynamic text fields on the stage my other animation stopped working (or at least I cannot see the images that are supposed to be showing). It seems like the mask isn't working because the images aren't showing or maybe my movie didn't load to the stage.
The only change I made to the fla is to add the dynamic text fields. Then I added two lines of code to my as file. If remove the text field from the stage everything works again.
Is there some bug that I need to know about?
View Replies !
View Related
Dynamic Text Animation - Unwanted Side Effect
Could you please take a look at the code below just for the sake of teaching?
cut and paste in flash
let it play for a few minutes, the animated letters will start to place one over another, that’s not a wanted effect..
unfortunately I can not set it right
Thanks for your help
marzia.neri@buongiorno.com
ActionScript Code:
function create(str) {
for (var i = 0; i<str.length; i++) {
this.createEmptyMovieClip("abc"+i, i);
this["abc"+i].createTextField("TextField", 1, 50, 50, 100, 100);
this["abc"+i].TextField.text = str.substr(i, 1);
this["abc"+i]._x = i*15;
//distance
}
}
function Wave(amp, t) {
return amp*Math.sin(t/6);
//wave
}
myStr = "Wave Me Baby , Wave me !!!";
create("Wave Me Baby , Wave me !!!");
t = 0;
this.onEnterFrame = function() {
t++;
for (var i = 0; i<myStr.length; i++) {
this["abc"+i]._x += Wave(2, t+i);
this["abc"+i]._y += Wave(2, t+(10*Math.PI/2)+i);
}
};
View Replies !
View Related
Why Does An Animation Slow Down When Scrolling A Dynamic Text Field?
It seems that when I scroll the dynamic text feild that the MC I have seems to slow down a great deal, I don't know if anyone has experienced this or not but this is what I'm doing:
http://www.allourstuff.com/crazdesig..._entertainment
If you notice, the dragon slows down which you click on the scroll arrows on the right side. By the way, sorry I haven't added a preloader or page animations yet, i'm still working on the actual design.
View Replies !
View Related
Why Does An Animation Slow Down When Scrolling A Dynamic Text Field?
It seems that when I scroll the dynamic text feild that the MC I have seems to slow down a great deal, I don't know if anyone has experienced this or not but this is what I'm doing:
http://www.allourstuff.com/crazdesig..._entertainment
If you notice, the dragon slows down which you click on the scroll arrows on the right side. By the way, sorry I haven't added a preloader or page animations yet, i'm still working on the actual design.
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
Storing A Dynamic Animation To A Static Animation?
Hi there.
Is there a way to create a static animation out of a dynamic animation?
Like this;
If I create a random "starfield" effect, and want it to be exactly the same every time - can I somehow store the animation to a swf or create automatic actionscript FROM the randomness I've already created?
Would be nice to know
Samuel
View Replies !
View Related
How To Create Static Animation From Dynamic Animation?
Hi there.
If I have created a dynamic animation (placing 100 raindrops on a stage using a for-loop), how can I create a static animation out of this that I can use in a animation?
The reason for asking, is that I want to create a flash-video for TV, and for that I can't use movieclips or dynamic content at all...
So I appreciate any help
Samuel
View Replies !
View Related
Help: Weird Or Not So Weird Thingy With Dynamic Text Animation
http://www.david.bullaro.com/
there are 3 buttons on the right side education, experience and awards. Each loads an MC that then motion tweens into view from the side. The MC dynamically loads a text file. At the end the text blinks once. I understand the blink because i needed to reload the text for that keyframe but is there anyway around that blink?
TIA.
View Replies !
View Related
Dynamic Animation? Or Not...
I'm planning to have four panels on my new site which each contain different types of content. One panel will be flexible in size, so it will change dimensions dependant on the item which is being displayed.
There may end up being about 10 different items to display in this panel, so I really don't want to 'hard animate' all the different changes in shape of the panel.
How could I script the changes in panel size, so at least I would just have to store panel sizes for each item and generate the actual animation using the script?
Or am I trying to re-invent the wheel here, and there's a much simpler way?
Please help me, I'm sinking...
View Replies !
View Related
Dynamic Animation
Hi,
I'm planning to have a panel in a swf which will be flexible in size, depending on its contents.
I'd like there to be a bouncy feel to the transitions, so for example, if the current item in the panel was a landscape pic, and you select a piece of work which was square, the panel would resize over the course of a second or two and reshape to the square format with a little rebound on the animation as it snaps into position.
How could I Actionscript the changes in panel size, so I don't have to generate every transition from one shape to another?
View Replies !
View Related
Dynamic Animation
Hi.
I have this fla that im trying to customize.
Its a mc that scrolls on the rollover of buttons but it duplicates the scroll MC making it seem that the scroll never ends!!
what im trying to have is the MC to scroll in a contained fashion i meen constrain the scroll to the MC's begining and end and remmove the duplicate MC script.
I have tryed but with no sucsess.
Could someone please take a quick look
the file is at www.digitaldesignshed.co.uk/Dynamic_scroll.zip
Thanks
View Replies !
View Related
Dynamic Animation
I have 2 questtions so i'll get right to the point.
#1
I've tried to make a rollover effect on a movieClip using this code:
on (rollOver) {
this._height = he;
this._width = wi;
this.setProperty(_height,(he*1.5));
this.setProperty(_width,(wi*1.5));
}
But for som reason this doesn't work?
#2
is it possible to run serveral movieClips through a number of frames with similar code as above. They shouldn't run the frames all at the same time only the movieClip which is activ? I was picturing something like this for the movieClip(instancename=internal):
on (release) {
_root.clicked = "internal";
gotoAndPlay(2);
}
and then this in frame2:
_root.clicked.setProperty(_height,116.6);
_root.clicked.setProperty(_width,87.5);
thanks in advance
MoonKin
View Replies !
View Related
Dynamic Animation
Hi all
I have an object on stage , it should animate to target position. The target position will change according to user input.
I have tried this but iam not satisfied.
Code:
sourceX = object._x;
sourceY = object._y;
destX = destx;
destY = desty;
delta_x = destX-sourceX;
delta_y = destY-sourceY;
yMove = Math.round((delta_y/4));
xMove = Math.round((delta_x/4));
object._y += (yMove);
object._x += (xMove);
if ((xMove == 0) && (yMove == 0)) {
for (i=0; i<chipsAnimStr_array.length-1; i++) {
//stop animation
}
The above code is only an idea.
Can any one suggest any new methods or improvements ?
Thanks in advance.
View Replies !
View Related
Dynamic Following Animation
Hello. I've searched all over the place and even got some help from people who know lots of math. Unfortunatly, searching for this turned out to be difficult and the people who tried to help all had to leave before they finished.
Here's what I'm looking for... CircleA is going to move to some point on the stage. Say... from point A to point B, and let's also say that the path between those two points is a curve.
I want another circle to follow it and stay the same distance away from it at all times. Also, CircleB shouldn't always be right beside CircleA. If A starts to move down, then B should do the same, but have a delay on it while still keeping the same distance away. Sort of like... a caterpillar, or something.
I've attached an animation example.
Any help would be greatly appreciated. Tutorial, ideas, math, anything!
Thanks!
View Replies !
View Related
Dynamic Animation
What i want to do is have 2 input boxes.
1st box will be
Your Name: eg: Peter
2nd box will be:
Friends name: Kristy
When they fill it in and press a button the animation loads and says
Peter thinks kristy is cool.
Does anyone know where i can find a tutorial to do this kind of stuff?
Also ive seen some Dynamic animation that work by replacing a name in the URl address. For example: http://name.justgotowned.com/
Id like to know how to do that type of http://name.justgotowned.com/ also.
Where can i read about this?
View Replies !
View Related
Dynamic Animation
Hey all I have a bit of a problem this is what I need.
I have a graphic of a thermometer and there 2 text boxes, one of which is an input box and the other is just a dynamic box. I need the mercury of the thermometer to tween up to the value on the thermometer tepending on what the user inputs
Anybody got any ideas?
View Replies !
View Related
Dynamic Animation..
Dynamic_TextAnimation.zip
Hi
Im using flash8..
Im beginner in AS.
I hav the coding for dynamically getting data from XML and animate this using AS..
In my xml there are two lines i want to get.. each are seperate node..
Here i hav the coding to get 1 line but i don know how to get the another line from xml and how to put it below the firstline..
This is my xml file..
<?xml version="1.0"?>
<!--Please dont change the order of the tags-->
<BANNER>
<ONELINERS>
<LINE1>Everything</LINE1>
<LINE2>Is Possible</LINE2>
</ONELINERS>
</BANNER>
please test my .fla file here am attachwith..
Dynamic_TextAnimation.zip
View Replies !
View Related
Dynamic Animation
Hi I am trying to make a banner that will cycle through images within and animate them. The rest of the code works the pictures spawn where they need to be and how they need to be and the on rollover rollout and release commands work just fine. So I tried putting an on enter frame for the MC to see if that would allow me to do what i needed. I am using set interval to try to get my code to progress because there is only 1 frame. I would like to do this through AS but if any one has suggestions outside of AS that would be great aswell.
Heres my code for the on enterframe
Code:
target_mc.onEnterFrame = function() {
delay = setInterval(increasesize(), 100 * (k + 1));
function increasesize() {
this._width += 30;
this._height += 15;
delaye2 = setInterval(decreasesize(), 200 * (k + 1));
function decreasesize() {
this._width -= 30;
this._height -= 15;
clearInterval(delay);
clearInterval(delay2);
};
};
};
View Replies !
View Related
Type Writer Text Animation & Flashing Text
Hi all of you
I have been working at my flash for hours and I am at my wits end .
I have a flash animation where type-writter text loads into the screen, thats ok. but I have a different set of text that I want to flash after the type-writing text has loaded in.
Does any body know the code for when a scene is loaded, play another scene?
I just cant get it, and its killing me
Any help would be greatly appreciated
Thankyou
Chris
View Replies !
View Related
Jumping To Areas Of Dynamic Text, Printing Dynamic Text
hello,
I have a movie clip that loads a .txt file into a dynamic text field. Due to the amount of content in the file a scroller bar is needed in order to view all of it. I want to create buttons that jump to different areas of the dynamic text for easier navigation so the user can go directly to various sections instead of having to use the scroller all the time. What kind of coding would I need to put on the buttons and within the .txt file at the areas I want to jump to?
Also, I would like to give the user the option to print everything within the dynamic text field only, not the surrounding elements in my movie clip. Is that possible?
thanks!
View Replies !
View Related
Dynamic Text Not Loading On Server . . . Other Dynamic Text Issues
ok - here's the url
http://www.rongilcreast.com/Test_Site/main.html
when I 'test movie' in Flash, the text comes in. But not now that it's online . . .
2nd problem. I want to add a scrollbar to the textbox, but when I drag the scrollbar onto the textbox, it doesn't snap-to the text box and resize itself.
all the files are here:
http://www.rongilcreast.com/Test_Site/main.fla
http://www.rongilcreast.com/Test_Site/main.swf
http://www.rongilcreast.com/Test_Site/Index.txt
whatamIdoin'wrong?
tia . . .
View Replies !
View Related
|