Thread: Intuition Menus
View Single Post
Old 23 November 2022, 05:18   #7
Steam Ranger
Registered User
 
Steam Ranger's Avatar
 
Join Date: May 2022
Location: Adelaide, South Australia, Australia
Posts: 208
Quote:
Originally Posted by a/b View Post
For a KS3.0+ 3D look you could also try setting the pens tag (KS2.0+ but it will work in KS1.3 fine because it's ignored), at the end of ExtNewScreen (right after gadgets and custom bitmap) and ExtNewWindow (right after screen type) structures, set a pointer to tags. Something like:
Code:
MyNewScreen:
...
  DC.L 0,0  ; gadgets, custom bitmap
  DC.L MyTags  ; v36+

MyNewWindow:
...
  DC.W CUSTOMSCREEN  ; screen type
  DC.L MyTags  ; v36+

MyTags:
  DC.L SA_Pens,MyPens
  DC.L TAG_END

MyPens:
  DC.W ~0
Also, WFLG_NEWLOOKMENUS is assembly symbol ($00200000), you OR (|) it with the other flags in the ExtNewWindow structure.
I'll be more specific. I have a program that runs exclusively on workbench. It's menus are grey, wheras most workbench programs have white menus.
I want my programs menus to be white aswell, how do I achieve this? (Using standard WB screen)
Steam Ranger is offline  
 
Page generated in 0.04285 seconds with 11 queries