Corona SDK is a mobile development framework for creating high-performance, multimedia rich applications, games, eBooks etc. for the iPhone, iPad, and Android devices.

learn more… | top users | synonyms

0
votes
2answers
10 views

Corona SDK - Handling Touch Events in Lua

I am working on a simple app in Lua to get a better feel for the Corona SDK: a red ball bounces around the screen and switches directions once the user touches it. However, whenever I click on the ...
0
votes
0answers
5 views

Requestiong JSON infromation from API. Cornoa

Im trying to make an app where i will gather information from a json api http://pool-x.eu/api, and print information easly bo choosing paramter. What is the easiest way to print each of the ...
0
votes
1answer
30 views

rotating object around point or other object using touch corona sdk

I am trying to have a number of boxes rotate like a ferris wheel based on touch input so imagine a ferris wheel on the screen and dragging one of the carts down would rotate the wheel one way and ...
0
votes
1answer
16 views

Social applications with Corona SDK

Is it possible / feasible to develop social applications with Corona SDK? I am talking about applications like Path, or a more feature rich application like Facebook for iOS? We are going to develop ...
0
votes
1answer
26 views

Stop a controlling object to move in Corona sdk

I have 2 controls in a space shooter-like game, which are left and right. The ship does move left and right and when the ship moves to the left of x=40 (far left), it will revert back to x=40 and ...
0
votes
1answer
33 views

collision event and display.newGroup. How to connect them together? Corona

I have a problem. According to the code below, I create an object x times (in this case 20 times) and add into a ballGroup. Moreover every one object should has body and react on "collision" physics ...
0
votes
0answers
19 views

collision filters difficulties

I am having difficulties getting collision filters to work, so i created this little code to understand more about it. But when i try to make this code work i have little success. local physics = ...
0
votes
0answers
9 views

Building for iOS with Corona SDK: multiple binaries are created, causing “Invalid Bundle Structure” error from Apple

I am building an app called 'ToyBox. When I build for iOS, I get a ToyBox.app directory which contains a ToyBox executable and the other typical iOS-related files (Info.plist, pkg.info, etc.), in ...
0
votes
1answer
30 views

Corona SDK data storage on simulator

new to Corona SDK, and i'm trying to figure out a way to load and save a file (which stores game data) on the simulator. (i dont want to have to debug on real device and take 15 seconds just to see a ...
0
votes
1answer
21 views

How to manage memory properly using Director class 1.4?

I am using director class 1.4 for changing scene to scene and i am wondering if the director class manages memory automatically or do i have to manage them manualy removing and nilling out every ...
1
vote
1answer
44 views

How to move object in corona sdk?

Hey i am using this code to move (animate) my objects on the scene But it leaks the memory and stop responding. //transition back local function goBack( ) transition.to ( wall2, { time = 10000, ...
0
votes
1answer
43 views

Passing arguments through timer.PerformWithDelay - Lua

I'm learning Lua language. I'm a little bit confused. I want to pass argument to function through timer.PerformWithDelay method. Here is code which I wrote: local function animate ( event ) ...
1
vote
2answers
35 views

Retina 4-inch iPhone 5 not desired top/bottom part

I am testing and implementation of SDK Corona as tested in xCode simulator are two areas at the top and bottom of the screen, which in the simulator iPhone5 crown are missing. I am using the ...
0
votes
1answer
12 views

Corona Client Side, I Receive Limitless Messages

I develop a client side on Corona SDK but I have a problem: I can connect to our server and receive the first message from the server. And also I can send back an answer. But afterwards I begin to ...
1
vote
1answer
46 views

attempt to call method 'insert' (a nil value)

How come I get a attempt to call method 'insert' (a nil value) error on the line containing insert? Changing it to instance.sprites = bg does make it work, but I want to return all sprites in a ...
-2
votes
1answer
24 views

No Sound when KeyEvent added

