DCCD Posted May 1, 2009 Posted May 1, 2009 is it possible? [u][font=Arial Black]M[/font]y Blog, AVSS Parts[/u][font=Arial Black]Else[/font][font=Arial Black]L[/font]ibya Linux Users Group
DCCD Posted May 1, 2009 Author Posted May 1, 2009 Any comments are welcome [u][font=Arial Black]M[/font]y Blog, AVSS Parts[/u][font=Arial Black]Else[/font][font=Arial Black]L[/font]ibya Linux Users Group
Yashied Posted May 1, 2009 Posted May 1, 2009 Use PixelGetColor(), I can not see another way. My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More...
DCCD Posted May 1, 2009 Author Posted May 1, 2009 pixelgetcolor make me crazy Here's my code #include <GUIConstants.au3> #include <EditConstants.au3> #include <WindowsConstants.au3> GUICreate("My GUI edit", 400, 300, -1, -1) ; will create a dialog box that when displayed is centered GUISetBkColor (0xE0FFFF) $Body_Read=GUICtrlCreateEdit ("DCCD ,AutoIt", -1,-1,400, 200,$ES_AUTOVSCROLL+$WS_VSCROLL) $FontsSizeSlider_Read = GuiCtrlCreateSlider(180, 210, 175, 30) GUICtrlSetFont ($Body_Read, 10, 400, 2, "Comic Sans MS") GUICtrlSetLimit(-1,100,12) ; change min/max value GUISetState () Global $lastSize = GUICtrlRead($FontsSizeSlider_Read), $thisSize ; Run the GUI until the dialog is closed While 1 $thisSize = GUICtrlRead($FontsSizeSlider_Read) If $thisSize <> $lastSize Then GUICtrlSetFont ($Body_Read, $thisSize, 400, 2, "Comic Sans MS") $lastSize = $thisSize EndIf $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop Wend [u][font=Arial Black]M[/font]y Blog, AVSS Parts[/u][font=Arial Black]Else[/font][font=Arial Black]L[/font]ibya Linux Users Group
Yashied Posted May 1, 2009 Posted May 1, 2009 (edited) pixelgetcolor make me crazy Here's my code #include <GUIConstants.au3> #include <EditConstants.au3> #include <WindowsConstants.au3> GUICreate("My GUI edit", 400, 300, -1, -1) ; will create a dialog box that when displayed is centered GUISetBkColor (0xE0FFFF) $Body_Read=GUICtrlCreateEdit ("DCCD ,AutoIt", -1,-1,400, 200,$ES_AUTOVSCROLL+$WS_VSCROLL) $FontsSizeSlider_Read = GuiCtrlCreateSlider(180, 210, 175, 30) GUICtrlSetFont ($Body_Read, 10, 400, 2, "Comic Sans MS") GUICtrlSetLimit(-1,100,12) ; change min/max value GUISetState () Global $lastSize = GUICtrlRead($FontsSizeSlider_Read), $thisSize ; Run the GUI until the dialog is closed While 1 $thisSize = GUICtrlRead($FontsSizeSlider_Read) If $thisSize <> $lastSize Then GUICtrlSetFont ($Body_Read, $thisSize, 400, 2, "Comic Sans MS") $lastSize = $thisSize EndIf $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop WendAnd here with the Tab Control? EDIT: GUICtrlSetBkColor($FontsSizeSlider_Read, 0xE0FFFF) Edited May 1, 2009 by Yashied My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More...
DCCD Posted May 1, 2009 Author Posted May 1, 2009 (edited) Sorry I was given the wrong code Here's mycode #include <GUIConstants.au3> GUICreate("My GUI Tab") ; will create a dialog box that when displayed is centered GUISetBkColor (0xE0FFFF) $tab=GUICtrlCreateTab (10,10, 200,100) $tab0=GUICtrlCreateTabitem ("tab0") $tab1=GUICtrlCreateTabitem ( "tab1") $tab2=GUICtrlCreateTabitem ("tab2") GUICtrlCreateTabitem ("") ; end tabitem definition GUICtrlCreateLabel ("label3", 20,130,50,20) GUISetState () ; Run the GUI until the dialog is closed While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop Wend Edited May 1, 2009 by DCCD [u][font=Arial Black]M[/font]y Blog, AVSS Parts[/u][font=Arial Black]Else[/font][font=Arial Black]L[/font]ibya Linux Users Group
Yashied Posted May 1, 2009 Posted May 1, 2009 See this. My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More...
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