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

learn more… | top users | synonyms

10
votes
2answers
5k views

Using IntelliJ IDE and Lua Programming Language to make Corona Applications

I have successfully installed: 1) IntelliJ IDEA 10.0.3 with Lua Plugin 2) Corona SDK 3) Corona API for IntelliJ I can now use autocompletion features of Lua and Corona using IntelliJ IDEA Now my ...
5
votes
5answers
2k views

Corona LUA and OOP Design

So I come from the traditional game development that uses OOP principles and from what I've seen you can mimic this using LUA once you know what you are doing. In some of the code postings I found out ...
5
votes
2answers
236 views

LUA (Corona SDK) math.floor() return wrong value with increment of 0.1

I have a strange bug when i use Math.floor function on double values incremented of 0.1 each time. It happens only with an increment of 0.1 and start at value 5 Exemple : math.floor(4) return 4 but ...
5
votes
2answers
4k views

Corona SDK Cross Device Screen Resolution

This is going to be one of those awkward questions looking for an answer that probably doesn't exist, but here goes. I've been developing some simple games using Corona and whilst the functionality ...
4
votes
2answers
765 views

Corona SDK produced iPhone app size

I have built the following app for Corona SDK local hello = "hello"; print(hello); using iPhone as a target.. The final binary is staggering 8.7Mbytes.. This is a real problem when I try ...
4
votes
1answer
420 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 ...
4
votes
1answer
67 views

Custom collision

I was recently assigned to create a siple game using the Corona SDK. The main pillar of the game would be a simple event: the user should put a ball in a basket, and I should be able to handle this ...
4
votes
3answers
513 views

In Corona SDK How to hide a group if application suspended?

I am building a word game and I want to hide the board when application is suspended? the code looks fine however it givs a strange behaviour!!, when I suspend the app nothing will happen but when i ...
4
votes
1answer
116 views

Corona tabbar rendering precision

I'm trying to build a tabbar in corona only using custom graphics for up/down states, and background. I find that corona adds left and right padding as the attached image & basic setup below ...
4
votes
2answers
387 views

Split screen multiplayer game in Corona SDK

I made a simple game in corona sdk. Now I want to make it a split screen multiplayer game. I want to use my single player game as an unit game. Then I want to run two different unit in two part of ...
3
votes
4answers
11k views

Which is better for building a game, Corona SDK or Xcode? [closed]

I recently looked at Bubble Ball's website, and it says Built With Corona SDK. I've never heard of Corona, and, from what I read, it lets you create games for devices with very little code. I'm not ...
3
votes
1answer
366 views

