What do i need to do for the hello to appear 1st and the GoodBye to appear some seconds later when i hold X button?
the good tutorial dosent tell it so i m :(
This is the code that i m stuck at
Code:while true do
blue=Color.new(0,200,350)
screen:clear()
pad = Controls.read()
if pad:cross() then
screen:print(200, 70, "Hello!", blue)
screen.waitVblankStart(50)
screen:print(200, 100, "GoodBye!", blue)
end
if pad:start() then
break
end
screen.waitVblankStart()
screen.flip()
end