After adding this piece of code I have lost the sounds of my game. Even the volume control button does not work while playing. Solution needed as soon as possible. Thanks. ...
1
vote
2answers
34 views

How to detect two-finger tap using Corona SDK?

How can I detect when a tap is done with two fingers? The tap event can tell the number of taps, but not how many touches were involved in the event. Is there any way to figure it out? I have ...
0
votes
1answer
76 views
+50

Share an app with Friends with Corona sdk free version

I am trying to share my app created in corona sdk free version in facebook. But no working example found on internet. It seems there is a change in facebook api or policy. Does any one have created ...
1
vote
0answers
49 views

Corona SDK physics with line, why does the line turn into rectangle in the physics engine?

The issue I am having is simple. I have an object in the center of the screen, and then a circle orbiting that object. what i want to do is have the object orbit around the object, when the use ...
0
votes
1answer
20 views

Remove an object class in Corona

I have a new problem... I have a constuctor like this: function Box.new(indexBox, item, imgClose, imgOpen) -- constructor local object = { indexBox = indexBox, item = item, imgClose = ...
-1
votes
1answer
26 views

Falldown game platform going up effect? Corona SDK [closed]

I'm trying to recreate the game falldown in corona sdk and i'm having trouble getting the platforms to go up. I already have the platforms but I dont know the logic behing it to make them go up one at ...
0
votes
1answer
29 views

ERROR: attempt to index global object a nil value: corona SDK [closed]

I'm getting the error: Runtime error ...n-stylr\documents\corona projects\happy_day\game.lau:50: attempt to index global 'city1' (a nil value) My code is as follows: function ...
0
votes
1answer
53 views

Corona SDK: altering the display content view

Apologies if this is a common question. I have done searches, maybe i am missing the key words. I was wondering if its possible to manipulate the x and y coordinates of the screen view? Currently the ...
0
votes
2answers
25 views

Integrating mobile app and mobile web

Currently I am developing an app in corona sdk. It is still very early in the development stage so I can change the IDE or SDK if needed to achieve my goal. I wish to create an app that can be played ...
0
votes
1answer
35 views

How to check if a file exists in the system.DocumentsDirectory in lua (Corona SDK)?

Can i check if a file exists in system.DocumentsDirectory in Corona sdk? How can i do that? if ( myGameSettings exists ) then else end Thanks in Advance!
0
votes
1answer
42 views

How to create and save settings in corona sdk?

I am using this method to save settings for my game http://omnigeek.robmiracle.com/2012/02/23/need-to-save-your-game-data-in-corona-sdk-check-out-this-little-bit-of-code/ When should i use ...
0
votes
1answer
47 views

My Corona SDK game is not working on my android device. [closed]

I am developing a game in Corona SDK first when i started the game it was just 4 scene and i have tried it on my android device and it worked fine. I am using the director class to change from scene ...
1
vote
1answer
44 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 ...
2
votes
1answer
44 views

Acces function from constructor in Lua

I have a class in Lua. In this constructor I declare the variables (in an empty table) and after I want to acces to a function of the object to insert objects in this table. My code is this: local ...
0
votes
1answer
22 views

read from file into textbox corona

I want to read from a file into text box , where user can add more data then it will go as sms how can I do that i try some ready code , but always not working enter code here ...
0
votes
1answer
46 views

Obtaining position during transition.to in Corona SDK

I was wondering if it was possible to obtain a sprite x and y coordinates during a transition.to animationin using Corona SDK in lua? If so, how would I go about getting it?
0
votes
1answer
58 views

Corona SDK gotoScene error

So I'm making an app in Corona SDK and I'm getting an error when I click my button that is trying to load up my first level. Here are my codes: main.lua local storyboard = require "storyboard" ...
0
votes
1answer
40 views

Manual Collision Detection in Lua

So Im working on a simple rectangle rectangle collision for my game in Lua. I have an algorithm i was using for other projects for this type of collision but its in C++ and I know it works. The ...
0
votes
1answer
38 views

How to insert a table in to group in Corona SDK (.Lua)?

I get error message when i try to insert a table into a group My table code is containing images Here is the code i am using for the table local myJoints = {} for i = 1,5 do local link = {} ...
1
vote
1answer
28 views

How to use timer to check if event is occurred in Corona SDK

I want to check if a object is invisible or not using timer but the code i am using is not working like i needed it. here is the code i am using local function listener( event ) print( ...
0
votes
1answer
21 views

how to get selected string value from webpopup in corona sdk?

In my application i used webpopup in that i have to get string from webpopup.now i used corona:close?=id to get the string but that will be encoded.how to get that string correctly. <script> ...
0
votes
1answer
31 views

Lua Scope for Corona SDK

I was wondering How I might be able to access Obj.isActive from an outside function such as "Object:setActive()". I would pull it up to the Object table However i need multiple instances of the ...
0
votes
1answer
51 views

Animating an object with physics engine corona sdk without sprite animation

I have developed a game where I am using physics engine to fall an object. It is working fine. i just need to animate object a little while it falls. Is it possible to make object animated without ...
0
votes
2answers
47 views

Touch Hold Event In corona SDK

I was wondering how I would check if the user has touched the screen, but is holding their touch down and is not moving. Please help if you have anything I can go from. Ive been looking around and ...
-1
votes
4answers
30 views

Corona SDK animation not working with the director class?

Hey there i am trying to use animations in my game but for some reason i get error Here is my code i used for animation local function animate( event ) gear.rotation = gear.rotation + 10 end ...
0
votes
1answer
29 views

call transition.to with id: corona SDK

In one of my corona apps, I've to apply transition to objects with certain id. How can I do this? local ball = display.newImage("ball.png") -- sample, actually there are random no. of balls ...
0
votes
0answers
50 views

Metatable events in lua

So I was wondering how I would be able to create a dispatcher and listener to and from an instance of an object. Example: Person - an instance of a person Ball - an instance of a ball Person - ...
1
vote
1answer
41 views

Hiding object with specific location

I'm new in Android games using corona and I use a timer to make a local display of coin with a 50x repetition. What I'm trying to do is if the character collide in on of coin the coin will disappaer, ...
0
votes
1answer
45 views

Issues with eventListeners in Corona SDK, lua

Im having a problem creating a event in my program. when I try running it with the following system setup i get the error "attempt to call method 'addEventListener (a nil value)" The effect im ...
0
votes
1answer
24 views

Issues with setting a property

Below is the gist of the system i'm having issues with. I seem to understand self, ., and :. I just seem to be missing something. What's happening is that when it calls ...
0
votes
1answer
35 views

Lua Create multiple collisions

I'm trying to create a break breaker game that contains brinks that can be hit twice before the disappear. I have tried: --FOR STRONGER DEFENDERS for i = 1, len do for j = 1, ...
-4
votes
1answer
41 views

need a restart.lua code for when timer = 0 [closed]

-- Remove bugs when touched and free up the memory they once used local function removebugs(obj) obj:removeSelf(); -- Subtract a bug for each pop bugs = bugs - 1; -- If time isn't up ...
-2
votes
0answers
17 views

I Need A Restart.Lua For When Time Runs Out And Wen All Bugs Are Squashed [closed]

I Need a code For corana so when the time ends / when all bugs on the screen have be clear ... it pops up with a restart button
1
vote
1answer
36 views

Corona Plugin from iOS static library (.a)

I'm new to CoronaSDK. I'm trying to make a plugin from my iOS static library (.a) which will be used in CoronaSDK (in a .lua file). Can you guide me through it? Thank you in advance.
0
votes
1answer
23 views

Hiding the Previous Sprite

I'm new in creating Android games using corona and I'm trying to create a character that move's using the codes below. My problem is it leaves the sprite mark when moving. How can I hide or erase the ...

1 2 3 4 5 18