Originally posted by ScottieYou should pick up a book if you are not going over it in class, this is the real power of Flash. Without it the website will just me more of an animation. Action Scripting is much like JavaScript and uses much the same language.
I wouldn't know where to start 😖
This is a little bit of what I'm working on now
[code]on(press) {
play();
_root.x +=2;
_root.ibmcMovie.swapDepths(_root.x);
_root.ibmcMovie._visible = true;
_root.ibmcMovie.play();
_root.ibmcIcon._visible = false;
}
on(rollOver) {
gotoAndStop(2);
_root.x +=2;
_root.ibmcIcon.swapDepths(_root.x);
}
on(rollOut) {
gotoAndStop(1);
}[/code]
Originally posted by ThePittmani only know how to start and stop each page and how to do buttons and stuff like that, if i don't know how to do something i either just Work around it some how or play about with it for a while
You should pick up a book if you are not going over it in class, this is the real power of Flash. Without it the website will just me more of an animation. Action Scripting is much like JavaScript and uses much the same language.This is a little bit of what I'm working on now
[code]on(press) {
play();
_root.x +=2;
_root.ibmcMovie.swapDepths(_root.x);
_root.ibmcMovie._visible = true;
_root.ibmcMovie.play();
_root.ibmcIcon._visible = false;
}
on(rollOver) {
gotoAndStop(2);
_root.x +=2;
_root.ibmcIcon.swapDepths(_root.x);
}
on(rollOut) {
gotoAndStop(1);
}[/code]
Originally posted by ScottieIt a good thing to learn, you can pick up some good books and do all sorts of stuff from games, to forms and what ever.
i only know how to start and stop each page and how to do buttons and stuff like that, if i don't know how to do something i either just Work around it some how or play about with it for a while
Originally posted by SelphieT😛 This is the page that I'm working on now, it's the web page examples at the bottom of the page
no. sneaky2 I didn't read anything you wrote.