Browser control – UIWebView bounce background colour
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Browser control – UIWebView bounce background colour
I have a UIWebView browser control working fine except that when scrolling to the top or bottom and it bounces, then a grey colour shows behind. Is there a way to change that colour to something else? Thanks
Re: Browser control – UIWebView bounce background colour
Nope, not that I've ever seen.
14" MacBook Pro
Former LiveCode developer.
Now recovering.
Former LiveCode developer.
Now recovering.
Re: Browser control – UIWebView bounce background colour
I also think that this is supplied by the iOS and you cannot change this from within LiveCode.
Re: Browser control – UIWebView bounce background colour
Apologies, this is a rtfm issue.
iphoneControlSet sBrowserId, "backgroundColor", "255,255,255" sets the default grey shown on the bounce to white, for instance.
This is at the top of page 42 in the IOS release notes for 4.6.2 (revision 39):
"Set to either a standard color name, or a string of the form red,green,blue or red,green,blue,alpha. Where the components are integers in the range 0 to 255."
iphoneControlSet sBrowserId, "backgroundColor", "255,255,255" sets the default grey shown on the bounce to white, for instance.
This is at the top of page 42 in the IOS release notes for 4.6.2 (revision 39):
"Set to either a standard color name, or a string of the form red,green,blue or red,green,blue,alpha. Where the components are integers in the range 0 to 255."
Re: Browser control – UIWebView bounce background colour
Ah, thanks for the head up!