| View previous topic :: View next topic |
| Author |
Message |
agdurrette
Joined: 07 Jan 2009 Posts: 18
|
Posted: Thu Aug 06, 2009 1:18 am Post subject: storing data |
|
|
| I would like th create a simple bookmark manager and i was wandring what the best way to store the bookmarks and how. |
|
| Back to top |
|
 |
lilalurl.T32
Joined: 17 May 2007 Posts: 391 Location: Titan
|
Posted: Thu Aug 06, 2009 1:56 am Post subject: |
|
|
Do you mean a bookmark manager for a web browser? Or for an ebook reader? Or something else?
As for what you could use, have a look at the IniWrite/Read and FileRead/FileAppend commands in the help file.
________
Babi Mac
Last edited by lilalurl.T32 on Sun Mar 13, 2011 6:43 am; edited 1 time in total |
|
| Back to top |
|
 |
agdurrette
Joined: 07 Jan 2009 Posts: 18
|
Posted: Thu Aug 06, 2009 3:29 am Post subject: |
|
|
| for web browsers |
|
| Back to top |
|
 |
Guest
|
Posted: Thu Aug 06, 2009 6:40 am Post subject: |
|
|
well if its for browsers, clearly u should be looking for add-ons for the browser.
what exactly does not satisfy u with the default bookmark functions in the browser u are using? |
|
| Back to top |
|
 |
agdurrette
Joined: 07 Jan 2009 Posts: 18
|
Posted: Thu Aug 06, 2009 1:30 pm Post subject: |
|
|
| i have a bunch of bookmarks on other computers and different web browsers and i would like to organize them in one place |
|
| Back to top |
|
 |
aaffe
Joined: 17 May 2007 Posts: 1002 Location: Germany - Deutschland
|
Posted: Thu Aug 06, 2009 1:35 pm Post subject: |
|
|
| Sorry but with this spare information I dont think anyone can help you with your problem... |
|
| Back to top |
|
 |
vahju
Joined: 17 Feb 2008 Posts: 296
|
Posted: Thu Aug 06, 2009 1:38 pm Post subject: |
|
|
As previously mentioned you should really look at bookmark add-ons. Here is a link to Xmarks, a bookmark manager for IE, Firefox, and Safari. Synchs bookmarks across multiple computers and is completely free.
No need to recreate the wheel. |
|
| Back to top |
|
 |
garry
Joined: 19 Apr 2005 Posts: 2212 Location: switzerland
|
Posted: Fri Aug 07, 2009 6:02 am Post subject: |
|
|
example save links to a csv-file ( use with listview and search ( 5 rows ) )
| Code: |
;-example for firefox
;- saves csv file alt+F11
; Youtube Monty Python;http://www.youtube.com/MontyPython ;200901021353;;
; Li Xianglan wikipedia;http://en.wikipedia.org/wiki/Li_Xianglan ;200901021050;;
~$!F11::
{
F181=%A_scriptdir%\_savedlinks.txt
clipboard=
send,!s ;mark link in firefox
sleep,200
send,^c
CL=%clipboard%
if CL=
return
InputBox, UserInput, comments
if errorlevel<>0
return
stringmid,ST,A_now,1,12
FileAppend,%userinput%;%clipboard%;%ST%;;`r`n,%F181%
Splashimage,,b w600 h150 x100 Y400 CWsilver m9 b fs10 zh0,%clipboard%
Sleep,900
Splashimage, off
return
}
|
|
|
| Back to top |
|
 |
|