Well folks… it seems I took this ONE STEP FURTHER in this thread…
http://www.kirupaforum.com/forums/showthread.php?s=&threadid=20204
Its on page 2 (if your default is set to 15 posts per page)
Well folks… it seems I took this ONE STEP FURTHER in this thread…
http://www.kirupaforum.com/forums/showthread.php?s=&threadid=20204
Its on page 2 (if your default is set to 15 posts per page)
here i wrote a tutorial for you all
Hehe nice
I was going to write a tutorial for that when my next version came up. I have a few things I want to write tutorials on, but I dislike writing tutorials (I like to be in depth, which takes time and patience) so needless to say I have a nack for delaying them.
i am glad your ok with it becuase some people don’t like others using there code but i did credit you:)
As long as you credit me for the code I wrote I don’t mind at all
i always do:thumb:
One question though, what if the moviclip is larger than the one provided in the fla. I noticed that when i changed it to one of my own, i couldnt scroll all the way back to the top.
You have to adjsut the variables for how far up and how far down.
huh? not to b a bother or anything but could u xpln in a bit more detail (flahs newby here).
thnx
// Stopping _y Coord for Scroll Up Button
var howFarUp = 10;
// Stop _y Coord for Scroll Down Button
// my example as a registration point in the top center
// so this can change depending on registration point location
var howFarDown = 10-(myClip._height/2);
the 2 variables
var howFarUp = 10;
var howFarDown = 10-(myClip._height/2);
The need to be changed relative to the size and location of your MC on the stage.
I know I’m really late on this one but LIB, is there anyway to do this with a textfield? How coudl I embed it in the MC so it will work? thanks
I think you just have to put a textfield inside a movie clip. And embed the font of course.
*Originally posted by Digitalosophy *
**I know I’m really late on this one but LIB, is there anyway to do this with a textfield? How coudl I embed it in the MC so it will work? thanks **
It is easier with a textbox…
yea i can do that but what i really meant was I want to make it when user holds down mouse it keeps rolling. not sure how to do that. should have been more speciific
actually i just did a search and found what i was looking for
Hey, one problem wit the buttons. I noticed that if my mouse drags off of the button while im pressing it, it scrolls all the way to the bottom or top (depending on which of the button im pressing). is there sum’n i could do to correct this like a
ondragout
command
aww c’mon guys, there must be something!
lost in beta , digitalphilo, claudio…somebody help meeeeeee.
Whats the code on your buttons?
The standard functions that came wit the fla
on (press) {
moveDown();
}
on (release) {
delete this.onEnterFrame;
}
Change to:[AS]on (press) {
moveDown();
}
on (release, dragOut) {
delete this.onEnterFrame;
}[/AS]
:: Copyright KIRUPA 2024 //--