|
ennye Novice
Joined: 17 Dec 2007 Posts: 49
|
Posted: Thu Jul 01, 2010 8:45 pm
[3.21] DIV macro key lost |
DIV macro key not working (numeric keyboard). Ctrl+div works ok. Can any1 check this?
|
|
|
|
Zugg MASTER
Joined: 25 Sep 2000 Posts: 23379 Location: Colorado, USA
|
Posted: Thu Jul 01, 2010 10:34 pm |
You need to provide a lot more information than this! Look in your Macros and post the XML of your DIV key macro. My DIV key works fine here. Also make sure NumLock is activated or else the keyboard is sending the "\" key instead of the DIV numpad key.
|
|
|
|
ennye Novice
Joined: 17 Dec 2007 Posts: 49
|
Posted: Fri Jul 02, 2010 1:56 am |
Ok, new beta brings lots of variable problems.
Script breaks the macro, killing echo even, my miss.
using {a|b|c|d} no longer possible?
eg. #say %item({a|b|c|d},1) |
|
|
|
Zugg MASTER
Joined: 25 Sep 2000 Posts: 23379 Location: Colorado, USA
|
Posted: Fri Jul 02, 2010 2:41 am |
The issue with %item has been added to the bug list. But in general the %item command needs a string list variable. So you can do this:
Code: |
list = {a|b|c|d}
#say %item(@list,1) |
and that will work. If you must put a verbatim string list within the %item arguments itself, then put " quotes around the list instead {}, like this:
#say %item("a|b|c|d",1)
Please read the other posts in this forum to become more familiar with changes and known issues with the current beta. You MUST READ THIS: http://forums.zuggsoft.com/forums/viewtopic.php?t=23702
if you are going to use a Beta version.
Please post one bug per post and always give a detailed procedure for how to reproduce the bug. If you are not willing to perform the tasks of a beta tester, then you should not be using the beta version. |
|
|
|
|
|