Computer Science Canada

Could I get some help on making a GUI?

Author:  rbb [ Thu May 08, 2003 10:18 am ]
Post subject:  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.

Author:  Tony [ Thu May 08, 2003 10:22 am ]
Post subject: 

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)

Author:  Homer_simpson [ Thu May 08, 2003 10:31 am ]
Post subject: 

dunno if this is what u wanted
code:
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

Author:  Tony [ Thu May 08, 2003 10:39 am ]
Post subject: 

check out my percent bar in custom GUI... it looks good.

Author:  Homer_simpson [ Thu May 08, 2003 11:12 am ]
Post subject: 

Bwahahahahahaa..... looks cool 8)
I also had created some Custom GUI http://www.compsci.ca/bbs/viewtopic.php?t=623


: