AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

storing data

 
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
agdurrette



Joined: 07 Jan 2009
Posts: 18

PostPosted: Thu Aug 06, 2009 1:18 am    Post subject: storing data Reply with quote

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
View user's profile Send private message Send e-mail
lilalurl.T32



Joined: 17 May 2007
Posts: 391
Location: Titan

PostPosted: Thu Aug 06, 2009 1:56 am    Post subject: Reply with quote

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
View user's profile Send private message
agdurrette



Joined: 07 Jan 2009
Posts: 18

PostPosted: Thu Aug 06, 2009 3:29 am    Post subject: Reply with quote

for web browsers
Back to top
View user's profile Send private message Send e-mail
Guest






PostPosted: Thu Aug 06, 2009 6:40 am    Post subject: Reply with quote

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

PostPosted: Thu Aug 06, 2009 1:30 pm    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail
aaffe



Joined: 17 May 2007
Posts: 1002
Location: Germany - Deutschland

PostPosted: Thu Aug 06, 2009 1:35 pm    Post subject: Reply with quote

Sorry but with this spare information I dont think anyone can help you with your problem...
Back to top
View user's profile Send private message
vahju



Joined: 17 Feb 2008
Posts: 296

PostPosted: Thu Aug 06, 2009 1:38 pm    Post subject: Reply with quote

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
View user's profile Send private message
garry



Joined: 19 Apr 2005
Posts: 2212
Location: switzerland

PostPosted: Fri Aug 07, 2009 6:02 am    Post subject: Reply with quote

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
View user's profile Send private message
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group