G Generell

HUD Minimize Script - The correct way! Version 1.0

HUD Minimize Script - The correct way!
Details
Leistungsmerkmale
Inhalt
Rezensionen

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.

Durchschnittliche Einstufung: voller Stern voller Stern voller Stern voller Stern leeres Sternchen
  • 5 Stern:
  • 4 Stern:
  • 3 Stern:
  • 2 Stern:
  • 1 Stern:
Perfect!
voller Stern voller Stern voller Stern voller Stern voller Stern Veröffentlicht 22.9.2023 von Huanita Wunderlich

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

War diese Rezension hilfreich?
Works but...
voller Stern voller Stern voller Stern leeres Sternchen leeres Sternchen Veröffentlicht 7.9.2023 von Jericho Incognito

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

War diese Rezension hilfreich?
works with a small fix
voller Stern voller Stern voller Stern voller Stern leeres Sternchen Veröffentlicht 18.6.2023 von 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

War diese Rezension hilfreich?