Hello! I’m new here and didn’t find any topic about that… I might have missed it, if so, I’m sorry for the spam.
I’m using Wick Editor Version 1.19.3.
I’m trying to make a button next. There is a text block, when I click on the arrow, it goes to another text and if I click a second time, it goes to the next frame. My problem is that it only switches to the second text but then nothing happens. I can’t go to the next frame.
Here is how I’ve coded it:
Default:
man_text.setText("Oh! Hello there! \nAre you new here ? \n I've never seen you around.");
project.click = 0;
MouseClick:
project.click += 1;
if (project.click == 1) {
man_text.setText("You came to rest and visit the island? \n Then you should visit the abandoned Pirate ship \n at the east. No need to thank me. Enjoy!");
}
else {
gotoAndStop(6);
}
Thanks for your help, dear community!