Sorry if I ask some noob questions but I'm still getting used to Gideros (though I've got the hang of it quite a bit already). I want to know if there's a list of all events available, as I haven't found them in the Reference. Probably I haven't looked in the right place.
Comments
the events are usually listed with the Class they are used in.
so for example, you can expand the Sprite class and see that on its main page and in the list of methods there are Events in the end
http://docs.giderosmobile.com/reference/gideros/Sprite#Sprite
adding these at the end of the Events entry would make a lot of sense, specially if someone wanted to also know the data passed on each of the event type.
@all
If you want to find the members of an event, use this simple code
Author of Learn Lua for iOS Game Development from Apress ( http://www.apress.com/9781430246626 )
Cool Vizify Profile at https://www.vizify.com/oz-apps
@OZApps thanks for the tip as well!