[Resolved] Can I make the WebPopup appear with a delay?

I have an app made out of Director Class screens with a fade effect between them. One of them has a WebPopup, and it just pops out before the fade effect finishes. How can I time its appearance? Is it a matter of making it local, inserting it into the local group somehow?

[lua]native.showWebPopup( 320, 110, 650, 600, “–” )[/lua] [import]uid: 102175 topic_id: 27341 reply_id: 327341[/import]

Nevermind, I figured it out:

[lua]local function listener( event )
native.showWebPopup( 320, 110, 650, 600, “–” )

end

timer.performWithDelay(
1000, listener )[/lua]

Sorry, learning curve :slight_smile: [import]uid: 102175 topic_id: 27341 reply_id: 111063[/import]

Marked as resolved - thank you for updating with your solution, will help others with their own learning curves :slight_smile:

Peach [import]uid: 52491 topic_id: 27341 reply_id: 111126[/import]