Roshith Posted November 7, 2011 Share Posted November 7, 2011 Hi, Is it possible to include a hyperlink in a traytip so that the link opens up when I click on it.. Rgds Roshith Link to comment Share on other sites More sharing options...
JoHanatCent Posted November 8, 2011 Share Posted November 8, 2011 Create your own ToolTip.Here is an example that just looks like a hyperlink:#include <WindowsConstants.au3> #include <GUIConstantsEx.au3> HotKeySet("{ESC}", "OntSnap") $Gui = GUICreate("tooltip", 140, 80, 1, 1, $WS_POPUP, $WS_EX_TOPMOST) GUISetBkColor(0xffff00) $Label = GUICtrlCreateLabel("NotePad.exe", 10, 10, 80, 50) GUICtrlSetFont(-1, 8, Default, 6, "Comic Sans MS") GUISetState() While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit Case $Label Run(@WindowsDir & "Notepad.exe", "", @SW_MAXIMIZE) EndSwitch Sleep(13) WEnd Func OntSnap() GUIDelete() Exit 0 EndFunc ;==>OntSnap Link to comment Share on other sites More sharing options...
Roshith Posted November 8, 2011 Author Share Posted November 8, 2011 Thank you JoHanatCent,I knew this alternative, But just wanted to know if its possible.. Thank you Link to comment Share on other sites More sharing options...
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