 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
reynoldscr Guest
|
Posted: Fri May 06, 2005 3:34 pm Post subject: |
|
|
what version of open office are you using?
The current code works fine for me using the version 2.0 beta. |
|
| Back to top |
|
 |
dmiranda
Joined: 02 May 2005 Posts: 12
|
Posted: Fri May 06, 2005 4:07 pm Post subject: |
|
|
| reynoldscr wrote: | what version of open office are you using?
The current code works fine for me using the version 2.0 beta. |
I use 1.1.4 final. I was waiting for 2.0 to get more stable. |
|
| Back to top |
|
 |
reynoldscr Guest
|
Posted: Sat May 07, 2005 2:50 am Post subject: |
|
|
| I just realised that I still have 1.1.4 installed, and the script works in that version as well, so I'm not sure what would be causing the script to not work for you. |
|
| Back to top |
|
 |
dmiranda2 Guest
|
Posted: Sat May 07, 2005 2:55 am Post subject: |
|
|
| reynoldscr wrote: | | I just realised that I still have 1.1.4 installed, and the script works in that version as well, so I'm not sure what would be causing the script to not work for you. |
No idea. In any case, it works everywhere else where it is supposed to, including MSOffice word. Perhaps it is because I am using the spanish version? |
|
| Back to top |
|
 |
dmiranda2 Guest
|
Posted: Sat May 07, 2005 5:52 am Post subject: |
|
|
| actually, I had chosen to replace normal open/save with openoffice ones. |
|
| Back to top |
|
 |
reynoldscr Guest
|
Posted: Sat May 07, 2005 7:01 am Post subject: |
|
|
| dmiranda2 wrote: | | actually, I had chosen to replace normal open/save with openoffice ones. |
I assume thats an option somewhere in OpenOffice?
I'll try and find it in mine, and see what happens |
|
| Back to top |
|
 |
reynoldscr Guest
|
Posted: Sat May 07, 2005 10:19 am Post subject: |
|
|
I turned on the openoffice dialogs, but I'm afraid there isn't enough info available via window spy for me to make the required changes. the only thing window spy seems to be able to determine about the openoffice dialogs is the class. It will take someone with a bit more than my meager knowledge to adapt the script for the openoffice dialog I'm afraid.
For the moment, if you really want want ot use the easy acces script, I guess you will have to go back to the normal dialogs. |
|
| Back to top |
|
 |
dmiranda
Joined: 02 May 2005 Posts: 12
|
Posted: Sat May 07, 2005 11:26 am Post subject: |
|
|
| reynoldscr wrote: | | For the moment, if you really want want ot use the easy acces script, I guess you will have to go back to the normal dialogs. |
Did so, thank you! |
|
| Back to top |
|
 |
gast Guest
|
Posted: Sun May 08, 2005 11:23 am Post subject: |
|
|
great script, thx
FavoritFolders.exe
| Code: |
#NoTrayIcon
run, D:\misc\FavoritFolders\sendf.exe
|
and sendf.exe
| Code: |
#NoTrayIcon
WinWait, Dateidownload,
IfWinNotActive, Dateidownload, , WinActivate, Dateidownload,
WinWaitActive, Dateidownload,
Send, f
loop
|
"dateidownload" is in german os
with sendf.exe you can link to progs like notepad.exe |
|
| Back to top |
|
 |
gast Guest
|
Posted: Sun May 08, 2005 11:35 am Post subject: |
|
|
oh, sorry
sendf.exe
| Code: |
#NoTrayIcon
loop
{
WinWait, Dateidownload,
IfWinNotActive, Dateidownload, , WinActivate, Dateidownload,
WinWaitActive, Dateidownload,
Send, f
}
|
|
|
| Back to top |
|
 |
Guest
|
Posted: Sat May 28, 2005 7:39 pm Post subject: |
|
|
| Great script, the only problem is thet with it I'm getting mouse slowdowns sometime, like using flash sites... Anyone know the reason?? |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10464
|
Posted: Mon May 30, 2005 12:22 am Post subject: |
|
|
| Quote: | | I'm getting mouse slowdowns sometime | If the CPU is under heavy load, any script that uses mouse hotkeys might cause mouse cursor lag. A possible workaround is to increase the priority of the script by putting the following line near the top:
Process, Priority, , High
This issue was also added to the FAQ not too long ago. |
|
| Back to top |
|
 |
savage
Joined: 02 Jul 2004 Posts: 206
|
Posted: Mon May 30, 2005 5:55 pm Post subject: |
|
|
| Quote: | | I would like to have the display of my favorite folders divide in sections, through separators. This was easy to do in ini. How do you do that with a directory full of shortcuts? |
I changed mine to use a modified version of my foldermenu function. With that you can have sub folders in the shortcuts directory that show up as sub menus on the favorites menu. Quite nice, and a fairly easy change to make. _________________ <enormous animated gif> |
|
| Back to top |
|
 |
dmiranda
Joined: 02 May 2005 Posts: 12
|
Posted: Tue May 31, 2005 6:45 am Post subject: |
|
|
| savage wrote: | | I changed mine to use a modified version of my foldermenu function. With that you can have sub folders in the shortcuts directory that show up as sub menus on the favorites menu. Quite nice, and a fairly easy change to make. |
That is great! Now, where would that script be?  |
|
| Back to top |
|
 |
guivho
Joined: 04 Jun 2005 Posts: 26 Location: Lokeren, Belgium
|
Posted: Sun Jun 05, 2005 7:11 pm Post subject: |
|
|
May I suggest some small extension/update of this great script?
; - Formally define desired directory explorer/editor
; - Use the defined explorer to run in the fall-through case
; - use the defined explorer to edit the favorites folder
Here's my adaptation:
(Moderator: Scroll down a few posts to see the script) |
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|