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

1
vote
1answer
21 views

What is the difference adding view directly without following code

function main() display.setStatusBar( display.HiddenStatusBar ) mainGroup:insert(director.directorView) director:changeScene("titlescreen") end I'v not used this code instead ...
0
votes
4answers
262 views

Corona SDK - buttons and character sprite animations not showing up on my phone, but is fine in emulator

My situation in a nutshell : http://i.imgur.com/wUpMgX5.jpg This is my main.lua file: http://pastebin.com/1t2rhim1 Anything in main( ) starting in ---PLAYER--- does not show up when I try to play ...
0
votes
1answer
131 views

corona sdk - collision detection on object that changes size

Hey I'm wondering how to check for collision on an object that grows each time it hits a certain object. I can get it to grow and recognize collision, but as the object grows, the collision hit box ...
-2
votes
1answer
48 views

How to make physical odd shaped object in corona [closed]

I want to make sonic type game in corona for that I want to add physical body in it but those bodies are not regular shaped, ie circle, or line, rectangle they are curved in manner so I need to give ...
0
votes
0answers
45 views

LandScape Orientation For camera API in iPhone is not working

I am creating an app that uses device camera. I need to run my app in only LandScape mode. It worked fine for iPad but when I tried it in iPhone, a runtime error occured and on device console, I found ...
0
votes
0answers
145 views

Changing a global variable in an eventlistener in Corona SDK

I have a "circle" with another circle in it. Both circles have an arrow that the user can drag around them. I'll show it in a picture. I have an eventlistener that takes some parameters so that I can ...
0
votes
2answers
107 views

Error Submitting App To App Store with UIRequiredDeviceCapabilities Corona SDK

I have never changed my build settings and I submitted my app to the app store a couple weeks ago with no problem. I tried submitting an update today and I got the error This bundle is invalid. An ...
0
votes
2answers
318 views

Corona SDK: iPhone 5 adjustment

I am using the following config.lua file when creating my mobile application. The screen will not adjust to iPhone5 when building to device. It will, however, adjust when running on the simulator ...
0
votes
2answers
151 views

How to shift and mask bits from integer in Lua?

I'm porting an Objective-C iOS application to CoronaSDK which uses Lua. I have a signed 16-bit integer and I want to isolate the high and low bytes in it. In C you can simply do: uint8_t a = (dx ...
0
votes
3answers
133 views

Moving a character with Lua

I am new to Lua and am attempting to simulate a character moving. I have the character moving left and right at the moment. I would like the character to move 16 pixels at a time. That works fine ...
1
vote
1answer
180 views

Corona SDK Touch Phases - Touch and Hold

Hi I am trying to make a game in Corona where if I tap and hold the screen the wheel will rotate but it only rotates when i keep tapping the screen how to I change this so that as long as my finger is ...
-3
votes
2answers
59 views

Make something happen every 500 points [closed]

I am working on a game and I want to make something happen every 500 points, and make it infinity expandable. Is there any efficient way to do this? Any help is appreciated
1
vote
1answer
132 views

Corona SDK array index is beyond array bounds, advice needed

I will try to as concise as possible with my issue. Firstly, files are: block.lua base.lua main.lua In block.lua I create a block, add collision detection and a cleanup code. In base.lua I create ...
0
votes
2answers
173 views

Corona SDK: storyboard.gotoScene with effect

I am trying to use the effect slideLeft when transitioning between my menu storyboard and a storyboard called "search". The scenechange works, however there is no effect applied to the transition. ...
0
votes
2answers
44 views

touch event not being removed, keeps working no matter where I touch the screen

I have a word search game that has tokens and users can use them to reveal the word they have to find. but my problem is after i have clicked the token i cannot highlight the word i found in the word ...
2
votes
1answer
57 views

How to use a camera in Corona Simulator?

I'm wondering how to use a camera in Corona Simulator. I want to test my app (which requires a camera) out on the simulator but i don't know how to enable usage for a camera. Is there anyway to set up ...
0
votes
1answer
175 views

Corona sdk scoring?

I'm trying to make a scoring system that displays an all time score across every scene, when a user completes a scene the score from that scene is added to the all time score. I get 1 error in the ...
1
vote
0answers
56 views

corona network.download() is not working on android

i have a function which downloads a weather xml feed and displays it now, if it can't get a connection it loads in the last report or a blank one if its the first time downloading. this part seems to ...
0
votes
1answer
86 views

Corona. I can't access to a local variable from a function

SDK Corona I want to execute --> movboton:setSequence( "apretado" ) <-- for change the Sequence of the ImageSheet. it works if I execute it outside the function but when I try from the function. I ...
1
vote
1answer
103 views

Dynamic image creation with touch action in corona

I have touch problem with dynamic image creation. my code is local widget = require "widget" --Hide status bar display.setStatusBar( display.HiddenStatusBar ) --bg image local backgroundPortrait = ...
1
vote
1answer
226 views

Corona: display.newImage() vs display.newImageRect()

What is the difference between display.newImage() and display.newImageRect() ? Which one is better to use?
0
votes
2answers
108 views

adding objects to screen in corona sdk without defining x y coordinates? corona sdk

A very simple beginners question... I assume this must be possible.... How do you add objects to a screen in Corona (take simple standard widget items like buttons) in a way that they just appear ...
0
votes
0answers
40 views

corona: Building to andriod new build error

since they released the expantion apk update on corona i thought id try it so i can finally release now i've been getting this error The following error occurred while executing this line: ...
0
votes
1answer
98 views

How to go to previous scene in corona sdk?

basicly if the user has never played the game before i want it to take them to scene1, if they haven't i want it to take them to the previous scene they were on, how do i do this. I've been trying a ...
1
vote
1answer
199 views

How to quit the application from the code

I am building a game using corona sdk. Inside the game, at the menu, I have an EXIT button. I want to know how I can quit the application and get to the mobile home screen or mobile menu? In other ...
0
votes
1answer
189 views

corona sdk - scene keep old items

I'm using director , to move from one scene to another.. I have a problem that the buttons and text fields from intor still in the top of screen when moving to any scene how to remove items (text ...
0
votes
2answers
331 views

Removing objects created by another class in Lua / Corona SDK and storyboard

I'm trying to figure out the best way to fix a memory leak in my app and use external classes. I am coding in Corona SDK and using Storyboard. I don't think I am removing objects properly when I ...
0
votes
1answer
103 views

Corona SDK - Can you change the device's volume setting or at least get the device's volume setting

Corona SDK has apis like audio.setVolume and audio.setMaxVolume and audio.getVolume But it seems as though these do nothing more than change the maximum volume in the Corona environment or get the ...
0
votes
0answers
27 views

Corona SDK (orbiting)rotating object around another object [duplicate]

I'm trying to rotate object around another object like earth rotates around the sun. I was wandering if it is possible to do that in corona sdk? And if yes please give some ideas how to do that. here ...
0
votes
1answer
151 views

Lua String Split

Hi I've got this function in JavaScript: function blur(data) { var trimdata = trim(data); var dataSplit = trimdata.split(" "); var lastWord = dataSplit.pop(); var toBlur = ...
2
votes
3answers
111 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 ...
0
votes
0answers
16 views

mapAddress listner never called in my corona application?

In my application map address listener can not be called. local mapAddressHandler = function( event ) local locationText = "Latitude: " .. currentLatitude .. ", ...
0
votes
3answers
352 views

Building an IOS app using corona sdk (certificate not installed)

I am creating an app using corona sdk for IOS. When I tried to build this app on device, in code signing identity dropdown menu it shows me provisioning profiles but not let me select them as it says ...
1
vote
0answers
108 views

Corona SDK dev app black sreens on adroid tablet

Hi I am developing an app with corona sdk. It works on iphone, ipad and my android phone (2.2). However, on samsung galaxy tab 2 the app loads the initial menu then blacks out. I'm still using the ...
0
votes
1answer
119 views

Repositioning interactive advertisements in Corona SDK

I've added advertisements by interactive in my app like so: local ads = require("ads") local adNetwork = "inneractive" ads.init(adNetwork, "test_id") local function displayAd() ads.show("banner", ...
0
votes
1answer
79 views

Accessing device contact list using Corona Sdk?

I am working on a project which fetches the contact list and the user will be able to send an email. Any help or advice will be greatly appreciated. I know it can be done in phone-gap. Thanks in ...
0
votes
1answer
73 views

Corona will generate native code?

does corona generate native code for both iPhone and Android or it will interpret the Lua code.can anyone tell me in detail.
0
votes
1answer
298 views

Corona SDK (LUA) - Trouble With Inserting Into Table

I have searched around quite a bit and couldn't quite find a solution for this. Any help you can offer would be appreciated. -- The array compiled of enemies only allowed in the current -- level ...
0
votes
1answer
86 views

TableView/List inside Scrollview

I'm just learning LUA/Corona and am wondering if it is possible to have a tableView inside of a ScrollView? I've got the below scroller to enable everything below the navbar to become scrollable. ...
0
votes
1answer
151 views

Corona: Restart scene when game completed

When a player has completed a game, i would like for the scene to be restarted, i.e i want to reload the current scene. I have tried storyboard:reloadScene() without success. I also tried to purge ...
-1
votes
3answers
303 views

how to create .ipa file from Corona SDK

Please tell me how to create .ipa file instead of .app file in Corona SDK? and how to submit Corona Application in Appstore?
2
votes
2answers
353 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 ...
-1
votes
1answer
145 views

Corona Learning [closed]

I am newbie for Corona SDK. I want to learn Corona from scratch. From where i can learn and what is the best IDE for Corona SDK? Please provide me link. if possible. Thanks.
0
votes
2answers
66 views

TextField Corona (lua) sending characters

I want to know how can I implement a "Search bar" where the user writes the text and this info will be send after the user click on button search or press Enter. local campoBusqueda = ...
2
votes
2answers
280 views

randoming a table Corona SDK / Lua

Could anyone help me with a way to randomly fill a table with N values, where the values are 1,...,M allowing no duplicates ? Cheers.
0
votes
1answer
345 views

Which is framework is better for RAD - Corona, Actionscript, HTML5, Unity or Marmalade? [closed]

Before you condemn this as subjective, consider that there are differences between different frameworks. Writing something with PHP, I assume, is probably a lot less verbose and thus time consuming ...
1
vote
0answers
35 views

Corona Enterprise: How to make zip folder in corona enterprise edition?

Is there any static library present that can be integrated to corona enterprise for compressing a folder in document directory? I am able to extract the zip file coming through using following link: ...
0
votes
0answers
54 views

Corona SDK development, rating of an app

I have a problem. Is it possible to rate an app on google play when the app is bought on amazon, or vice versa ? When developing my application, i wan't to redirect the user to amazon if the app ...
0
votes
2answers
94 views

How to get status bar height in corona sdk?

If it's disabled, how do I know its height?
0
votes
0answers
63 views

Corona 'ApplicationResume' Event Not Working On iOS

'applicationStart' is working, but 'applicationResume' doesn't work, I already set "UIApplicationExitsOnSuspend = false". Also it is strange that it actually works on Corona Simulator, but not work ...

1 2 3 4 5 11