I know that you can drag the paint brush over the computer to turn it yellow or green, in one of your tutorials, but say when the paint brush was released over the computer, the computer moved from one place to the next. How would you go about writing that?
welcome to the forums ccr_dr, could you be a bit more explicit about what your trying to do ? what tut are you talking about ?
on (press) {
startDrag ("_root.yellow");
}
on (release) {
stopDrag ();
if (_root.yellow._droptarget == "/computer") {
// Put here what you want the comp to do
_root.computer._x += 10;
_root.computer._y += 10;
}
}
pom