rajeshontheweb Posted December 3, 2009 Posted December 3, 2009 (edited) Hmm, i had tried it a couple of days back and came here to post about the rendering engine, noticed that it has been mentioned already : it would be nice to change the name or just say Gecko like Browser. i was actually very excited to see the speed and then when i went through the source to find out where and how u have used the Gecko engine, it was a disappointment :-( Otherwise, its well built, fast, nice one... Edited December 3, 2009 by rajeshontheweb Started late is much better than having never started it!!!!Failure is another step towards success. I've been messing around with: Adding Entry to 'Hosts'File Information Lister (Logger)Yet Another AutoIT Error Handler Yet Another AutoIT Error Handler & Debugger Control your App's TaskBar Button YCurrency Ticker (Latest Release : 16 Apr 2009)_WinInetInternetCheckConnection UDF Symantec Definitions Lister UDF _GetLocalIPAddresses UDF UDF to get Special Folder Information WMI_NetworkAdapterConfiguration2Array WMI_CDRomDriveCapabilities _ScriptExists - Check if your au3 script is running!! Uninstaller UDF Get Version for your application (at script level or compiled stage) Uninstaller Pro - faster alternative to windows application removal applet
dantay9 Posted December 3, 2009 Author Posted December 3, 2009 Thanks for the support guys. I added a comment to the title to clarify what my program is (or isn't). @AdmiralAlkex Thanks for the help. I would have never found that because the script moves smoothly on my XP computer.
ValeryVal Posted December 4, 2009 Posted December 4, 2009 Is it stronger inside resizable window? $GUI = GUICreate($Title, $GUIWidth, $GUIHeight, -1, -1, $WS_THICKFRAME+$WS_POPUP, $WS_EX_COMPOSITED) The point of world view
jvanegmond Posted December 4, 2009 Posted December 4, 2009 Mozilla Firefox Web Browser Doesn't use Mozilla Firefox rendering engine Internet Explorer Web Browser Doesn't use Internet Explorer rendering engine Need I say more? github.com/jvanegmond
ValeryVal Posted December 4, 2009 Posted December 4, 2009 Need I say more?"This isn't the house that Jack didn't built.This isn't the malt that doesn't lay in the house that Jack didn't built. .." The point of world view
Shafayat Posted December 6, 2009 Posted December 6, 2009 I found a little problem (shown in the image). My resolution 1440x900. [Not using this account any more. Using "iShafayet" instead]
dantay9 Posted December 7, 2009 Author Posted December 7, 2009 @Shafayat You must have one of the older builds. Every time I fix a bug, I post the fixed code. I only make a post saying update when there are some major fixes or additions. Try downloading the newest version. That problem should be fixed.
Shafayat Posted December 7, 2009 Posted December 7, 2009 Ok. it works now. [Not using this account any more. Using "iShafayet" instead]
jamesstp20 Posted June 28, 2010 Posted June 28, 2010 I was looking at a few examples on the forum and came across object events from IE captured by ObjEvent. I don't work with objects very much, but this sounded interesting. I did a bit of searching on MSDN and found quite a bit of useful information. Favorites are saved to an ini file. The drop down menu only applies to favorites, not to previously visited websites. To add a favorite, click on the little star and it will light up. Click on it again to remove the website from favorites. I would love to hear any suggestions. ToDo List: 1. Tabbed Browsing 2. Stop some links from opening in a new window. (Not realistic) 3. Images aren't always reliable. 4. Menu bar to edit favorites, view, history, etc. 5. Retrieve url history from local drives Download available here. Hey! Is there a way to get your gecko web browser working in Autoit 3 ? This is all my error: C:\Users\James\Desktop\Gecko Web Browser\Includes\GUICtrlSetOnHover_UDF.au3(15,106) : ERROR: Opt() called with illegal argument 1: "OnExitFunc" Global $__GUICtrl_SetOnHover_sOriginal_OnExitFunc = Opt("OnExitFunc", "__GUICtrl_SetOnHover_OnAutoItExit") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Users\James\Desktop\Gecko Web Browser\Includes\ModernMenuRaw.au3(142,79) : ERROR: $WM_LBUTTONDOWN previously declared as a 'Const' If Not IsDeclared("WM_LBUTTONDOWN") Then Global Const $WM_LBUTTONDOWN = 0x0201 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Users\James\Desktop\Gecko Web Browser\Includes\ModernMenuRaw.au3(144,83) : ERROR: $WM_LBUTTONDBLCLK previously declared as a 'Const' If Not IsDeclared("WM_LBUTTONDBLCLK") Then Global Const $WM_LBUTTONDBLCLK = 0x0203 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Users\James\Desktop\Gecko Web Browser\Includes\ModernMenuRaw.au3(145,79) : ERROR: $WM_RBUTTONDOWN previously declared as a 'Const' If Not IsDeclared("WM_RBUTTONDOWN") Then Global Const $WM_RBUTTONDOWN = 0x0204 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Users\James\Desktop\Gecko Web Browser\Includes\ModernMenuRaw.au3(146,75) : ERROR: $WM_RBUTTONUP previously declared as a 'Const' If Not IsDeclared("WM_RBUTTONUP") Then Global Const $WM_RBUTTONUP = 0x0205 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Users\James\Desktop\Gecko Web Browser\Includes\ModernMenuRaw.au3(148,79) : ERROR: $WM_MBUTTONDOWN previously declared as a 'Const' If Not IsDeclared("WM_MBUTTONDOWN") Then Global Const $WM_MBUTTONDOWN = 0x0207 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Users\James\Desktop\Gecko Web Browser\Includes\ModernMenuRaw.au3(149,75) : ERROR: $WM_MBUTTONUP previously declared as a 'Const' If Not IsDeclared("WM_MBUTTONUP") Then Global Const $WM_MBUTTONUP = 0x0208 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Users\James\Desktop\Gecko Web Browser\Gecko Web Browser.au3(46,44) : ERROR: $WS_EX_COMPOSITED previously declared as a 'Const' Global Const $WS_EX_COMPOSITED = 0x02000000 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Users\James\Desktop\Gecko Web Browser\Gecko Web Browser.au3(241,33) : ERROR: AdlibEnable(): undefined function. AdlibEnable("RedrawWindow", 2500) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Users\James\Desktop\Gecko Web Browser\Gecko Web Browser.au3 - 9 error(s), 0 warning(s) Thanks
FuryCell Posted June 28, 2010 Posted June 28, 2010 (edited) @JamesReplace Opt("OnExitFunc", "__GUICtrl_SetOnHover_OnAutoItExit")withOnAutoItExitRegister( "__GUICtrl_SetOnHover_OnAutoItExit" )The isdeclared errors can be ignored.Remove this lineGlobal Const $WS_EX_COMPOSITED = 0x02000000and change AdlibEnable to AdLibRegister. Edited June 28, 2010 by FuryCell HKTunes:Softpedia | GoogleCodeLyricToy:Softpedia | GoogleCodeRCTunes:Softpedia | GoogleCodeMichtaToolsProgrammer n. - An ingenious device that turns caffeine into code.
sxyObs Posted July 9, 2010 Posted July 9, 2010 hi guys, The browser GUI flashes in windows vista. why?
sxyObs Posted July 9, 2010 Posted July 9, 2010 wew, i just remove the Function in _WinAPI_RedrawWindow(&gui) and the Gui flashing stop, but the embedded IE still flashing hmmm still need you help.
dantay9 Posted July 10, 2010 Author Posted July 10, 2010 Small update to fix the errors being showed. Like FuryCell said, the IsDeclared errors can be ignored.@sxyObsThe GUI and the web browser aren't flashing on Windows XP Home. I don't have access to Windows Vista so I can't debug it for you. I have seen a few other topics here and here where it seems that Windows Vista has problems with double buffering.
adik2dmax666 Posted July 11, 2010 Posted July 11, 2010 Why not add tabbed-browing for your browser? First learn computer science and all the theory. Next develop a programming style. Then forget all that and just hack. -George Carrette[sub]GD Keylogger Creator (never released)[/sub][sub]Garena Autojoin v3.0[/sub]
dantay9 Posted July 11, 2010 Author Posted July 11, 2010 (edited) I planned to eventually but haven't got around to doing it yet. I have been consumed with learning C#, so much so that I haven't been doing much AutoIt coding at all. And, after all, it's summer vacation for me. I have endless amounts of things to do. You, or anyone else for that matter, is welcome to take my code and play with it, adding whatever you want. I just ask for you to reference me in your project. Edited July 11, 2010 by dantay9
sxyObs Posted July 12, 2010 Posted July 12, 2010 (edited) i changed your _WinAPI_RedrawWindow($GUI) to _WinAPI_RedrawWindow($GUI, 0, BitOR($RDW_INVALIDATE, $RDW_UPDATENOW)) and it works fine, but still the embedded IE still flickering the best way for now is changing my window vista theme to window classic. 100 % no flickering does anyone knows or a script about changing vista theme? i tried forum but no success. Edited July 12, 2010 by sxyObs
AdmiralAlkex Posted July 12, 2010 Posted July 12, 2010 does anyone knows or a script about changing vista theme? i tried forum but no success.Do you mean temporary (only change while the script runs) or permanent? .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface
sxyObs Posted July 13, 2010 Posted July 13, 2010 Do you mean temporary (only change while the script runs) or permanent?only change while the scripts run, I've seen some java apps that change vista theme to classic. I'll try it later in Autoit.
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