scila1996 Posted October 7, 2015 Posted October 7, 2015 I Have been Create Tray Menu underside taskbar, but don't knows which function API might to do ? Example Menu as Comics San MS !Thank You Everybody !
JohnOne Posted October 7, 2015 Posted October 7, 2015 My first stop would be GUICtrlSetFont AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
scila1996 Posted October 8, 2015 Author Posted October 8, 2015 (edited) My first stop would be GUICtrlSetFont I was tried and it's not working ! #NoTrayIcon #include <MsgBoxConstants.au3> #include <TrayConstants.au3> ; Required for the $TRAY_ICONSTATE_SHOW constant. Opt("TrayMenuMode", 3) ; The default tray menu items will not be shown and items are not checked when selected. These are options 1 and 2 for TrayMenuMode. Example() Func Example() Local $idAbout = TrayCreateItem("About") GUICtrlSetFont(-1, 9, 400, 0, "tahoma", 0) ;- > Not working TrayCreateItem("") ; Create a separator line. Local $idExit = TrayCreateItem("Exit") GUICtrlSetFont(-1, 9, 400, 0, "tahoma", 0) TraySetState($TRAY_ICONSTATE_SHOW) ; Show the tray menu. While 1 Switch TrayGetMsg() Case $idAbout ; Display a message box about the AutoIt version and installation path of the AutoIt executable. MsgBox(64, "", "") Case $idExit ; Exit the loop. ExitLoop EndSwitch WEnd EndFunc ;==>Example Edited October 8, 2015 by scila1996
computergroove Posted October 8, 2015 Posted October 8, 2015 (edited) #include <FontConstants.au3> #include <GUIConstantsEx.au3>maybe Edited October 8, 2015 by computergroove Get Scite to add a popup when you use a 3rd party UDF -> http://www.autoitscript.com/autoit3/scite/docs/SciTE4AutoIt3/user-calltip-manager.html
Tekk Posted October 8, 2015 Posted October 8, 2015 You might take a look at ModernMenu.au3. I don't believe you can change the font of a context menu unless it is owner-drawn.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now