Please help newbee with scrolling text :(

are the parameters of the scrollbar component okay? is the targetInstanceName the same as the instance name of your textfield you want to scroll?

yes, Instance name and target instance name are the same. As I said, when playing in the movie, the text comes up, and I can even highlight it and use the mouse wheel to scroll, just no buttons…

If you have an email, I could email you the fla. It’s about 1.9 Meg. Or if you have a yahoo account, I can put it in a yahoo briefcase, and you could get it there. Why would the upload function now say the file can only be 75k? Weird.

Waygray

yes you could email it to thomas@zeal-music.com and you’re file cant be larger than 75k because otherwise the whole server would be full of all the .fla’s posted…

you’ve got mail

any luck?

well i went to bed yesterday (it was about 3am here), so now i’m busy with you file, but i just dont get it. do you use flash mx 2004 or just flash mx? if you’re using flash mx you’re in the wrong forum. but it is very weird…

if someone else would give it a go… the file bandpicturepage.fla is downloadable here: http://thomas.zeal-music.com/flash/

I am using MX2004, but the original file was from an earlier version of flash. I have just started over on the file from scratch, and things seem to be working now. Thanks for your help though. See I had taken the fla from another site, and replaced the images and buttons with my own-I’m new to this, so I don’t know if that is even “allowed” or not, but anyway that is what I did, and that may be the problem, because now things are going relatively smoothly with my own file…

Waygray

ok I have the new file up at:
http://www.rattletree.com/aboutus.html
things seem to be working ok-though all the text is not updated yet. The strange thing is that three of the pictures the scroll bar fades in with the picture, and the other three, the scroll bar hesitates and then comes on-weird. Any ideas?

Waygray

You’re getting that “left side blah blah blah” error because you can’t change a variable on the left side of the equals sign.

Try changing:

on (press) {
     angelasecondtry.scroll-1=1;
}

To:

on (press) {
     angelasecondtry.scroll += 1;
}

OR:

on (press) {
     angelasecondtry.scroll -= 1;
}

The above is/are the shorthand version of:

on (press) {
     angelasecondtry.scroll = angelasecondtry.scroll + 1;
}

You could even do:

on (press) {
     angelasecondtry.scroll++;
}

OR:

on (press) {
     angelasecondtry.scroll--;
}

That should work for ya (assuming everything else is in order or course). Just remember – you can not ever (in Flash) assign/change any properties of a variable on the left side of the equals sign. :wink: