0
votes
0answers
5 views

Cannot change value of object in lua

i have a table(array) where i keep the references of some images. Here is the code: local rowcount = 8 local colcount = 4 local blockWidth = display.contentWidth / (colcount*4) ...
0
votes
1answer
26 views

How to pause game and display new layer in corona

I am new to corona. I want to ask that how can I make pause functionality in any game. For example I want to make a pause button that pauses game and display some buttons with a resume button. Is ...
0
votes
1answer
40 views

Changing object references in lua

Here I generate a 4 x 8 panel with images and I save the reference into block. local function createBlocks() local rowcount = 8 local colcount = 4 local blockWidth = display.contentWidth / ...
-3
votes
0answers
33 views

Inapp purchases is not working proper [duplicate]

I'v already uploaded my app on appStor, now am updating this app, so I need to test this latest version too, I'v used my old Provisioning profile which I used to test this app's first version, now my ...
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 ...
-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
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
5answers
212 views

Button gotoScene not working

the storyboard.gotoScene("facebook", "fade", 400) is not working if i tap the button, and i dont get any error messages in the terminal. What am i doing wrong ? -- requires display.setStatusBar( ...
0
votes
1answer
65 views

remove gravity from addBody object

Hi my 'helicopter object' need to have a body to interact with enemy objects. So i got: helicopterspriteSheet = sprite.newSpriteSheet("helicopters.png", 113, 55) helicoptersprites = ...
2
votes
2answers
123 views

Add ''physics.addBody'' local imgpath lua

Solved by adding if ( temp.imgpath == "badcloud.png" ) then physics.addBody( randomcloud, "static", { density=.1, bounce=.1, friction=.2, radius=45 } ) end ...
0
votes
2answers
156 views

How to Spawn multiple objects every 10 seconds

How to make this spawn 'math.random(1,3)' smile.png every 10 seconds , and delete the smile.png after the left screen <code> local physics = require ("physics"); physics.start(); local ...
0
votes
2answers
98 views

Change direction of Corona/LUA object

HI my object is moving right to left how can i change this to from up to down ? function movebadc1(self,event) if self.x < -50 then self.x =300 self.y = 300 ...
1
vote
1answer
139 views

Corona sdk local variable not getting the set data inside scene

I am new in corona and i am trying to create a gps inside a tab scene. I created a local variable loc where it is where the string of location data will be placed local loc = "Loading" -- as initial ...
0
votes
1answer
109 views

Scene is created two times in Corona

I am using storyboard in corona sdk. My motto is to go from one state of screen to another and then return to the same state of first screen. So while i transited from first to second and neither ...
0
votes
2answers
662 views

Changing Scenes in Corona objects stay on screen

I have been modifying code from the memory match game to use scenes, sounds, and a 2d table. Adding the scenes has been the hard part. I have it set up to randomly select items from my 2d table. Load ...
0
votes
2answers
381 views

Corona SDK - Managing Game State/Objects/Inventory System/Sprite Animation

I am attempting to determine the best way and most efficient way to handle the following tasks in a game written with the Corona SDK. It seems like there are so many ways to do things that it becomes ...