mail us both then
I did what you said Kax but itās still too large. Iāll email it to ya Guig maybe you can figure it out.
Did you get it Guig?
nope.
did you send to g u i g 0 _ r j @ y a h o o . c o m . b r ?
with zero, _ (underscore) and .br ??
i just copied it from your post and pasted it.
iāll try again.
without the spaces between the characters⦠that is just to confuse the spam bots that spy on forums
I thought I took them all out. I deleted a letter or something. I sent it again.
Ok Good luck G!
ok checking it nowā¦
so, when i droped all the options in their respective box, what exactly is suposed to happen?
use as much details as possible on this reply (instance names, clip names, effects, etcā¦)
the continue button should be red?
is that?
or blinking red and white?
The blinkmc plays (which is the continue button flashing red and white.)
blinkmc is stopped at first frame if it goes to frame two it will play (blink) until you click the button again. look at the other pages.
flashing continuosly?
so far it just turns redā¦
yeah thatās the problem. Somehow itās just sticking at frame 2 of the blinkmc. I went into the blinkmc clip and it looks fine.
I got it Kelley =)
this piece of code is the problem:
[AS]draggedOK = 0;
this.onEnterFrame = function() {
if (draggedOK >= 6) {
blinkmc.gotoAndPlay(2);
delete this.onEnterFrame;
}
}[/AS]
you are deleting in the wrong way, so the loop never ends. that way the blinking mc get stucked playing frame 2 endlessly
change this code for that, and it will work
[AS]draggedOK = 0;
this.onEnterFrame = function() {
if (draggedOK >= 6) {
blinkmc.gotoAndPlay(2);
delete draggedOK;
}
}[/AS]
but, i must add, it would be best if you delete the entire function, but for the life of me i dunno why your previous code didn“t worked :crazy:
Oh Guig youāre a life saver. I was so stumped. Iāll try it first thing in the morning and let you know if all is well.
Thanks so much again.
Kel
It might be a bit late, but hereās an .fla that I wrote a few years back that uses drag and drop. You can take that to pieces, as it does a similar thing.
you“re welcome Kelley, can“t wait to hear the news
kitty, nice file there =)
Thanks.
It was a game for kids that I had to make a while back. My first ever drag and drop, that was. Took me ages to figure it all out properly.