Ask a Question related to Macromedia Flash, Design and Development.
-
eric@elcmedia.com #1
What's wrong w/ this button script?
on(press) {
textField.scroll += 1;
if (press = True) {
textField.scroll ++;
}
}
I have this on a down button that controls text in a dynamic text
field. It only scrolls down one line at a time when you click it (as
you can see) but I want it so that if the mouse button is held down it
will automatically scroll more than just a single line. Any ideas?
Thank you.
eric@elcmedia.com Guest
-
What's wrong with that script
Hello, I made a slide show of pictures... I made a button to go to the next picture, and another to the previous picture I made a little script... -
What is wrong with my script?
<?php $lines = file('http://tibia.4players.de/statistics/?subtopic=whoisonline&world=Nova') ; $charname = $_POST; for ($i=0;... -
what is wrong in this script?...thanks
I cant connect this script with my HTML-form. This is my first time im working with PERL. I have upload the script with 755 and in the form action... -
What's wrong with this script?
Try saying: go to frame link take out the () "Frank_S" <webforumsuser@macromedia.com> wrote in message... -
what wrong with this PHP script ?
Hi there I've created abd uploaded this basic PHP script: <html> <head> <title>PHP Test</title> </head> <body> <H1 align="center"> -
eric@elcmedia.com #2
Re: What's wrong w/ this button script?
Well I have managed to get text on one MC to scroll when the mouse
hovers over the "down" button (It's actually a MC). The problem is I
have two movie clips, each with dynamic text fields, inside another
movie clip. When I added the second MC with text it worked, but
suddenly the first MC with text no longer worked! Agh!
Here is my code for the MC that follows the mouse (mouseFollower):
onClipEvent (load) {
this.startDrag(true);
this._visible = false;
}
And here is the code for the down MC (and similar for the up MC):
onClipEvent (enterFrame) {
if(hitTest(_parent.mouseFollower)){
_parent.scrollText_txt.scroll +=1;
}
}
The text fields in each MC are called scrollText_txt
Any idea why adding another MC with dynamic text would make the first
one stop working? I have tried changing the names of the text fields
and the hover MC but so far nothing works.
eric@elcmedia.com Guest



Reply With Quote

