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 

Folder Menu - a popup menu to quickly change your folders
Goto page Previous  1, 2, 3, 4, 5 ... 10, 11, 12  Next
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
icefreez



Joined: 15 May 2007
Posts: 144

PostPosted: Fri Apr 17, 2009 5:03 pm    Post subject: Reply with quote

Wonderful Script Idea. I don't use nearly as much of what is set up but it is useful for the 3 or 4 folders I switch between a lot daily at work.
Back to top
View user's profile Send private message
Guest






PostPosted: Fri Apr 17, 2009 11:05 pm    Post subject: Problem with Sandboxie Reply with quote

Hi Rexx,

your script is such a time saver!

I am not sure whether you tried Sandboxie.com before (a very useful, small app)? Probably not? It allows you to start any program and to encapsulate the changes in a sandbox (so that the original system is protected from any modifications).

But here is my question. For example when I open a (sandboxed) explorer window, your script doesn't seem to work (that is I can not change to a different folder). But if I open a sandboxed command line window, your script works (that is changes directories correctly).

Any idea why that is?

Thank you very much for your help in advance!

Sincerely,
Peter
Back to top
rexx



Joined: 28 Feb 2006
Posts: 72

PostPosted: Sat Apr 18, 2009 5:22 am    Post subject: Re: Problem with Sandboxie Reply with quote

icefreez wrote:
Wonderful Script Idea. I don't use nearly as much of what is set up but it is useful for the 3 or 4 folders I switch between a lot daily at work.

Thanks. : D

Anonymous wrote:

But here is my question. For example when I open a (sandboxed) explorer window, your script doesn't seem to work (that is I can not change to a different folder). But if I open a sandboxed command line window, your script works (that is changes directories correctly).

Hi, i tried it. It changes the window classname, adding some prefix to the original classname. The script doesn't work because it checks the classname for supported window. I tried to use 'contains' to check the classname, but it still doesn't work, dont know why. Confused
Back to top
View user's profile Send private message
Guest






PostPosted: Sat Apr 18, 2009 10:17 am    Post subject: Reply with quote

Rexx, thanks a for taking the time to try this. Hopefully you find Sandboxie useful Smile

Yes, indeed. It adds the prefix: Sandbox:DefaultBox:

Fortunately your app is flexible enough to add new Window classes. I actually tried this and it worked (added Sandbox:DefaultBox:CabinetWClass to ini file).

But since that worked, probably your "contains" code should also work?

Regards.
Peter
Back to top
Guest






PostPosted: Thu Apr 23, 2009 3:58 am    Post subject: Reply with quote

Rexx, where can I find lib.ahk?

Many thanks in advance!
Back to top
rexx



Joined: 28 Feb 2006
Posts: 72

PostPosted: Thu Apr 23, 2009 4:05 am    Post subject: Reply with quote

http://www.autohotkey.net/~rexx/FolderMenu/files/Lib.ahk
Back to top
View user's profile Send private message
Guest






PostPosted: Thu Apr 23, 2009 5:52 am    Post subject: Reply with quote

Rexx, thanks.

I tried the new version 121 (both the exe and ahk version), but when I click on "Add Favorite" in the menu it crashes and the tray icon disappears. All previous version worked fine.

Any ideas what could be wrong?
Back to top
rexx



Joined: 28 Feb 2006
Posts: 72

PostPosted: Thu Apr 23, 2009 11:51 am    Post subject: Reply with quote

Anonymous wrote:
Rexx, thanks.

I tried the new version 121 (both the exe and ahk version), but when I click on "Add Favorite" in the menu it crashes and the tray icon disappears. All previous version worked fine.

Any ideas what could be wrong?


No idea Confused
What's your OS, and where do you click the "Add Favorite"? In tray menu or in the popup favorites menu?
I've tested on win7 and winxp, both works fine.
And which previous version works for you? 1.20 or earlier?
Back to top
View user's profile Send private message
Guest






PostPosted: Thu Apr 23, 2009 10:15 pm    Post subject: Reply with quote

I tried Vista sp1 and Windows 7 (7077). I right clicked on the System tray.

Is there somekind of debug log?

The previous version was 1.16. (I personally like this version better, because less bloated (no lib.ahk etc)).
Back to top
rexx



Joined: 28 Feb 2006
Posts: 72

PostPosted: Fri Apr 24, 2009 7:40 am    Post subject: Reply with quote

Anonymous wrote:
I tried Vista sp1 and Windows 7 (7077). I right clicked on the System tray.

Is there somekind of debug log?

The previous version was 1.16. (I personally like this version better, because less bloated (no lib.ahk etc)).


In the new version 1.20~ I add a favorites management GUI in options, and "add favorite" will go to the options GUI and add a new item.
Can you add an item in the favorites tab in options? (press Ins or click "+" button)
or that crashes too?
There's no debug log, you have to look the ahk log window.
Back to top
View user's profile Send private message
Guest






PostPosted: Fri Apr 24, 2009 10:49 pm    Post subject: Reply with quote

Actually I tested again. It works fine on Vista.

But on Windows 7 (7077) it crashes, for example when I click on options or add favorite in the right click menu.

I guess Windows 7 is not supported yet ...
Back to top
rexx



Joined: 28 Feb 2006
Posts: 72

PostPosted: Sat Apr 25, 2009 4:34 am    Post subject: Reply with quote

Anonymous wrote:
Actually I tested again. It works fine on Vista.

But on Windows 7 (7077) it crashes, for example when I click on options or add favorite in the right click menu.

I guess Windows 7 is not supported yet ...


On my Windows7 (7000) it works fine.
Maybe I can find out what's wrong when the Windows 7 RC is out. :p
Back to top
View user's profile Send private message
Guest






PostPosted: Sat Apr 25, 2009 8:03 am    Post subject: Reply with quote

Yes, good idea. Windows 7 RC is leaked already (build 7100).
Back to top
Guest






PostPosted: Sun Apr 26, 2009 9:20 am    Post subject: Re: Problem with Sandboxie Reply with quote

Rexx,

you could use regular expressions instead of Contains.

For example:

Code:
[REGEXPCLASS:.*MozillaUIWindowClass; REGEXPTITLE:\A\[\#\] Mozilla Firefox[^-]*\Z]


rexx wrote:

Anonymous wrote:

But here is my question. For example when I open a (sandboxed) explorer window, your script doesn't seem to work (that is I can not change to a different folder). But if I open a sandboxed command line window, your script works (that is changes directories correctly).

Hi, i tried it. It changes the window classname, adding some prefix to the original classname. The script doesn't work because it checks the classname for supported window. I tried to use 'contains' to check the classname, but it still doesn't work, dont know why. Confused
Back to top
bluefish



Joined: 26 Apr 2009
Posts: 6
Location: Silver Coast Portugal

PostPosted: Sun Apr 26, 2009 3:20 pm    Post subject: Reply with quote

Thanks for this script.

I have an error when trying to add a new item.


'Could not open...........whatever file
there's something wrong with your config file.'

It is a noob question, but what have I missed here?

Thanks
Andy
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2, 3, 4, 5 ... 10, 11, 12  Next
Page 4 of 12

 
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