ex-GS users switching to CORONA

Wow that was fast, got to love the interaction and care from the owners/developers of corona.

Thank you :slight_smile: [import]uid: 6981 topic_id: 2645 reply_id: 7830[/import]

home>library>application support>________
nothing in there for corona
everytime i start the simulator it says expired and doesnt let me do anything but quit [import]uid: 7911 topic_id: 2645 reply_id: 7827[/import]

This might help those looking to get started!!!
http://www.ijustwannamakesomegames.com/forum/index.php?topic=24.msg167#msg167

See you tomorrow AM!!! [import]uid: 9492 topic_id: 2645 reply_id: 7831[/import]

@eric
if you passing them out ill take one i really want to do this even more than i wanted to do something i think they called gs [import]uid: 7911 topic_id: 2645 reply_id: 7832[/import]

@ syn
hey i think i read somewhere you had the same problem as me do you remember how to fix [import]uid: 7911 topic_id: 2645 reply_id: 7833[/import]

@eric I’d love one :slight_smile: [import]uid: 8300 topic_id: 2645 reply_id: 7834[/import]

Oh guys… I work during that time, is there a pm session or class? [import]uid: 9979 topic_id: 2645 reply_id: 7835[/import]

or, if you could just record it and have it available for recasting / redownloading later in the day, that’d be awesome. [import]uid: 8300 topic_id: 2645 reply_id: 7836[/import]

@jstrahan…
Wasn’t me. Sorry. [import]uid: 9492 topic_id: 2645 reply_id: 7837[/import]

@synthesis
thanks anyway
i know one of my fellow ex-GSer’s here had the same problem if you please help [import]uid: 7911 topic_id: 2645 reply_id: 7838[/import]

I really want to learn! In about a week I plan to buy corona but I really wish I got it with the pre release pricing. Now I just need to learn how to use events… And jump… Big to do list!

-Gamexcb
[import]uid: 8517 topic_id: 2645 reply_id: 7840[/import]

ok never mind i found the post and carlos’ answer thanks anyway now im ready hopefuly ill have something going in a little bit [import]uid: 7911 topic_id: 2645 reply_id: 7844[/import]

More importantly…you need to learn the power of Functions and Tables.

Don’t focus on the details just yet…get the big pictures first. Use the starter Lua Resources as well as the Corona References.

Sorry…wrong thread of yours GameXCB…
These email notifications are confusing sometimes. [import]uid: 9492 topic_id: 2645 reply_id: 7843[/import]

Yeah im looking into Tables and Functions, but WHAT are they?! [import]uid: 8517 topic_id: 2645 reply_id: 7850[/import]

tables are things we eat at lol
and functions just sound fun [import]uid: 7911 topic_id: 2645 reply_id: 7851[/import]

READ!!! Seriously…you got to step back and read through all the literature. If you don’t know what a function is…then you shouldn’t be coding yet.
Hit the books for a week.

THEN start coding:
Try this “getting started” material:
http://www.ijustwannamakesomegames.com/forum/index.php?board=29.0 [import]uid: 9492 topic_id: 2645 reply_id: 7852[/import]

If you’ve ever coded before, tables are like arrays, but I think they’re a little easier to use personally. If you’ve never coded before, you should definitely look at the getting started material posted above, and start trying to get your head wrapped around Lua or everything might just confuse you.

I had prior experience with PHP and some other languages so Lua was very easy to pick up. I’m not so sure if that would have been the case if I had NEVER programmed before. If that’s where you’re at, definitely go through some Lua tutorials. Don’t get discouraged though, Lua is still one of the easiest programming languages I’ve ever seen.

Functions, on the other hand, can simply be thought of as a block of code that can be called later on in the code (of course, it can be more complicated than that but that’s the simplest way to put it). For example:

[blockcode]
local myFunction = function()
– The following will happen, but only when myFunction() is called:
print( “This is my first function!” )
end

– Sometime later on in your lua file…
myFunction() --> this will execute the block of code you wrote above
[/blockcode]

And anything that is preceded with “–” is a comment, btw.

Hope that helps! [import]uid: 7849 topic_id: 2645 reply_id: 7853[/import]

Oh I have coded before! I have coded C, Some Objective-C, HTML, and some Actionscipt! I didn’t mean to write function on there. Just tables. Thanks synth! I’ll take a look.
-Gamexcb
[import]uid: 8517 topic_id: 2645 reply_id: 7854[/import]

@Gamexcb: If you have coded in C, “some” Objective-C, and ActionScript… then Lua will be an absolute breeze for you.

I used to code web database-driven sites mainly in PHP and I loved it. Lua is even more simple and it has become my favorite language even in the relatively short time I’ve been using it. I only use PHP to supplement some “web” features in my Corona apps now. [import]uid: 7849 topic_id: 2645 reply_id: 7856[/import]

@jonbeebe
i posted a problem i got in the lua programming forum if you could help that would be great

we really need a central page where all new post go otherwise if someone doesnt go and look for new post in other parts of the forum they may never see some ii know im jumping all over [import]uid: 7911 topic_id: 2645 reply_id: 7857[/import]