Anyone do this yet using Corona? [import]uid: 1896 topic_id: 250 reply_id: 300250[/import]
Hi,
You want some src code for “Tap To Start”
carlos [import]uid: 24 topic_id: 250 reply_id: 315[/import]
pseudo code would be great, or just a set of steps… I’m sure it’s been done before I just want to do it the right way instead of just “a” way… [import]uid: 1896 topic_id: 250 reply_id: 318[/import]
local image = display.newImage(“tapbutton”,25,25);
function runApp()
– add your code logic
end
function image::tap(event)
runApp()
end
image:addEventListener(“tap”,image)
Something like this should work…
C [import]uid: 24 topic_id: 250 reply_id: 319[/import]
Sweet. I was able to modify this to fit my needs. Thanks Carlos. [import]uid: 1896 topic_id: 250 reply_id: 322[/import]