| View previous topic :: View next topic |
| Author |
Message |
kOt Contributor

Joined: 19 Jan 2004 Posts: 89 Location: Fyffe, AL
|
Posted: Mon Jan 19, 2004 10:01 am Post subject: ALT key problem |
|
|
Im can't figure out how to get the that ALT key to stay down. lol
I want to beable to send other keys while the ALT key is held down, but i can't figure it out.
ive used this way and it still doesn't work
by the way that is • (you know the ALT+#### commands)
Any way of doing it? _________________ Visual Dialogscript 5 |
|
| Back to top |
|
 |
Vic D'Elfant Past Contributor


Joined: 26 Jun 2002 Posts: 673 Location: The Netherlands
|
Posted: Mon Jan 19, 2004 11:00 am Post subject: |
|
|
I had the same problem to... This is because the @alt function holds down the LEFT alt key, and for those ASCII codes the right alt has to be hold down.
You could use some dll to send the ASCII key... there are many dll's that can achive this. I thought there was a dll called 'keyboard' or something like that...
Regards,
Vic _________________ phpBB Development Team |
|
| Back to top |
|
 |
kOt Contributor

Joined: 19 Jan 2004 Posts: 89 Location: Fyffe, AL
|
Posted: Mon Jan 19, 2004 12:16 pm Post subject: Thank you |
|
|
Thank you, will will try to find that dll _________________ Visual Dialogscript 5 |
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Mon Jan 19, 2004 6:07 pm Post subject: |
|
|
You can also use the keybd_event API, there's a few examples around
here that illustrate it; you can find them by doing a search. _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
Tommy Admin Team
Joined: 16 Nov 2002 Posts: 746 Location: The Netherlands
|
Posted: Mon Jan 19, 2004 6:55 pm Post subject: |
|
|
I'm not sure if it will work, but it's worth it to try the following:
@ALT(@CHR(149)) |
|
| Back to top |
|
 |
kOt Contributor

Joined: 19 Jan 2004 Posts: 89 Location: Fyffe, AL
|
Posted: Mon Jan 19, 2004 7:34 pm Post subject: |
|
|
| Tommy wrote: |
@ALT(@CHR(149)) |
This actually works somewhat it added **•** but where the *'s are are extra charactors i dont need i just need the •
so i quess this way can work with @strdel()
| Code: |
info @strdel(@strdel(@alt(@chr(164)),1,2),2,3)
|
_________________ Visual Dialogscript 5
Last edited by kOt on Mon Jan 19, 2004 7:38 pm; edited 1 time in total |
|
| Back to top |
|
 |
SnarlingSheep Professional Member


Joined: 13 Mar 2001 Posts: 759 Location: Michigan
|
Posted: Mon Jan 19, 2004 7:36 pm Post subject: |
|
|
Why not just send @CHR(149)? Looks to me like that's all you are wanting to send. _________________ -Sheep
My pockets hurt... |
|
| Back to top |
|
 |
kOt Contributor

Joined: 19 Jan 2004 Posts: 89 Location: Fyffe, AL
|
Posted: Mon Jan 19, 2004 7:41 pm Post subject: That is true |
|
|
Thats true, and yes im a newbie. _________________ Visual Dialogscript 5 |
|
| Back to top |
|
 |
|