Drag and Drop

mail us both then :wink:

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 :wink:

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 :stuck_out_tongue:

change this code for that, and it will work :wink:

[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. :slight_smile:

you“re welcome Kelley, can“t wait to hear the news :wink:

kitty, nice file there =)

Thanks. :slight_smile:

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. :slight_smile: