ok here is the problem. i have a flash movie happening… with a custom cursor (using the startdrag command as per usual). now i have a volume control slider that also uses the startdrag command and it steals my cursor! (by steal i mean it takes one of the layers (out of 7) of my cursor) and wont let me move it anymore! the rest of my cursor moves with the mouse as usual.) not sure if this is a startdrag related error (on my part probably) but if anyone can help me i’d be muchly appreciative!
cursor actions:
Mouse.hide();
startDrag (“curse”, true);
volume slider actions:
on (press) {
startDrag (this, false, GetProperty("…/track",_x)-GetProperty("…/track",_width)/2, GetProperty("…/track",_y), GetProperty("…/track",_x)+GetProperty("…/track",_width)/2, GetProperty("…/track",_y));
}
on (release) {
stopDrag ();
}
any suggestions or ideas would be grat! thanks!