
.
Moderator: Neosoft Support
The Following by Jim Brammer works pretty good when adding to Favorites list (but change the Google var to your current URL)fkapnist wrote:I wonder if anyone has found a way for the Neobook browser-object to add and open an item to and from the user's IE Favorites folder? (Although Microsoft claims ease of use, it is mostly propriety -based, for its own Windows applications)...
![]()
.
This path in the Neosoft Support example: C:\Users\[UserName]\Favorites\*.urlNeosoft Support wrote:You could use the FileList action:
FileList "C:\Users\[UserName]\Favorites\*.url" "Files+NoExt" "[Favorites]"
The NeoBookFM/FTP plug-in has more options for listing and selecting files.
Code: Select all
FileRead "C:\Users\[UserName]\Favorites\[ComboBox3].url" "All" "[vfav]"
.Delay "100"
SearchStr "URL=" "[vfav]" "[vfavUrl]" "CaseSensitive"
.Delay "100"
SubStr "[vfav]" "[vfavUrl]" "1500" "[vfavNumber]"
FileWrite "[TempDir]tmp.txt" "All" "[vfavNumber]"
FileRead "[TempDir]tmp.txt" "1" "[vfavURL]"
.Delay "100""
StrReplace "[#34][vfavURL][#34]" "URL=" "" "[vfavFav]" "CaseSensitive"
.Delay "100"
StrReplace "[vfavFav]" "[#34]" "" "[vfavUrlanswer]" ""
.Delay "100"
SetVar "[TextEntry1]" "[vfavUrlanswer]"
BrowserGoTo "WebBrowser1" "[TextEntry1]"
You have to read the files and parse them. The url files are plain text so you can read them with FileRead or FileToVar and use SearchStr to locate the line containing the url.How do I get a list of the actual links?
Code: Select all
[DEFAULT]
BASEURL=http://www.networksolutions.com/whois/index.jsp
[InternetShortcut]
URL=http://www.networksolutions.com/whois/index.jsp
IDList=
IconFile=http://www.networksolutions.com/favicon.ico
...