Native Orientation Change Effect

Hello everyone,

I have been searching for a fix for this for quite awhile now, but unfortunately what has been the fix for other people won’t work for what I need.

On orientation change, there is that black rotation effect on iPhone, I would like to remove or hide this effect if possible.

I have been using a content lock for most of my elements, but when you turn your device, that effect still shows even though nothing is rotating.

If I were to not support landscape orientations (the effect would no longer show), and I did the changes manually, when I rotate the webView the website does not detect the change, and does not rotate. So I must have the support!

Now, for my question!

Is there a way to hide the native orientation change effect, while supporting the landscapeLeft and landscapeRight orientation changes?

Best Regards,
Happy Badgers [import]uid: 148686 topic_id: 32151 reply_id: 332151[/import]

How do you perform the content lock on “orientation” event? This is exactly that I look for in my current project.

Thanks. [import]uid: 172733 topic_id: 32151 reply_id: 131466[/import]

How do you perform the content lock on “orientation” event? This is exactly that I look for in my current project.

Thanks. [import]uid: 172733 topic_id: 32151 reply_id: 131466[/import]

Hello,

Are you asking how to lock the content in general? Or lock the content when there is change in orientation?

To lock your content to a specific orientation:

[code]
settings = {

orientation = {
default = “portrait”,
content = “portrait”, – this will lock your content to portrait. nativeUI elements (webViews etc, may not lock like expected.
supported = {“portrait”, “landscapeLeft”, “landscapeRight”, “portraitUpsideDown”}
},

iphone = {
plist = {
UIStatusBarHidden = false,
UIPrerenderedIcon = true, – set to false for “shine” overlay
}
},
}
[/code] [import]uid: 148686 topic_id: 32151 reply_id: 131591[/import]

Hello,

Are you asking how to lock the content in general? Or lock the content when there is change in orientation?

To lock your content to a specific orientation:

[code]
settings = {

orientation = {
default = “portrait”,
content = “portrait”, – this will lock your content to portrait. nativeUI elements (webViews etc, may not lock like expected.
supported = {“portrait”, “landscapeLeft”, “landscapeRight”, “portraitUpsideDown”}
},

iphone = {
plist = {
UIStatusBarHidden = false,
UIPrerenderedIcon = true, – set to false for “shine” overlay
}
},
}
[/code] [import]uid: 148686 topic_id: 32151 reply_id: 131591[/import]