Can't find Third Party Tab
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Can't find Third Party Tab
Hi,
I was looking for a way to re-size my standalone app for the various screens it might be displayed on. I came up weith this:
"Resizing your app with Responsive Layout
In today's world of multiple devices and form factors, you need a way to display your app perfectly whether the user is on the latest Mac Retina screen or a tiny Android handheld device. Enter the Responsive Layout Library!
Download and Install the Library
First locate your Responsive Layout library on the Third Party tab of your account. Scroll down until you find the Enhancements Bundle. Download the bundle."
I logged into my LiveCode account but there was no Third Party tab. This mystifies me, what did I do wrong ?
I was looking for a way to re-size my standalone app for the various screens it might be displayed on. I came up weith this:
"Resizing your app with Responsive Layout
In today's world of multiple devices and form factors, you need a way to display your app perfectly whether the user is on the latest Mac Retina screen or a tiny Android handheld device. Enter the Responsive Layout Library!
Download and Install the Library
First locate your Responsive Layout library on the Third Party tab of your account. Scroll down until you find the Enhancements Bundle. Download the bundle."
I logged into my LiveCode account but there was no Third Party tab. This mystifies me, what did I do wrong ?
-
- Livecode Opensource Backer
- Posts: 10096
- Joined: Fri Feb 19, 2010 10:17 am
Re: Can't find Third Party Tab
No menu on the left side of your LC account?
Re: Can't find Third Party Tab
Nope, just
"Account Details
Update Addresses
My Invoices
My Subscriptions
Products
LiveCode
Developer
Register
Feature Exchange"
(and more below)
"Account Details
Update Addresses
My Invoices
My Subscriptions
Products
LiveCode
Developer
Register
Feature Exchange"
(and more below)
Re: Can't find Third Party Tab
In that case contact support: support@livecode.com
Re: Can't find Third Party Tab
Hi
Many thanks. I'll do that.
Many thanks. I'll do that.
-
- Livecode Opensource Backer
- Posts: 10096
- Joined: Fri Feb 19, 2010 10:17 am
Re: Can't find Third Party Tab
Of course there is another way to resize your stack:
Then, of course, you have to do a lot of work resizing and positioning
buttons, fields and everything else on the stack.
Code: Select all
on openStack
put item 3 of the screenRect into WIDD
put item 4 of the screenRect into HITE
set the width of me to WIDD
set the height of me to HITE
set the topLeft of me to 0,0
end openStack
buttons, fields and everything else on the stack.
Re: Can't find Third Party Tab
Or just a one-liner:
Code: Select all
on openStack
set the RECT of me to the screenrect
end openStack
Re: Can't find Third Party Tab
CAsba.
Do you see what "me" refers to here? It is usually clear when one is talking about, say, a button that you click on, where one might have in the script of the button itself:
But in this case "me" refers, a bit indirectly, to the stack. It would be the same as if you put that line in the stack script, and clicked in blank space somewhere on the card.
All that said, I suggest that you be clearer:
Craig
Do you see what "me" refers to here? It is usually clear when one is talking about, say, a button that you click on, where one might have in the script of the button itself:
Code: Select all
set the rect of me to "0,0,400,400"
All that said, I suggest that you be clearer:
Code: Select all
set the rect of this stack to "0,0,400,400"
Re: Can't find Third Party Tab
Thanks you guys,
I tried both your propenstack suggestions; I liked Klaus's full screen, except there was no user access to screens commands.
Would it be possible to modify
'set the RECT of me to the screenrect'
to something like
'set the RECT of me to the screenrect * 90%'
or similar to set a slightly smaller screen where the screen commands might still be visible ?
I tried both your propenstack suggestions; I liked Klaus's full screen, except there was no user access to screens commands.
Would it be possible to modify
'set the RECT of me to the screenrect'
to something like
'set the RECT of me to the screenrect * 90%'
or similar to set a slightly smaller screen where the screen commands might still be visible ?
Re: Can't find Third Party Tab
Please explain "screen commands"? 

Re: Can't find Third Party Tab
Other selections on the screen available to the user. There's probably a better word for it ...a bar ? Containing, say, the time, date, wifi status, etc.
Re: Can't find Third Party Tab
What platform are we talking about?
Mac, Windows or even mobile Android/iOS?
Hint:
On mobile a stack will automatically have its -> fullscreen mode set to true.
On desktop you can always -> set the fullscreen of this stack to TRUE
Mac, Windows or even mobile Android/iOS?
Hint:
On mobile a stack will automatically have its -> fullscreen mode set to true.
On desktop you can always -> set the fullscreen of this stack to TRUE
Re: Can't find Third Party Tab
Hi Klaus,
Windows 10
Windows 10