
Zebulon
Members-
Posts
13 -
Joined
-
Last visited
About Zebulon
- Birthday 09/15/1958
Profile Information
-
Location
Regensburg/Germany
Zebulon's Achievements

Seeker (1/7)
0
Reputation
-
Excellent work - thanks for sharing!! 5 Stars rating :-)
-
SQLite semi Embedded database functionality in AutoIt
Zebulon replied to ptrex's topic in AutoIt Example Scripts
Hello Folks, my favorite SQLite manager: SQLite2009 Pro Enterprise Manager (freeware) http://osenxpsuite.net -> download Greetings Zebulon -
Hello All, is it possible to create such a GUI style (see pic, like Office 2007) with AutoIt?? Greetings Zebulon
-
Hello Folks, is there one section, one central place, where I can download the latest versions of all these incredible, great code-snippets and scripts like x-skin, wAu3Update etc. without using the search-function or clicking arround. or a a script, collecting for me? it is very confusing to check all the threads to find the updates. or did I overlook this possibility in the forum? many thx greetings from Germany Roland
-
Maxthon, actuall tab's url? 2nd try
Zebulon replied to Zebulon's topic in AutoIt General Help and Support
This is an actuall shot with the mouse cursor poised directly in the middle of the window with the html-text: Press CTRL-ALT-F to freeze the display. >>>>>>>>>>>> Window Details <<<<<<<<<<<<< Title: Welcome to the MSDN Library - Maxthon Browser Class: IEFrame Size: X: -4 Y: -4 W: 1032 H: 742 >>>>>>>>>>> Mouse Details <<<<<<<<<<< Screen: X: 628 Y: 510 Cursor ID: 2 >>>>>>>>>>> Pixel Color Under Mouse <<<<<<<<<<< RGB: Hex: 0xFFFFFF Dec: 16777215 >>>>>>>>>>> Control Under Mouse <<<<<<<<<<< Size: X: 26 Y: 188 W: 996 H: 496 Control ID: 59648 ClassNameNN: Afx:400000:852 Text: Style: 0x50000000 ExStyle: 0x00000000 (Control is hidden) >>>>>>>>>>> Status Bar Text <<<<<<<<<<< (1): Fertig (2): (3): 1235 (4): (5): (6): (7): 192.168.178.21 (8): 0 Byte (9): 473M (10): 52 >>>>>>>>>>> Visible Window Text <<<<<<<<<<< Suche Suche http://msdn.microsoft.com/library/default....g/objectmap.asp http://msdn.microsoft.com/library/default....g/objectmap.asp Fertig List1 List2 Welcome to the MSDN Library ?? Because of the API-Docs I've send a mail to the developer-team. Cu :-) -
Maxthon, actuall tab's url? 2nd try
Zebulon replied to Zebulon's topic in AutoIt General Help and Support
Hi Dale, the autoit window info says: Press CTRL-ALT-F to freeze the display. >>>>>>>>>>>> Window Details <<<<<<<<<<<<< Title: Maxthon, actuall tab's url? 2nd try - AutoIt Forums - Maxthon Browser Class: IEFrame Size: X: -4 Y: -4 W: 1032 H: 742 >>>>>>>>>>> Mouse Details <<<<<<<<<<< Screen: X: 489 Y: 176 Cursor ID: 2 >>>>>>>>>>> Pixel Color Under Mouse <<<<<<<<<<< RGB: Hex: 0x4399E4 Dec: 4430308 >>>>>>>>>>> Control Under Mouse <<<<<<<<<<< Size: X: 0 Y: 121 W: 1024 H: 43 Control ID: 59394 ClassNameNN: SysTabControl321 Text: Style: 0x5400CE60 ExStyle: 0x00000000 tha Maxthons API-Docs I first have to look for. I'll drop you some lines ASAP. CU Zebulon -
Maxthon, actuall tab's url? 2nd try
Zebulon replied to Zebulon's topic in AutoIt General Help and Support
I inserted a new plug-in for mython, that means a new button/icon in Maxthon's plug-in-toolbar. but the button is without functionallity so far. Thr script I want to code with AutoIt will be compiled to an exe-file and associated with the button. This already works with a dummy exe-file. -
Maxthon, actuall tab's url? 2nd try
Zebulon replied to Zebulon's topic in AutoIt General Help and Support
Hello Dale, > Will that control also have window/keyboard focus at the time you want to do this? Yes - the actuall tab has window/keyboard focus. The reason I try to do this I very simple to explain. Some pages one has to enter into M$'s internet secure zone to make them work all right. It's ok but very unhandy to handle. Copy the actuall URL into clipboard, open internet options, secure zone and copy the URL into the list. So I try to code a sript to do all these steps with one mouse-click. May be there is already a tool for that. But don't mind, I would like to have a try with autoit. Greetings Zebulon -
Maxthon, actuall tab's url? 2nd try
Zebulon replied to Zebulon's topic in AutoIt General Help and Support
Hi Dale, you confirmed my thougt about the com-object and the _IE functions. I really got a InvalidDataTypeError. (A lot to lern!! ;-)) I try to restate my problem tu use your words: I need to determine the URL of the currently shown (active) tab-window in Maxthon Browser. All the windows are shown in tabs like in ff or new IE7. BUT i really need only the URL of the active tab that I can see. If I have 35 tabs open, and in tab 20 the URL of, for instance "www.autoitscript.com" is shown, I need this URL to do something with it (write it into the registry - secure zone entry) I managed to determine the URL of the 1st tab (left hand side) but this is only a little success for me. Thanks 4 helping Zebulon -
Maxthon, actuall tab's url? 2nd try
Zebulon replied to Zebulon's topic in AutoIt General Help and Support
Hello Martin, I use Maxthon. (www.maxthon.com) It's a browser substitut that is based on the M$-IE engine ( I still use ie6) but offers a lot of additional functions, for instance tabbed-browsing. I want to get back the actuall shown tabs's url to write it into the registry-secure zone entry. with one mouse click. But i'm still fighting with the problem getting this damn url back. Greetings Zebulon -
Hello to all! I'm still have the problem getting mathons actuall tabs url. with the followng code in get back the url of the first tab from the left hand side. #include <IE.au3> Opt("WinTitleMatchMode", 2) $aTitle = "- Maxthon Browser" Do Sleep(10) Until WinExists($aTitle) $oHandle = WinGetHandle($aTitle) WinActivate($oHandle) $aHandle = _IEAttach ($oHandle, "HWND") $uRL = _IEPropertyGet ($aHandle, "locationurl") MsgBox(0, "Actuall Tab's URL", $uRL ) but this is not the actuall tab. anyone a solution?? I nearly have a nervous breakdown. many thx in advance greetings from Germany Zebulon
-
@Dale - Connect to Maxthon actuall Tab, URL
Zebulon replied to Zebulon's topic in AutoIt General Help and Support
Hi Dale, you're faster than lightning!! I've tried your latest IE.au3 but Idon't know how to retrive the actually tab and url of Maxthon. #include <IE.au3> Dim $uRL, $oHandle AutoItSetOption("WinTitleMatchMode", 4) $oHandle = WinGetHandle("classname=explorer"," ") $uRL = _IEPropertyGet ($oHandle, "locationurl") MsgBox(0, "Aktuelle Seite", $uRL ) I#ve tried may variations of the sourde code above. But the result I got back is: -> IE.au3 Error from function _IEPropertyGet, $_IEStatus_InvalidDataType I don't want to spezify the URL or the text of the actuall site. Is it possible to worl with wildcards? I just want to get back the URL to save it to registry in secure zone with one mouse-click. thanks for your help greetings Zebulon