why can't this Lua function using a self “:” be marked “local” without getting “'(' expected near ':'”

Why can't this Lua function using a self ":" be marked "local" without getting: '(' expected near ':' That is, in the code below things work. But why can't I make the "scene:createScene" ...
3
votes
1answer
77 views

Creating a class with and image in corona

I'm trying to create my own class in corona based on this example It looks like: local car={}; local car_mt = { __index=car }; function car.new() local ncar= { ...
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 ...
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 ...
3
votes
2answers
1k views

Scrollview touch event in Corona SDK?

I have scrollview widget with one child (myrect) I want to detect the touch ended event for "myrect" however currently it only detects the "began" phase !! here is the complete code --main.lua ...
3
votes
1answer
221 views

Scaling masked images in Corona SDK

I have a masked image like so: local mask = graphics.newMask("1_mask.png") local image = display.newImage("1.png") image:setMask(mask) image.maskScaleX = image.xScale image.maskScaleY = ...
3
votes
2answers
1k views

Corona SDK - Call an instance method or class method from an eventListener

I've got a Foo class (well, a pseudo-class) set up as follows: --in foo.lua Foo = {} --constructor function Foo:new(x, y) --the new instance local foo = display.newImage("foo.png") -- set some ...
3
votes
1answer
184 views

stretch an object

I have a image of a string of size 12*30. I want to create an animation such that it gives a feel of stretching of a string. I did it by scaling the the image but problem I am facing that the ...
3
votes
1answer
192 views

Calculate a circular wrapper?

I just started learning iphone development and after a friend recommended Corona SDK for the ease of use I finally decided to try it out. Now, I've just started learning how to use the accelerometer ...
2
votes
3answers
813 views

is there a shortened “if then” syntax available in Lua?

Is there a shorted "if / then" syntax available in Lua (I'm using Corona SDK specifically), like in some other languages... In particular along the lines of: res = (a == b) ? "It worked" : "It did ...
2
votes
3answers
84 views

Detect if last character is not multibyte in Lua

First question. What's the easiest way in Lua to determine if the last character in a string is not multibyte. Or what's the easiest way to delete the last character from a string. Here are ...
2
votes
4answers
1k views

Can I use Corona sdk for making non-game apps?

Can I use Corona http://www.coronalabs.com/products/corona-sdk/ for making non-game apps? I mean non-game application with a lot of buttons, tables, charts, reports,selects and so on. I need it to ...
2
votes
1answer
2k views

how to do continous action on corona in tap function

hey m beginner..how to do continous action on corona in tap function...i mean when event.phase="began" and until its tapped the action repeats until its ended...hope u understand my question...
2
votes
3answers
963 views

how to slow down the movement of physics objects in Corona SDKs

I want to slow down the speeds of objects moving with phyics...I want them to move in the same way but to slow down there speed.I hope u understand my problem.thanks
2
votes
1answer
76 views

Stop counting score on game over

i like to have a trigger to stop counting the score when an event happens, function restartStopScore() score = score + 0 end will not work score = 0 local scoreText = display.newText( ...
2
votes
2answers
365 views

Corona sdk : Is there a difference between audio.play() and media.play() and which one is better?

Is there a difference between audio.play() and media.play() and which one is better?
2
votes
2answers
268 views

Iphone game help needed

I want to build game similar to Iphone doodle jump. Can anyone tell me the best framework to use for its development which is faster and easier ? I am confused between cocos2D, Sparrow and Corona ? ...
2
votes
1answer
457 views

Get Corona image size without loading it

I would like to know how to obtain image size using Corona without loading them and call obj.width. Is there a way?
2
votes
1answer
899 views

Corona SDK ScrollView preventing the masked area from being touched?

I want to set my newscrollview to a specific height there are two ways to do that 1 - either by setting the height property, or 2 - by using masks the problem is when you change the ScollView size ...
2
votes
1answer
886 views

Memory management in corona sdk

I have done one project in corona sdk for iPad and android,in that four main modules are there,and one module also has some sub modules.for changing the scenes I used director class. Eventhough I ...
2
votes
2answers
831 views

Splitting a multibyte string in Lua

I have a multibyte string in lua. local s = "あいうえお" How do I take the string and split it into a table of strings? In English texts, then I can use this code. But this does not work with the ...
2
votes
2answers
219 views

Corona SDK: Restart an app only when user press “home”

Using corona SDK, i would like a clean restart of my app, everytime the user hits the homebutton. If he/she receives a phonecall, pulls down the dropdownmenu and so on, I would like for the app to ...
2
votes
2answers
108 views

Is it possible to make zip files in corona?

I need to send files to server, though the file size is approx. 4-5 MB but file numbers are around 40-50. So can we make compressed folder in lua and send it to server? I am able to extract the zip ...
2
votes
1answer
1k views

Corona SDK custom physics bodies

i have some trouble with the custom shapes in corona. Here is my code and what it does is that i'm adding some spheres to the scene so that they fall inside a basket, this basket is the custom shape ...
2
votes
3answers
1k views

method for serializing lua tables

I may have missed this, but is there a built-in method for serializing/deserializing lua tables to text files and vice versa? I had a pair of methods in place to do this on a lua table with fixed ...
2
votes
1answer
205 views

Why is this function not making multiple bullets?

I am working on a function to shoot multiple bullets here it is: local function shootBullets ( event ) local bullet = display.newImageRect("images/Bullet.png", 12, 12) --Create the bullet image ...
2
votes
2answers
1k views

corona sdk does not support mp3 play?

I hope to use Corona sdk to develop a new game. But I can not find out the api playing mp3 file. Does Corona sdk support playing mp3 stream? Welcome any comment
2
votes
2answers
38 views

pass an array objects in Corona with class

I'm creating an app with Corona structured in Class and I have a problem when I want pass an array objects for create an object. I have this: main.lua local SurpriseBoxClass = require("SurpriseBox") ...
2
votes
2answers
183 views

Corona SDK. Longer button pressure -> stronger effect (e.g. higher jumps)

I can't figure out any way to implement it in Corona. Have you got any idea\suggestion? Thanks!
2
votes
1answer
927 views

Corona SDK or Appcelerator

Which is a better mobile cross-platform development framework - Corona or Appcelerator Titanium?Basically I just want to create a "mail framework" for my application.
2
votes
2answers
303 views

How can I convert time in ms to yyyy-MM-dd'T'HH:mm:ss.SSS'Z' format?

I write mobile application with Corona SDK that interacts with Facebook. On user's Facebook login I receive "expiration of access token" from Facebook in ms. I want to send it to Parse.com (SAAS) in ...
2
votes
3answers
196 views

how to trigger event on stopping a moving ball in corona sdk

I am trying to make a game in Corona which involves hitting the ball in a certain direction using the force vector. I am trying to trigger an event when the ball stops. I cannot use the "touch" event ...
2
votes
3answers
517 views

Is there a better way of linking transitions in Corona Lua?

I'm currently animating a trash can when something gets dragged and dropped onto it with this code: local trashUp local trashDown trashUp = function() transition.to( trash, {time=100, ...
2
votes
1answer
54 views

Image loading taking too much time in android device?

In my game,i used more physics object.so its taking to much time to load images.but only in android device.In simulator its run perfectly.but i had problem in android device.please help me.After all ...
2
votes
2answers
194 views

Corona Lua waveform sound synthesis

I would like to make a sound synth using the Corona SDK, which means in pure Lua. All the Lua synth programs rely on an underlying C program. Is there any Lua library that generates waveforms?
2
votes
1answer
312 views

When does the touch event in Corona have a “cancelled” phase?

The touch event in Corona has 4 phases: "began", "moved" , "ended" and "cancelled". When does the event receive the "cancelled" phase? (I didn't find a function that you can cancel the event with it, ...
2
votes
1answer
963 views

Cutting image within an image with Corona SDK

I was wondering if it's possible to cut an image within an image with the Corona SDK using your finger? If it is indeed possible, I'd like to know how. It's for an iphone game. Thanks.
2
votes
3answers
3k views

How To Restart Scenes In Corona SDK?

Am using Corona's SDK storyboard API, in my app I want to let users "try again" the level. I though simply calling storyboard.gotoScene("level20","flip") where level20 is the current scene, after ...
2
votes
4answers
3k views

How can I access IPhone camera to take a picture Using corona

I'm new to programming and making an app for iphone and android with Corona SDK.I want to take a picture with Iphone camera and then save it for further work . How can I access the camera of a device ...

1 2 3 4 5 10