
Justmobile
Active Members-
Posts
41 -
Joined
-
Last visited
Everything posted by Justmobile
-
Traymenu open via hotkey
Justmobile replied to Justmobile's topic in AutoIt General Help and Support
Thank you very much. yes this works fine! -
im looking for a way to set a hotkey to a traymenu, the hotkey will open the traymenu can this done? now only by clicking on the tray icon. thanks
-
Thanks, for the help, i can now continue again...
-
Hi all, im not so good at dll calls e.t. but i have a code which create a simple gui window, when i run this multiple times de desktop will show many gui's simple, but when i drag one window the focus of the mouse is gone, and i have click and try to catch the window which i want to move. for dragging i use code While _IsPressed("01") DllCall("user32.dll", "int", "SendMessage", "hWnd", WinGetHandle("[ACTIVE]"), "int", $WM_NCLBUTTONDOWN, "int", $HTCAPTION, "int", 0) and gui create $Gui = GUICreate($title, 180, 15, $Gui_X, $Gui_Y, $WS_POPUP, $WS_EX_TOOLWINDOW, WinGetHandle("[CLASS:Progman]")) GUISetBkColor(0xFFA500) please notice that multiple gui's have all the name $Gui, because i run the program more than ones. can this do? thanks
-
Thanks works great!!
-
THANK YOU THANK YOU!!!!. just wat i was looking for , i can continue. Regards...
-
I'll find an source on the forum which can read all the icons, (how many, type and title and position) very nice, but can autoit tricker an event when you click on a icon on the desktop?, i mean something like select my computer, and a gui popup with some additional options. i cna tricker a window (winselecttitle), but can you also do with folders and exe files? please advise Thanks Justmobile
-
Thanks all, I need a big time to study i see, but your support is very appreciated. Thanks Justmobile
-
Can you please add me some sample code? als het gelegenkomt kunt u dan een voorbeeldje sturen? Thanks
-
Dear all, Can autoit create a gui which only shows the title? see attach Code i tried in autoit for test, see attach 2 #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> GUICreate("Webasdasd viewer", 200, 0, -1, -1, $WS_OVERLAPPEDWINDOW,BitOR($WS_EX_TOPMOST,$WS_EX_TOOLWINDOW)) GUISetState(@SW_SHOW) Sleep(5000) The first example (yellow) is much smaller , than the autoit gui (blue one), if you drag and drop the blue one it expand the gui a little. Anyway how can i also change the ugly blue color of the gui.? Thanks a Lot!!!!
-
Hi all, im using code $oIE = _IECreateEmbedded () GUICreate("Rss reader", 660,400, -1, -1, 0x80000000) $GUIActiveX = GUICtrlCreateObj($oIE, 10, 10, 640, 380) _IENavigate ($oIE, "about:blank") _IEDocWriteHTML ($oIE, $sHTML) GUISetState(@SW_SHOW) ;Show GUI with all includes, which is needed, after define a shortkey, and popup the gui with ie, (and $sHTML has the code included), the window will open but gives and COM error, error 80020006 description UNKNOW NAME?, when i close the window with GUIDELETE() , and reopen the error is not there, but after repeat it popups again with the same error. can someone help me on this ?, thanks in advance, ps im trying a simple GUI which shows an RSS feed . Thanks
-
get title of selected window
Justmobile replied to Justmobile's topic in AutoIt General Help and Support
SOLVED TOPIC CAN CLOSED SORRY !! (WinGetTitle("", "") -
i have code Func gettext() $var = ControlGetText("[CLASS:agNoteSkinnableClass]", "", "") msgbox(0,"",$var) endfunc i will receive the text of the selected window (not gui of autoit), an windows prog. can i read also the title too of that window? i cannot find it. THANKS!
-
help ... request a guaranteed way for explorer
Justmobile replied to AlienStar's topic in AutoIt General Help and Support
Yes works also under XP -
Thank a Lot!! Works great.
-
Hi all, im using code below, just from the help file, i read a rss feed and i want to show the titles the feed title's i want to output these to the clipboard, i check all the topics in this forum but cannot find it, $filen are the titles from the rss feed, how can i get these in the clipboard i tried _ArraytoClip($avArray,1) e.t. but i do not understand how i can get the value's?? i i check with msgbox $i it's always 0, so $title[0] will hold the title's of the feed, but $title[1] give's a error. please help thanks While 1 $title = StringRegExp($RSSFile, '<title>(.*?)</title>', 1, $nOffset) If @error = 0 Then $nOffset = @extended Else ExitLoop EndIf for $i = 0 to UBound($title) - 1 $filen = $title[$i] Next WEnd
-
Hi all, I have found a icon that i want compile with my prog, but when i do that in SCITe editor with Compile (select icon path e.t.), the new created exe has the icon of AutoIT self?? Does someone knows how i could change this? And where do i find some nice icons anyway AutoIT V 3, 1, 0, 15 (with tray menu options) thans Justmobile
-
Hi all, In the past i found a small tool writen by someone and the script was calling Alarm 5, i found the post but the link doen;t work anymore What i want is to create a top menu in the upper window corner (like a tooltip), but i don't (couldn't remember it) know how? Could someone help me a little on this. Sample, GUICREATE in the top of the window with menu like About or something. Many Thanks Tidde
-
Thanks Guy!.. I didn't not know this option... cheers Justmobile
-
Hi all, i was wondering of it is possible to execute a vbs script from Autoit, i have tried serveral ways.. @comspec, internet/explorer e.t) sample run(open.vbs) ?? is it possible? any help please.. cheers
-
read registry and write?
Justmobile replied to Justmobile's topic in AutoIt General Help and Support
Sorry let's read .. thanks tidde -
Hi Guys, Is there a way to read out the registry (keys) and change them and write it back, with AutoIT? I want to change my favorites path in the registry.. many thanks Tidde
-
open address in IE bar, better way?
Justmobile replied to Justmobile's topic in AutoIt General Help and Support
Great Guys !! Thanksss -
open address in IE bar, better way?
Justmobile replied to Justmobile's topic in AutoIt General Help and Support
Thanks guys, but both options opens a new browser, the browser is already open . any idea? -
Sound stupid but see this Send("!D") Send(@ScriptDir & "/test.html") Send("{ENTER}") is there a faster way? (when you run this , you see slowly that the address bar is filling up, this can faster?) I need to load a url in IE, so i will past the url in the address bar after that an enter. I need this because the script must running after the page is loaded, i need to do some extra things in my script after the pages is showing. cheers Tidde EDIT: wahooo i found this way Send("!D") ClipPut(@ScriptDir & "/test.html") Send("^v") Send("{ENTER}")