is there a way to have a delay, say four or so frames between release and the time when the action takes place?
TIA
-Al
is there a way to have a delay, say four or so frames between release and the time when the action takes place?
TIA
-Al
in performing an action, you can use this very simple code.
place this code on a certain frame:
[AS]
ifFrameLoaded (1) {
timeToDelay = 5; // change to vary the time of delay.
delay = 0;
delay = j;
if (delay<timeToDelay) {
prevFrame ();
play ();
j++;
} else {
nextFrame ();
play ();
j = 0;
}
}[/AS]
Hope it helps. :thumb:
:: Copyright KIRUPA 2024 //--