G General

HUD Minimize Script - The correct way! Version 1.0

HUD Minimize Script - The correct way!
Details
Features
Contents
Reviews

This script kit will let you add a minimize function to your custom HUD.

Minimize the correct way!

No alphaing prims, actually relocates and resizes them!

Included are 2 scripts (Minimize and Recorder)

The Recorder is used first to remember sizes and positions of each prim and the Minimize script is used in your HUD button to toggle minimize.

Average rating: full star full star full star full star empty star
  • 5 star:
  • 4 star:
  • 3 star:
  • 2 star:
  • 1 star:
Perfect!
full star full star full star full star full star Posted September 22, 2023 by Huanita Wunderlich

Exactly what i wanted..works great and easy, Thank you

Was this review helpful?
Works but...
full star full star full star empty star empty star Posted September 07, 2023 by Jericho Incognito

What the description doesn't say is that your "minimize" button must be the root prim.

Was this review helpful?
works with a small fix
full star full star full star full star empty star Posted June 18, 2023 by asteriddle

works like a charm, but a check seems to be missing for ensuring the prim clicked is the root prim, leading to any of my HUD's buttons causing it to minimize

fix is as follows ;

at the top, under the first line, add

integer currentbutton;

and then just under touch_start(integer total_number), within the brackets, add

currentbutton=llDetectedLinkNumber(0);
if (currentbutton == 1) { ENCLOSE THE REST OF THE CODE HERE }

for those less scripting inclined, the llDetectedLinkNumber detects which linked the user clicks, and sets the value of currentbutton to that link number.
if the current button is 1 (the root), the minimize/show function runs! if it isn't the root, nothing happens, preventing the HUD from minimizing every time a button is pressed

Was this review helpful?