A management library that provides developers an easy way to create and transition between scene modules in a Corona SDK app.
0
votes
1answer
53 views
Using Displaygroups with Corona sdk storyboard
I´m trying to use my own displaygroup in storyboard with no luck. I bet there is an easy answer?!
local group = self.view --The storyboardGroup
local myGroup = display.newGroup()
for i = 0, 10 do
...
1
vote
1answer
19 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
42 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 ...
1
vote
0answers
230 views
corona sdk storyboard using press button to move next
I'm bundling storyboard and i want user to move to next scene after filling fields and then press a button
I have a problem with the btn ...
0
votes
1answer
77 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
4answers
153 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
57 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
109 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
122 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
1answer
73 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
121 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
92 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
438 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
0answers
20 views
Storyboard scene transitioning and native alert
In my app, I do some stuff in one scene and then ask user to save all new collected data.
There is a back button upon pressing which I create an alert that ask user if he/she wants to save. On ...
0
votes
2answers
328 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 ...
1
vote
2answers
64 views
Get the name of the file a storyboard is from in Corona?
I have a storyboard file and I want to reference the name of the file that the storyboard is implemented in so that I can load a configuration file of the same base name.
Here is an example that is ...
0
votes
2answers
585 views
corona storyboard buttons not removed properly from next scene
OK there are many answers to this question, but I cant seem to get it to work. My buttons are created in function scene:createScene( event ) and when I move on to the next scene, I'm trying scenePurge ...