(SOLVED)Not sure what/where the problem is


Uhhh, stop() is a function…right?
I don’t understand what the error is trying to say…

Could you share your wick project to help you with that?

Sure!
shrink n’ grow (BUGGED)12-22-2020_1-21-35PM.wick (25.3 KB)

i saw the project file and tested it and i got no bugs

It runs well the first time around. Then it starts with that problem… I’ll take a deeper look in the afternoon.

1 Like

Hey @Steven, what editor version are you using?

I’m using 1.18…

Found the problem! You have the script

project.stop = 1 

in your bouncy object. This actually deletes the stop function from the project. Choose another variable name and this should work fine!

Tried it, problem’s still there.

You can replace stop() function with this:

gotoAndStop(project.currentFrameNumber);

shrink n’ grow (BUGGED)12-22-2020_11-49-02AM.wick (25.3 KB)

Let me know if this works

1 Like

Thanks!
It worked!

1 Like