I have this working with 4.1 beta and some modifications to the script (see below).In my case, it kept duplicating or echoing each character in the url string, like wwwwww..xxddaa-- ... etc. so I replaced the SendKeys(url) statement with a for next loop. (this trick was suggested by Menneisyys on post # 16 of this thread). It is kind of slow doing it now, so please let me know if there is an easier fix or setting. Thanks,
#Open Address Box
SendLeftSoft
Sleep(1000)
SendLeftSoft
Sleep(1000)
#Clear default www. characters
SendEnd
SendBackspace
SendBackspace
SendBackspace
SendBackspace
Sleep(100)
#Input link
ForEach char in charsOf %url%
SendKeys(%char%)
Sleep(1)
SendBackspace
Sleep(1)
EndForEach
Sleep(100)
#Click OK
SendLeftSoft