Splash Screen CoronaLabs remove

I purchased the Splash Screen plugins to remove the Corona Labs notice.

I’ve tried this, is this what you need to do?

Settings = {

Orientation = {default = “landscapeLeft”,

Supported = {“landscapeRight”, “landscapeLeft”,}

},

{

SplashScreen =

{

Enable = false

},

},

}

It does not work. Either I’m doing something wrong or you did not enable Splash Screen deactivation.

I send them the Buil.Setting file so they can see it.

From already thank you very much.

Do you activate plugin?

build.settings 

settings = {     splashScreen =     {         enable = false     }, }

You use Enable instead of enable etc. Read more about Splash Screen in documentation

build.settings is case sensitive too.

SplashScreen should be splashScreen.

build.settings… copy and paste:

settings = {

orientation = {default = “landscapeLeft”,

supported = { “landscapeRight”, “landscapeLeft”,},

splashScreen =

{

enable = false

},

},

}

Don’t work. And now? What else can be happening?

First you need to use code formatting when pasting your code in. It’s the blue <> button in the row with Bold, Italtics. etc. Click on it, paste your code in and then click ok.

settings = { orientation = { default = "landscapeLeft", supported = { "landscapeRight", "landscapeLeft",}, splashScreen = { enable = false }, }, }

Now I’ve taken yours and tried to reformat it, Indentions are very important so you can see where you’re braces line up. Notice how you have too many closing braces?  That should be a clue that your build.settings has an error in it.

Please read:  https://coronalabs.com/blog/2014/07/08/tutorial-understanding-build-settings/

Now this is from 2014 and some new things like splashScreen and desktop and tvOS are not represented in there, but it still is a great explainer of what a build.settings file is and how it’s constructed. The splashScreen table should be at the same level as the orientation level, not inside it.

Rob

More information:

Xcode Version 8.2.1 (8C1002)

Corona SDK Version 2016.2992 (2016.11.10)

macOS Sierra Version10.12.2 (16C68)

Thanks for the additional information, however in this case, the problem is in your build settings. 

You have this:

settings = { orientation = { default = "landscapeLeft", supported = { "landscapeRight", "landscapeLeft",}, splashScreen = { enable = false }, }, }

Which should generate an error, but it’s not correct. Look at this version:

settings = { orientation = { default = "landscapeLeft", supported = { "landscapeRight", "landscapeLeft",}, }, splashScreen = { enable = false }, }

And compare the differences? The second one should work, the first one wont.

Rob

Now it works, Rob. You were absolutely right. Use TextWrangler as a text editor. Do not indent. Indentation helps reading. Maybe I can not escape these things.Thanks. 

TextWrangler should support indention.  

Do you activate plugin?

build.settings 

settings = { &nbsp;&nbsp;&nbsp;&nbsp;splashScreen = &nbsp;&nbsp;&nbsp;&nbsp;{ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;enable = false &nbsp;&nbsp;&nbsp;&nbsp;}, }

You use Enable instead of enable etc. Read more about Splash Screen in documentation

build.settings is case sensitive too.

SplashScreen should be splashScreen.

build.settings… copy and paste:

settings = {

orientation = {default = “landscapeLeft”,

supported = { “landscapeRight”, “landscapeLeft”,},

splashScreen =

{

enable = false

},

},

}

Don’t work. And now? What else can be happening?

First you need to use code formatting when pasting your code in. It’s the blue <> button in the row with Bold, Italtics. etc. Click on it, paste your code in and then click ok.

settings = { orientation = { default = "landscapeLeft", supported = { "landscapeRight", "landscapeLeft",}, splashScreen = { enable = false }, }, }

Now I’ve taken yours and tried to reformat it, Indentions are very important so you can see where you’re braces line up. Notice how you have too many closing braces?  That should be a clue that your build.settings has an error in it.

Please read:  https://coronalabs.com/blog/2014/07/08/tutorial-understanding-build-settings/

Now this is from 2014 and some new things like splashScreen and desktop and tvOS are not represented in there, but it still is a great explainer of what a build.settings file is and how it’s constructed. The splashScreen table should be at the same level as the orientation level, not inside it.

Rob

More information:

Xcode Version 8.2.1 (8C1002)

Corona SDK Version 2016.2992 (2016.11.10)

macOS Sierra Version10.12.2 (16C68)

Thanks for the additional information, however in this case, the problem is in your build settings. 

You have this:

settings = { orientation = { default = "landscapeLeft", supported = { "landscapeRight", "landscapeLeft",}, splashScreen = { enable = false }, }, }

Which should generate an error, but it’s not correct. Look at this version:

settings = { orientation = { default = "landscapeLeft", supported = { "landscapeRight", "landscapeLeft",}, }, splashScreen = { enable = false }, }

And compare the differences? The second one should work, the first one wont.

Rob

Now it works, Rob. You were absolutely right. Use TextWrangler as a text editor. Do not indent. Indentation helps reading. Maybe I can not escape these things.Thanks. 

TextWrangler should support indention.