Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Minimizing a HUD ?

Krista Chaffe
Registered User
Join date: 16 Jun 2007
Posts: 96
10-25-2007 12:47
Trying to figure out how to do this ?

I have a large display hud, that I want to minimize when not being used ?

I'm coming up blank on how to do this
Logan Bauer
Inept Adept
Join date: 13 Jun 2004
Posts: 2,237
10-25-2007 13:34
From: Krista Chaffe
Trying to figure out how to do this ?

I have a large display hud, that I want to minimize when not being used ?

I'm coming up blank on how to do this


You can move the hud around with llSetPos() and llSetLocalPos(). Make the maximized-version of your hud move down, off screen, and have the minimized version move up on screen, and visa-versa. I think this is the most common way people are doing this, also you can use llSetAlpha to make pieces of your hud invisible, but it will still be "there" in the sense that even though you can't see it, you can still click on it.
Krista Chaffe
Registered User
Join date: 16 Jun 2007
Posts: 96
10-25-2007 14:00
thanks, I was lacking concepts here

Can take it from there