Display Objects Disappear + Scene Changes Fail

Sorry to post this much code but Ive been working on this for days nad no proggress! So I have 2 scenes, however the second one has issues. Whenever I try to use a director transition it doesnt work. Also, inserting display objects makes them disappear!

DOWNLOAD
http://www.mediafire.com/download.php?2tx9p827c2ge97s

Any ideas? Thanks so much! [import]uid: 59735 topic_id: 17694 reply_id: 317694[/import]

Could you upload a zip somewhere that people could look at, maybe? No one can just test this.

For objects disappearing - you mean when you put them in localGroup? Or just when you add them?

Peach [import]uid: 52491 topic_id: 17694 reply_id: 67372[/import]

yes. in the perform.lua, inserting the arrow or x2 makes id disappear, also transitions do not work. Here is the download http://www.mediafire.com/download.php?2tx9p827c2ge97s [import]uid: 59735 topic_id: 17694 reply_id: 67501[/import]

I just tested this in the latest daily build and I can’t see what the problem is - director transition works, the web popup just appears too soon. (You could put a timer on it.)

The transition I tested was “overFromRight”.

Also, your arrow shows fine.

Peach :slight_smile: [import]uid: 52491 topic_id: 17694 reply_id: 67705[/import]

If its still convenient, add the code

localGroup:insert(arrow)
localGroup:insert(2)

into the perform.lua and they disappear. [import]uid: 59735 topic_id: 17694 reply_id: 67728[/import]

Insert the background into the display group FIRST and will show up fine.

Like this;
[lua]localGroup:insert(back)
localGroup:insert(arrow)
localGroup:insert(x2)[/lua]

Peach :slight_smile: [import]uid: 52491 topic_id: 17694 reply_id: 67752[/import]