Tag Info

Hot answers tagged

4

Are you using physics editor for the purpose..? Then there is scaleFactor provided. You can assign physics to the object with this scale factor, as below: local scaleFactor = 1.0 local physicsData = (require "shapedefs").physicsData(scaleFactor) local shape = display.newImage("objectname.png") physics.addBody( shape, physicsData:get("objectname") ) And ...


4

return #str >= 5 and #str <= 30 and str:find('^[%-%.%w_]+$') ~= nil Note 1: as mentioned in the comments, ~= nil part can be removed as the position returned by find will be evaluated as true (when it's not nil) in logical operators. However, since it's a number, it will fail when used in validate_password(str) == true comparisons (since 1 == true is ...


4

Here is a common solution: local width= imageWidth; local height = imageHeight; myImage = display.newImage( "image.png", 0, 0) local scaleFactor = newDesiredWidth / width myImage.scaleX = scaleFactor myImage.scaleY = scaleFactor If you still don't like the quality then you should use a graphics editing program to resize your image. This way you will ...


3

This is happening maybe because: Your timer will first execute the function; then execute it again after 10000 milliseconds have passed. Thus, you get the output instantaneously. If you want to have the user wait for 10s; use os.sleep( 10 ). Another possible cause is that you are calling the function while declaring a timer. Change: ...


3

A lot depends on how you started Corona and if you're on a Mac or PC or if you're looking for this information while running in the XCode simulator or on a device. For a Mac, you are best to start Corona SDK using the "corona-terminal" app in the Applications/CoronaSDK folder. This will launch the Terminal app, which will in turn launch Corona SDK. Your ...


2

Yes you can put group to another group just like this local group1 = display.newGroup() local group2 = display.newGroup() group2:insert(group1); Yes you can put event Listener to group group2:addEventListener("touch", function) are you using physics to rotate your object?


2

These two values 30 or 60 are the max limit that you want in your app but it depends on device hardware if it will be able to reach that limit. From Corona site: Frame rate control By default, the frame rate is 30 fps. We now allow you to optionally set the frame rate to 60 fps by adding the fps key to config.lua If you want to have higher fps ...


2

you must put ID in each object you create for example: local function getID(event) t = event.target print(t.id) end local beef = display.newImage("images/beef.png",) beef.id = "beef" local canned_food= display.newImage("images/canned_foods.png",) canned_food.id = "cannedfoods" local fries = display.newImage("images/fench_fries.png",) fries.id = ...


1

yes you can do it with storyboard to give you an idea implementing pause button if you are using animation,physics,timer,transition etc.. that needs to be pause you must call their specific pause function and if you want to display resume and some other button you can make an overlay of that scene and then hide it so when the user presses the pause button ...


1

After your code, just do as follows... This may help you: local function addListener() deselectButton:addEventListener("tap",clickFunction) end local clickCount = 0 function clickFunction() deselectButton:removeEventListener("tap",clickFunction) clickCount = clickCount + 1 if(clickCount%2==1)then -- show the image ...


1

I would put your blocks into a table to keep track of each of them. But to answer your specific question, Lua allows you to add any method or attribute to an object, so you can do: block.name = "Beer" block.color = "Green" block.gobbldygook = 400 Then in your tap/touch handler, your "event.target" is the object, so you can say: ...


1

I found solution. Actually it is bad idea to put 2 different runtime listeners into 2 different groups. This attitude caused a problem. It should looks like below: function createGame() gameGroup = display.newGroup(); gameGroup.xReference = _W/2; myGroup.yReference = _H/2; gameGroup.enterFrame = onFrame; ...


1

You can use myAnim:nextFrame() with the help of a timer for this purpose. Try the following code: local movieclip = require("movieclip") local myAnim = movieclip.newAnim{"cube1.png", "cube2.png", "cube3.png", "cube4.png", "cube5.png", "cube6.png"} myAnim.x = 160 myAnim.y = 240 localGroup:insert( myAnim ) For fast transition between frames, you can use: ...


1

Read this (the official Corona Labs recommendation): http://www.coronalabs.com/blog/2013/05/28/tutorial-goodbye-globals/ Basically, they recommend: Do not use global vars If you want to access vars between modules, do the following Create a new module to store "across-modules" vars. mydata.lua --my global space local M = {} return M Use the module ...


1

Yes, it is possible, and this should work: In your html page add something like this (+javascript to change val if you will): <a href="corona:close?val=122">PROCESS</a> And in your listener function add this to get the value: if string.find(event.url,"corona") then print("val is " .. string.sub(event.url,18)) end Do you know the ...


1

I think you was trying to do this: badclouts:setLinearVelocity(0, math.random(100, 150)) -- Drop down local function increaseYVelocity() local vx, vy = badclouts:getLinearVelocity() vy = vy + 10 badclouts:setLinearVelocity(vx, vy) --print("y component of linear velocity: " .. vy) end countdownTimer() --I don't know nothing about this function ...


1

Here is the perfect solution: local json = require "json" local t = json.decode( jsonFile( "data.json" ) local workers = t.workers for name, user in pairs(workers) do print("--------------------") print(name) for tag, value in pairs(user) do print(tag , value) end end Here are some more info: ...


1

In your main.lua use ads.init() to get the ads: ads.init( "iads", "myAppId", adListener ) and then use ads.show() in all the scenes you want to show ads: ads.show( "banner", { x=0, y=0 } ) then if you want to hide ads in some scene use: ads.hide()


1

here's a sample code to decode the json data i just happen to make a json text file out if the link you gave and decode it hope it helps local json = require "json" local txt local path = system.pathForFile( "json.txt", system.ResourceDirectory ) local file = io.open( path, "r" ) for line in file:lines() do txt = line end print(txt) local t = json.decode( ...


1

when you you use on touch event there will be three event phase trigger the began, moved, ended if you want to trigger one phase in an event on touch put this on your code local function switch(event) if (event.phase == "ended") then xdirection = xdirection * -1; ydirection = ydirection * -1; print "Switched!" end end


1

I think you are correct with the assumption that you are taxing system resources. Maybe you could achieve a similar effect by lowering the frame rate (if you are using a runtime function). That seems like a workaround to whatever your real problem is. Instead of using a runtime function, you could also use a game loop timer that is called 30 times a second ...



Only top voted, non community-wiki answers of a minimum length are eligible