Page 1 of 2

Can't find Third Party Tab

Posted: Sun Nov 20, 2022 10:35 am
by CAsba
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 ?

Re: Can't find Third Party Tab

Posted: Sun Nov 20, 2022 11:19 am
by richmond62
Did you pay for the bundle?

Re: Can't find Third Party Tab

Posted: Sun Nov 20, 2022 1:18 pm
by CAsba
Yes, I did.

Re: Can't find Third Party Tab

Posted: Sun Nov 20, 2022 1:49 pm
by Klaus
No menu on the left side of your LC account?
Bildschirmfoto 2022-11-20 um 13.48.06.png

Re: Can't find Third Party Tab

Posted: Sun Nov 20, 2022 3:19 pm
by CAsba
Nope, just

"Account Details
Update Addresses
My Invoices
My Subscriptions
Products

LiveCode

Developer

Register

Feature Exchange"
(and more below)

Re: Can't find Third Party Tab

Posted: Sun Nov 20, 2022 3:32 pm
by Klaus
In that case contact support: support@livecode.com

Re: Can't find Third Party Tab

Posted: Sun Nov 20, 2022 3:44 pm
by CAsba
Hi
Many thanks. I'll do that.

Re: Can't find Third Party Tab

Posted: Sun Nov 20, 2022 4:37 pm
by richmond62
Of course there is another way to resize your 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
Then, of course, you have to do a lot of work resizing and positioning
buttons, fields and everything else on the stack.

Re: Can't find Third Party Tab

Posted: Sun Nov 20, 2022 4:43 pm
by Klaus
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

Posted: Sun Nov 20, 2022 4:54 pm
by dunbarx
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:

Code: Select all

set the rect of me to "0,0,400,400"
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:

Code: Select all

set the rect of this stack to "0,0,400,400"
Craig

Re: Can't find Third Party Tab

Posted: Mon Nov 21, 2022 11:26 am
by CAsba
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 ?

Re: Can't find Third Party Tab

Posted: Mon Nov 21, 2022 1:10 pm
by Klaus
Please explain "screen commands"? :shock:

Re: Can't find Third Party Tab

Posted: Mon Nov 21, 2022 1:46 pm
by CAsba
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

Posted: Mon Nov 21, 2022 1:48 pm
by Klaus
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

Re: Can't find Third Party Tab

Posted: Mon Nov 21, 2022 2:43 pm
by CAsba
Hi Klaus,
Windows 10