NewProject = createButton(10,3,30,30,"",0,groupOne)
OpenProject = createButton(40,3,30,30,"",0,groupOne)
Spara = createButton(70,3,30,30,"",0,groupOne)
setButtonImage NewProject,"Images/NewProject.bmp"
setButtonImage OpenProject,"Images/Open_Project.bmp"
setButtonImage Spara,"Images/Spara.bmp"
ReName = createButton(110,3,30,30,"",1,groupTwo)
setButtonImage ReName,"Images/RenameAndSave.bmp"
Kamera_Horizontal = createButton(300,3,30,30,"",0,groupThree)
Kamera_TopDown = createButton(330,3,30,30,"",0,groupThree)
setButtonImage Kamera_Horizontal,"Images/Kamera_Horizontal.bmp"
setButtonImage Kamera_TopDown,"Images/Kamera_TopDown.bmp"
The buttons in groupOne and groupTwo should only look depressed when the mouse is clicked on one, then return to the undepressed state right after you clicked on them. The ones in groupThree should not be affected by the clicks on groupOne or two. They should only interact with each other. If one is down the other is up and vis versa. Is this possible? This won't affect my program but I think it would look nicer knowing which option are curenly in use.
May the sun shine on the soles of your feet.