AutoHotkey Community

It is currently May 25th, 2012, 3:41 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 356 posts ]  Go to page Previous  1 ... 10, 11, 12, 13, 14, 15, 16 ... 24  Next
Author Message
 Post subject:
PostPosted: September 12th, 2007, 7:29 pm 
Online

Joined: March 28th, 2004, 3:53 pm
Posts: 1868
ClintiePoo wrote:
How do I make this scan my web favorites (internet explorer) so I can use it to launch web pages as well?

good question. this will come soon. :)


ClintiePoo wrote:
Also, how do I make it scan for specific folders so I can just open that folder?

well for now, you could press Shift+Enter on any item to open its parent folder.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 12th, 2007, 10:01 pm 
Offline

Joined: February 17th, 2005, 10:06 am
Posts: 280
Location: Hungary, Budapest
ClintiePoo wrote:
How do I make this scan my web favorites (internet explorer) so I can use it to launch web pages as well?
Just remove this part:
Code:
   ;get real file path from shortcut
   StringRight, check, RunItem, 4
   IfEqual, check, .lnk
   {
      FileGetShortcut, %RunItem%, LnkTarget
      IfNotInString, LnkTarget, {
      IfNotInString, LnkTarget, }
         RunItem = %LnkTarget%
   }

This actually makes 320MPH capable of launching any shortcut or file.
Include url into the TypeList in 320mph.ini, and PathList is also important.

_________________
Is there another word for synonym?


Report this post
Top
 Profile  
Reply with quote  
 Post subject: simply awesome
PostPosted: September 17th, 2007, 10:08 am 
Offline

Joined: July 23rd, 2004, 7:38 am
Posts: 15
>Statutory Warning : Habit Forming

you got that right.... i've got this permanently on my toolkit-usb-mem-stick.
totally addictive - lightning fast, makes my start menu fly (even with 100+ program in there)

thanks rajat - u are an ahk legend!

:-)

_________________
float o=0.075,h=1.5,T,r,O,l,I;int _,L=80,s=3200;main(){for(;s%L||
(h-=o,T= -2),s;4 -(r=O*O)<(l=I*I)|++ _==L&&write(1,(--s%L?_<L?--_
%6:6:7)+"World! \n",1)&&(O=I=l=_=r=0,T+=o /2))O=I*2*O+h,I=l+T-r;}


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 17th, 2007, 5:12 pm 
holy crap this script kicks ass.

got it to replace launchy and farr.

btw, how do i change the font in the listview? i want to enlarge them a bit.

iv been able to change the color of the font and background. im lost with the font style.

thanks rajat.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: September 17th, 2007, 6:15 pm 
Online

Joined: March 28th, 2004, 3:53 pm
Posts: 1868
thanks guys!

Arthur,
you need to look into 'Gui, Font ......' command.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 17th, 2007, 7:54 pm 
Thx

is it possible to exclude a subdirectory from scanning? i let 320 scan my program files folder but i dont want it to scan my web browsers' cache folder. k-meleons cache files have no file extensions.

Cheers


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: September 17th, 2007, 8:28 pm 
Online

Joined: March 28th, 2004, 3:53 pm
Posts: 1868
that'll be fixed in next version.
for now, replace:
IfNotInString, TypeList, %FExt%, Continue

with:
chk = |%TypeList%|
IfNotInString, chk, |%FExt%|, Continue

and make sure there's no || in Type List in config file.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 17th, 2007, 10:54 pm 
Thanks much rajat. looking forward to a your new release. :)


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: September 19th, 2007, 8:45 pm 
Offline

Joined: December 8th, 2006, 3:56 pm
Posts: 6
SanskritFritz wrote:
ClintiePoo wrote:
How do I make this scan my web favorites (internet explorer) so I can use it to launch web pages as well?
Just remove this part:
Code:
   ;get real file path from shortcut
   StringRight, check, RunItem, 4
   IfEqual, check, .lnk
   {
      FileGetShortcut, %RunItem%, LnkTarget
      IfNotInString, LnkTarget, {
      IfNotInString, LnkTarget, }
         RunItem = %LnkTarget%
   }

This actually makes 320MPH capable of launching any shortcut or file.
Include url into the TypeList in 320mph.ini, and PathList is also important.


Thanks! I just ended up changing the typelist and pathlist and this worked great! This is so much faster than searching through bookmarks in IE.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 20th, 2007, 10:14 am 
Offline

Joined: February 17th, 2005, 10:06 am
Posts: 280
Location: Hungary, Budapest
Ah, right, I forgot, that the bookmark shortcuts are not *.lnk files, but *.url files.

_________________
Is there another word for synonym?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 22nd, 2007, 4:29 pm 
Online

Joined: March 28th, 2004, 3:53 pm
Posts: 1868
Everyone,
if you've been wanting me to update 320MPH (to add more features or to make it even faster) and were frustrated of not much action going on around on this front... well here's some news!

320MPH's NEW home :
www.codenite.com
www.codenite.com/forum/

This is my new website where I'll put my completed projects which are directly usable by people outside AHK community too. The new 320MPH is greatly enhanced and much-much faster.

Please Join and Support.
Cheers!

p.s. Thanks SanskritFritz for supporting users when I wasn't around! :)

_________________
Image


Last edited by Rajat on October 20th, 2007, 6:46 pm, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 25th, 2007, 4:01 pm 
id like to create a button that does shift+enter (open directory of current selected item). which command should i put in the button?

thanks


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: September 26th, 2007, 10:29 am 
Offline

Joined: February 17th, 2005, 10:06 am
Posts: 280
Location: Hungary, Budapest
MikeB wrote:
id like to create a button that does shift+enter (open directory of current selected item). which command should i put in the button?
Create a new function for the button, where you set a flag to TRUE like this:
Code:
fFolderOpen := TRUE
and calls the normal opening function (ButtonOpen)
Then edit this part:
Code:
   ;shift key down opens host folder
   IfEqual, ShKey, D
   {
      Run, %OpenFolderWith% "%FDir%"
      Gui Destroy
   }
like this:
Code:
;shift key down opens host folder
if (ShKey = "D") or (fFolderOpen)
   {
      Run, %OpenFolderWith% "%FDir%"
      fFolderOpen := FALSE
      Gui Destroy
   }

Not tested.

_________________
Is there another word for synonym?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 29th, 2007, 2:34 pm 
Online

Joined: March 28th, 2004, 3:53 pm
Posts: 1868
Much improved 320MPH 2.0's latest beta (B2) is available!
The reviews until now have been great. More testers are welcome.

Also, a tutorial on making own 320MPH scan plugins.
:)

_________________
Image


Last edited by Rajat on October 20th, 2007, 6:46 pm, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 7th, 2007, 12:33 am 
quote from this page

http://www.autohotkey.com/forum/viewtop ... &start=165

SanskritFritz wrote:
Code:
OnMessage( 6, "WM_ACTIVATE" )

...


;; Control the focus of main window. When it lose focus, hide it.
WM_ACTIVATE( wParam, lParam )
{
   if ( wParam = 0 )
      GoSub Hide320
   Return 0
}


where in the script do i insert the above? thank you.

i want this

;; Control the focus of main window. When it lose focus, hide it. :)


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 356 posts ]  Go to page Previous  1 ... 10, 11, 12, 13, 14, 15, 16 ... 24  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Bing [Bot], Bon, Google [Bot], JamixZol, Rajat and 19 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group