AutoHotkey Community

It is currently May 27th, 2012, 6:23 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 145 posts ]  Go to page Previous  1 ... 3, 4, 5, 6, 7, 8, 9, 10  Next
Author Message
 Post subject:
PostPosted: December 11th, 2010, 10:47 pm 
Offline

Joined: October 13th, 2009, 10:09 pm
Posts: 1389
USB or PS/2? Reproducible?

I would suspect that this might be a generic AHK problem, as I don't do anything more specific than other Autohotkey scripts with the keyboard.

Thanks for reporting it.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 9th, 2011, 5:51 pm 
Offline

Joined: October 13th, 2009, 10:09 pm
Posts: 1389
An update has been released, which increases the version number to 2.2.0. 7plus now supports Unicode, this means that for the source version Autohotkey_L Unicode needs to be used. There is also support for 64bit versions of windows now.

Please read the news entry for more infos: http://code.google.com/p/7plus/wiki/News20110109?ts=1294591663&updated=News20110109


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 10th, 2011, 12:30 am 
Offline

Joined: October 5th, 2009, 6:02 pm
Posts: 66
Location: southampton UK
I get this message when running 7plus.ahk.
"#Include file ‘F:\Downloads\2\7plus V.2.2.0 X86 Source\Actions\Autoupdate.ahk” cannot be opened."

_________________
All`s well that ends well :-)
I will not appreciate sarcastic or personal insults in reply s to my posts . Those are the acts of cowards being brave from afar .If you cant be productive don't be destructive .


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 10th, 2011, 12:36 am 
Offline

Joined: October 13th, 2009, 10:09 pm
Posts: 1389
Sorry, it seems there was a problem with that in my update creation script. I'll have this fixed ASAP, in the meantime, feel free to use the binary version or get the file from SVN.

Edit: I have updated the flawed archives and the Autoupdater to include the file. Thanks again for letting me know!


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 14th, 2011, 2:06 pm 
Offline
User avatar

Joined: September 5th, 2009, 2:06 pm
Posts: 1713
Location: Somewhere near you
Hello fragman, can you change the splashtext when I use the autoupdate? My internet speed is very slow, and the splashtext shows around 10 minutes on my screen, and I wish you can make a movable text instead, thanks =)

_________________
Image
The quick onyx goblin jumps over the lazy dwarf


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 14th, 2011, 3:09 pm 
Offline

Joined: October 13th, 2009, 10:09 pm
Posts: 1389
Shouldn't be much of a problem, but you will see it at least one more time in the next update.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 24th, 2011, 8:59 pm 
Offline
User avatar

Joined: September 5th, 2009, 2:06 pm
Posts: 1713
Location: Somewhere near you
Still waiting for updates :P

_________________
Image
The quick onyx goblin jumps over the lazy dwarf


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 24th, 2011, 9:00 pm 
Offline

Joined: October 13th, 2009, 10:09 pm
Posts: 1389
Still working on them :D
Currently I'm mostly trying to get full x64 support going, but there are a few libraries that need fixes.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 31st, 2011, 3:07 pm 
Offline

Joined: July 20th, 2009, 6:01 am
Posts: 166
Location: Amsterdam
Wow this is impressive! Very well done.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 24th, 2011, 7:53 pm 
Offline

Joined: February 5th, 2009, 9:12 am
Posts: 59
hey fragman, remember I told that it was crashing for me???

well, I was using a PS2 to USB converter, or vice versa, to connect a PS2 Keyb to a USB, well, seems it was disconnecting for some reason, I've only noticed it till I started Using a spreadsheet using the arrow keys, it was unplugging and reconnecting by itself.

Switched to a logitech USB keyb, no more trouble...

Still, if disconnect a HID device, 7 plus will still crash. I can't explain how could this happen.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 3rd, 2011, 1:58 pm 
Offline

Joined: February 7th, 2009, 11:28 pm
Posts: 384
thanks for your hard work on 7plus fragman.

two suggestions for the volume changing with mouse wheel function: (1) please add a tool tip to it that shows you the volume level as you adjust it, and (2) please make the volume changes progressive (smaller the change the closer the volume is to 0).

I know your volume function is very different from what I use, but I'll post mine here to illustrate the progressive change and tooltip implementation:

Code:
;Volume up/down with wheel while pointer over taskbar
#IfWinActive, ahk_class Shell_TrayWnd
~WheelUp:: ;Volume up (if mouse over taskbar) - capslock off = change wave vol
~WheelDown:: ;Volume down (if mouse over taskbar) - capslock off = change wave vol
  GetKeyState, state, CapsLock, T ;  D if CapsLock is ON or U otherwise.
  sound := (state == "D") ? "Master" : "Wave"
  SoundGet,vol,%sound%
  dVol := (A_ThisHotkey = "~WheelUp") ? "+" : "-", dVol .= Ceil((vol**0.3)+0.01) ;progressive volume change
  SoundSet, %dVol%, %sound%
  ToolTip, %sound% vol: %vol% ;show volume level as you adjust it
  SetTimer, RemoveTip, -1500
Return
#IfWinActive
RemoveTip:
  ToolTip
Return

_________________
Hardware: 1.8 GHz laptop with 4 GB ram, Windows XP/SP3
Software: Prevx, Privatefirewall, KeyScrambler.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 3rd, 2011, 3:00 pm 
Offline

Joined: October 13th, 2009, 10:09 pm
Posts: 1389
Thanks for your comment!
Your first suggestion is already implemented and will be available in the next version. It's actually a full volume OSD which also shows mute state and it shows up when you change the volume with the mouse over the taskbar or with the keyboard volume buttons.

I'll think about the second one, need to test how it feels like.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 13th, 2011, 8:13 pm 
Offline

Joined: October 13th, 2009, 10:09 pm
Posts: 1389
The latest version is out, 2.3.0!
There are many new features and bugfixes, the x64 version should now work as good as the x86 version.

Here are some examples of new things:
- Context menu support for 7plus events. There are also some tools added to the context menu by default, feel free to adjust them to your needs. There's also support for generic menus now.
- Dynamic timer for quickly creating message/run program/shutdown timers by middle clicking the clock.
- Much work has been put into making this release feel smoother. For example the FTP upload functions now display progress indicators and don't block the input anymore.
- Sound volume on screen display.

See the full changelog here

Download


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 21st, 2011, 3:15 pm 
Offline
User avatar

Joined: November 2nd, 2008, 4:23 pm
Posts: 2906
Location: 127.0.0.1
I tried it and FTP upload crashed explorer each time I tried it with Ctrl-U. I just tested on a file on the desktop and used ftp.autohotkey.net as the domain.

_________________
aboutscriptappsscripts
Any code ⇈ above ⇈ requires AutoHotkey_L to run


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 21st, 2011, 3:28 pm 
Are you still on 2.2.0 by chance and using the x64 version?
I'll try to reproduce it on 2.3.0 ASAP.


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 145 posts ]  Go to page Previous  1 ... 3, 4, 5, 6, 7, 8, 9, 10  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Apollo, JamixZol, rbrtryn, Stigg, Yahoo [Bot] and 21 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