Logos Quiz - Corona Template now available!

Hi there - still planning to do this, just finishing up a couple of projects and then I’ll put the template together.

@info815 - you can contact me at otterstudios@hotmail.co.uk
Nick [import]uid: 93133 topic_id: 30840 reply_id: 131157[/import]

This is nearly ready to go on sale, hopefully it will be available to buy tomorrow via Sellbox. [import]uid: 93133 topic_id: 30840 reply_id: 139054[/import]

Now available, see the first post for details :slight_smile: [import]uid: 93133 topic_id: 30840 reply_id: 139191[/import]

Your link doesn’t work. [import]uid: 4527 topic_id: 30840 reply_id: 139245[/import]

I’ve had a few e-mails in addition to the post above about the link not working, very strange as it seems to have worked for others - many thanks to those people!

Here’s the full link:

http://sellboxhq.com/l/A63z/Logo-Quiz-Template

To those that have downloaded, as detailed in the read me file you’ll need to download the GGData library by Glitch Games and put it in the project folder for it to work - I couldn’t really distribute that with the template as they have an option to pay £1 for it on their site.

[import]uid: 93133 topic_id: 30840 reply_id: 139299[/import]

This is nearly ready to go on sale, hopefully it will be available to buy tomorrow via Sellbox. [import]uid: 93133 topic_id: 30840 reply_id: 139054[/import]

Now available, see the first post for details :slight_smile: [import]uid: 93133 topic_id: 30840 reply_id: 139191[/import]

Hi,
what “Get data from an external config file stored on a server” means?

Do you load levels, logos, answers y texts from a remote server?

can you do some modifications to the app if we pay for that?

Regards. [import]uid: 216451 topic_id: 30840 reply_id: 139790[/import]

@jvargas

Hi, currently the app just gets a few settings like whether to show ads & revmob interstitials, and to also download in-house adverts from the server.

But it could easily be extended to get levels, answers, clues etc.

Sure, I could make modifications for an extra charge, we’d just have to agree an hourly rate for the work.

Nick [import]uid: 93133 topic_id: 30840 reply_id: 139805[/import]

Your link doesn’t work. [import]uid: 4527 topic_id: 30840 reply_id: 139245[/import]

I’ve had a few e-mails in addition to the post above about the link not working, very strange as it seems to have worked for others - many thanks to those people!

Here’s the full link:

http://sellboxhq.com/l/A63z/Logo-Quiz-Template

To those that have downloaded, as detailed in the read me file you’ll need to download the GGData library by Glitch Games and put it in the project folder for it to work - I couldn’t really distribute that with the template as they have an option to pay £1 for it on their site.

[import]uid: 93133 topic_id: 30840 reply_id: 139299[/import]

Hi,
what “Get data from an external config file stored on a server” means?

Do you load levels, logos, answers y texts from a remote server?

can you do some modifications to the app if we pay for that?

Regards. [import]uid: 216451 topic_id: 30840 reply_id: 139790[/import]

@jvargas

Hi, currently the app just gets a few settings like whether to show ads & revmob interstitials, and to also download in-house adverts from the server.

But it could easily be extended to get levels, answers, clues etc.

Sure, I could make modifications for an extra charge, we’d just have to agree an hourly rate for the work.

Nick [import]uid: 93133 topic_id: 30840 reply_id: 139805[/import]

Just two codes left to get it at the discounted price! Also look out for our ‘Angry Birds Menu’ template that will be released shortly.
[import]uid: 93133 topic_id: 30840 reply_id: 140621[/import]

Just two codes left to get it at the discounted price! Also look out for our ‘Angry Birds Menu’ template that will be released shortly.
[import]uid: 93133 topic_id: 30840 reply_id: 140621[/import]

@nick_sherman I bought the template but when I run it in Corona, nothing happens after it shows the Otter Studios splash screen… after that it’s just black. I do have the GGData library in the folder. Please advise! [import]uid: 125387 topic_id: 30840 reply_id: 142821[/import]

@nick_sherman @jsdl

I just bought the template and i have the same problem as @jsdl

it doesnt show anything after the Otter studios logo screen

please help

thanks [import]uid: 159148 topic_id: 30840 reply_id: 142833[/import]

Can you tell me which errors you are getting and what version of Corona you’re running? [import]uid: 93133 topic_id: 30840 reply_id: 142836[/import]

@nick_sherman
When i run the main.lua file on the simulator, the Otter studios logo screen appears and the screen turns blank (black screen) after that…

I am running the code on corona sdk (Build 2012.894)

Corona Version 2012.894 (2012.8.27) [import]uid: 159148 topic_id: 30840 reply_id: 142837[/import]

Hi,

The error is because since build 894, Corona introduced two new APIs - display.pixelHeight and display.pixelWidth in order to deal with the iPhone 5.

Is there a reason you need to use this old build, as 970 is the last public release?

If you really don’t want to update, replace the code at lines 63-64 in main.lua with:

[lua]

if display.pixelHeight ~= nil then
if ( “iPhone” == system.getInfo( “model” ) ) and ( display.pixelHeight > 960 ) then _G.model = “I5”; end
if (display.pixelHeight == 1024 or display.pixelHeight == 2048) then _G.model = “IP”; end

end

[/lua]

and line 303 with:

[lua]

local isTall = false

if display.pixelHeight ~= nil then
isTall = ( “iPhone” == system.getInfo( “model” ) ) and ( display.pixelHeight > 960 )
end

[/lua]

[import]uid: 93133 topic_id: 30840 reply_id: 142842[/import]