Corona SDK is a mobile development framework for creating high-performance, multimedia rich applications and games for the iPhone, iPad, and Android.
1
vote
5answers
721 views
In Lua, how do you find out the key an object is stored in?
How would you print() out or find out the index of an object?
For example, if I spawned 20 random rock objects on screen into an array RockTable = {};
Like this RockTable[#RockTable + 1] = rock;
...
1
vote
4answers
2k views
Building iPhone apps through Corona: How do I create a fake signing identity and provision file?
I'm using Corona to create a game but to build the app for iOS I need to specify in Corona which provisioning profile to use (which I have to copy to their certain folder).
They state that either a ...
0
votes
0answers
123 views
director: (params) error on 'menu'
This is my menu.lua and it works in the virtual coronasdk sim but not on my tablet. THe app opens the intro.lua after a touch event I enter the menu.lua. The screen returns this error:
Director Class ...
3
votes
2answers
590 views
middleclass problems
I'm using the LUA middleclass library now after some problems and I have a situation that I can't seem to figure out.
Say I have my class: EDIT: Had a typo: here is the actual functions
require ...
1
vote
2answers
1k views
sharing my app through facebook in corona Sdk
I'm beginner to corona sdk and programming , I want to share my app via facebook to my freinds.I want a button that connects to the facebook through my app and my default message will be send to my ...
4
votes
1answer
416 views
LUA and Corona error: Attempt To Call Method ' ' (A Nil Value) - Driving Me Crazy
I would ask your help for an error that is driving me crazy.
Ohh... I'm using LUA with Corona SDK btw...
I am creating an instance of a ship. The ship is being instantiated, I can access its ...
3
votes
1answer
119 views
jump object on collision
I am trying to implement a bar that rebounds the object falling on it. however I just want the object to rebound when it falls on it from above the top edge. if the object is comming from bellow the ...
1
vote
1answer
42 views
Lua: Problems with menu
Ok. So I am coding a Corona program, and in the book I have followed all the instructions to create a menu and create a new game scene. Problem is nothing happens when I put the code into the emulator ...
0
votes
1answer
105 views
Corona facebook.logout() when the Official Facebook app is installed on device
I have a little issue when I want to logout from Facebook and the official Facebook app is installed on device.
After facebook.logout() is called then I call the new facebook.login( appId, ...
0
votes
2answers
817 views
How to create/work with layered images using Lua/Corona SDK?
Suppose I want an animated smiley face composed to 2 layers: the face background + face foreground.
The background layer is a simple color/texture.
The foreground layer is the animated layer ...
0
votes
1answer
423 views
Developing spring action in corona
I am trying to develop a spring which has its one end attached to a static roof and the other end has a body with mass m attached to it.
Whenever I drag the load(body attached to spring) the spring ...