Coldburn Posted August 30, 2006 Posted August 30, 2006 How can I add a URI scheme to IE? I'm talking about where you specifiy the protocol used in the address line; <thispart>://www.autoitscript.com. I've seen other programs like WinSCP add functionality here and I'd like to do the same with autoit. I'd like to be able to enter something like autoit://<some nfo here> that would start some executable and act apon the data behind the //. Thanks!
flyingboz Posted August 30, 2006 Posted August 30, 2006 Coldburn said: How can I add a URI scheme to IE? I'm talking about where you specifiy the protocol used in the address line; <thispart>://www.autoitscript.com.I've seen other programs like WinSCP add functionality here and I'd like to do the same with autoit.I'd like to be able to enter something like autoit://<some nfo here> that would start some executable and act apon the data behind the //.Thanks!you may wish to google customize mime types Reading the help file before you post... Not only will it make you look smarter, it will make you smarter.
Moderators big_daddy Posted August 30, 2006 Moderators Posted August 30, 2006 I'm not sure what you are trying to do here, but maybe this will help.#include <IE.au3> $sURL = "www.autoitscript.com" $oIE = _IECreate($sURL) ConsoleWrite("Protocol = " & $oIE.document.location.protocol & @CRLF)Here's a couple of links that may help also.Protocol PropertyPredefined Protocols
eynstyne Posted August 31, 2006 Posted August 31, 2006 Not really a skin, it just uses an internal registry command so that the toolbar background is a bitmap you specify. In registry Editor HKLM\Software\Microsoft\Internet Explorer\Toolbar REG_SZ Name : BackBitmapIE5 Value : <Path for the Picture of your choice> F@m!ly Guy Fr33k! - Avatar speaks for itself__________________________________________________________________________________________ite quotes... - Is your refrigerator running? If it is, It probably runs like you...very homosexually - Christians don't believe in gravity - Geeze Brian where do you think you are, Payless?- Show me potato Salad!__________________________________________________________________________________________Programs available - Shutdown timer[indent][/indent]
Coldburn Posted September 1, 2006 Author Posted September 1, 2006 big_daddy said: I'm not sure what you are trying to do here, but maybe this will help. #include <IE.au3> $sURL = "www.autoitscript.com" $oIE = _IECreate($sURL) ConsoleWrite("Protocol = " & $oIE.document.location.protocol & @CRLF) Here's a couple of links that may help also. Protocol Property Predefined Protocols Yes! This is the right direction for sure! On the 'Predefined Protocols' page there is a 'res protocol'. It may be what I'm looking for because it says, "This can be either a custom resource..." Here's the example they give; "res://mydll.dll/#2/#234" This doesnt work but I think i'm close; "res://myautoit.exe/<something> Thanks!
Moderators big_daddy Posted September 1, 2006 Moderators Posted September 1, 2006 No problem, glad I was able to help.
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