topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday March 29, 2024, 3:20 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Last post Author Topic: IDEA: Double-click makes a new folder  (Read 42109 times)

Conquer

  • Honorary Member
  • Joined in 2007
  • **
  • Posts: 50
    • View Profile
    • Donate to Member
Re: IDEA: Double-click makes a new folder
« Reply #25 on: September 16, 2009, 07:58 PM »
maybe it's time a new updated version is written from scratch, with additional features such as Vista support & so on. ;)

you have my complete permission to get started :D

lanux128

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 6,277
    • View Profile
    • Donate to Member
Re: IDEA: Double-click makes a new folder
« Reply #26 on: September 16, 2009, 08:40 PM »
maybe it's time a new updated version is written from scratch, with additional features such as Vista support & so on. ;)

you have my complete permission to get started :D


and i know just the right person for it - skwire. 8)

skwire

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 5,286
    • View Profile
    • Donate to Member
Re: IDEA: Double-click makes a new folder
« Reply #27 on: September 16, 2009, 10:54 PM »
and i know just the right person for it - skwire. 8)

I appreciate the sentiment but...

1) I don't run Vista.
2) I don't use Explorer as a file manager.
3) I don't use Explorer as a shell.

lanux128

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 6,277
    • View Profile
    • Donate to Member
Re: IDEA: Double-click makes a new folder
« Reply #28 on: September 17, 2009, 12:32 AM »
well, at least it's worth a try.. :D

javafreak

  • Participant
  • Joined in 2009
  • *
  • Posts: 2
    • View Profile
    • Donate to Member
Re: IDEA: Double-click makes a new folder
« Reply #29 on: September 21, 2009, 06:36 AM »
it contains torjan binded be aware >:(

f0dder

  • Charter Honorary Member
  • Joined in 2005
  • ***
  • Posts: 9,153
  • [Well, THAT escalated quickly!]
    • View Profile
    • f0dder's place
    • Read more about this member.
    • Donate to Member
Re: IDEA: Double-click makes a new folder
« Reply #30 on: September 21, 2009, 07:52 AM »
it contains torjan binded be aware >:(
Perhaps you want to upgrade your antivirus solution to one that Doesn't SuckTM? False positives is a pretty well-known problem with AutoHotKey generated executables.
- carpe noctem

paarkhi

  • Supporting Member
  • Joined in 2009
  • **
  • Posts: 90
    • View Profile
    • Donate to Member
Re: IDEA: Double-click makes a new folder
« Reply #31 on: October 01, 2009, 08:24 AM »
Ok guys, Avast was also giving warnings and didn't allow me to even download it, but i disabled the whole AV and downloaded as it was from a trusted Source i.e. DC, but again after downloading it didn't allow me to run, again disabled and executed but it does nothing on my windows 7 OS.

I think the author has to really see into this...


« Last Edit: October 01, 2009, 08:30 AM by paarkhi »

paarkhi

  • Supporting Member
  • Joined in 2009
  • **
  • Posts: 90
    • View Profile
    • Donate to Member
Re: IDEA: Double-click makes a new folder
« Reply #32 on: October 01, 2009, 08:33 AM »
it contains torjan binded be aware >:(
Perhaps you want to upgrade your antivirus solution to one that Doesn't SuckTM? False positives is a pretty well-known problem with AutoHotKey generated executables.
Sir, I beg to differ, Same case with me with Avast AV, but the language which he has used was not acceptable.
surprisingly it doesn't happen with any other AHK or EXE downloaded from here.

Contro

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 3,940
    • View Profile
    • Donate to Member
Re: IDEA: Double-click makes a new folder
« Reply #33 on: June 14, 2010, 03:19 AM »
Compiled script uploaded.
- The file name is selected after it is created so you can easily rename it
- You can choose if you want the script to create text files or folders (text files are created by default - see the Config.txt file thats in the zip)

Sorry but I couldn't figure out a way to work with the desktop (wasn't sure how to detect if a file was or wasn't selected on the desktop)

I am trying this script. First AVG detects as a false virus. No problem.
But now I don't understand how function.
I double click but nothing happen.
A tutorial please
xp+sp3

Best Regards


« Last Edit: June 14, 2010, 03:21 AM by Contro »

kalos

  • Member
  • Joined in 2006
  • **
  • default avatar
  • Posts: 1,823
    • View Profile
    • Donate to Member
Re: IDEA: Double-click makes a new folder
« Reply #34 on: July 25, 2010, 07:53 PM »
;create folder by double clicking on empty space
IsOverTitleBarCaption(x, y, hWnd)
{
   SendMessage, 0x84,, (x & 0xFFFF) | (y & 0xFFFF) << 16,, ahk_id %hWnd%
   return (ErrorLevel == 2)
}