G General

HUD Minimize Script - The correct way! Versión 1.0

HUD Minimize Script - The correct way!
Detalles
Funciones
Contenidos
Reseñas

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.

Clasificación media: estrella llena estrella llena estrella llena estrella llena estrella vacía
  • 5 estrella:
  • 4 estrella:
  • 3 estrella:
  • 2 estrella:
  • 1 estrella:
Perfect!
estrella llena estrella llena estrella llena estrella llena estrella llena Publicado September 22, 2023 por Huanita Wunderlich

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

¿Te ha resultado útil esta revisión?
Works but...
estrella llena estrella llena estrella llena estrella vacía estrella vacía Publicado September 07, 2023 por Jericho Incognito

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

¿Te ha resultado útil esta revisión?
works with a small fix
estrella llena estrella llena estrella llena estrella llena estrella vacía Publicado June 18, 2023 por 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

¿Te ha resultado útil esta revisión?