Game Development Community

Navigation with gui

by Nir Ziso · in Torque Game Builder · 09/24/2006 (10:31 am) · 2 replies

I want to make a gui with 2 navigation button previous and next
When i press those buttons i want to show another data on this gui
i want to make some effect that the user will see he goes to another screen
how can i do it?

#1
09/26/2006 (8:15 am)
I am guessing the easiest method would be to have overlapping gui elements with the same parent that you toggle visibility on:

GuiChunkedBitmapCtrl  //Top Level Container
  - GuiBitmapButtonCtrl  //Pane 1 Button
  - GuiBitmapButtonCtrl  //Pane 2 Button
  - GuiBitmapCtrl //Pane Container
    -> GuiBitmapCtrl  //pane1
    -> GuiBitmapCtrl  //pane2

-Unk
#2
09/26/2006 (9:50 am)
Unk thanks alot for your help