
-----------------------------------
rbb
Thu May 08, 2003 10:18 am

Could I get some help on making a GUI?
-----------------------------------
I need help on making a colourful presentable GUI for my final video game project a wrestling rpg game. Any help would be appreciated.

-----------------------------------
Tony
Thu May 08, 2003 10:22 am


-----------------------------------
well I started a post for custom GUI... http://www.compsci.ca/bbs/viewtopic.php?t=671

it has a percentage bar  8) 

You'd have to spesify which GUI you want and maybe someone will program it (or atleast tell you the sytax from GUI module)

-----------------------------------
Homer_simpson
Thu May 08, 2003 10:31 am


-----------------------------------
dunno if this is what u wanted
import GUI in "%oot/lib/GUI"

var percent : int

procedure SliderMoved (value : int)
    Text.Locate (2, 3)
    put "Persent bar: ", value : 4, " %"
end SliderMoved



percent := GUI.CreateHorizontalSlider (100, 100, 400, 1, 100, 50, SliderMoved)

loop
    exit when GUI.ProcessEvent
end loop


-----------------------------------
Tony
Thu May 08, 2003 10:39 am


-----------------------------------
check out my percent bar in custom GUI... it looks good.

-----------------------------------
Homer_simpson
Thu May 08, 2003 11:12 am


-----------------------------------
Bwahahahahahaa..... looks cool  8) 
I also had created some Custom GUI http://www.compsci.ca/bbs/viewtopic.php?t=623
