RE: lingo-l HELP with BUDDY API anyone?

2002-05-14 Thread Carlos Lorenz
Hi Mark, Thanks for your help but nothing seems to work I believe multiply key, sent as you mentioned baSendKeys({vk_Multiply}) baSendKeys({106}) somehow is not beeing recognized by the apllication i´m trying to access Thanks anyway Carlos -- ___

Re: lingo-l HELP with BUDDY API anyone?

2002-05-14 Thread Charlie Fiskeaux II
Subject: RE: lingo-l HELP with BUDDY API anyone? Hi Mark, Thanks for your help but nothing seems to work I believe multiply key, sent as you mentioned baSendKeys({vk_Multiply}) baSendKeys({106}) somehow is not beeing recognized by the apllication i´m trying to access Thanks anyway Carlos

Re: lingo-l HELP with BUDDY API anyone?

2002-05-14 Thread Carlos Lorenz
Hi Charlie, What I am trying to achieve is to control TV TUNER card from inside a Director Movie. The TV Tuner has some hot keys that I may press using BUDDY API. Some of them work fine (such as channel up or down, volume) but one of the most important that is MUTE accessed by MULTIPLY

RE: lingo-l HELP with BUDDY API anyone?

2002-05-13 Thread Kerry Thompson
Hi, Can´t send MULTIPLY Key (num pad) to an application using buddy´s method baSendKeys(). Any help is welcome On Windows, the * has a value of 42 (decimal), and a key code of 66. The keypad sends the ASCII 42 character. Have you tried baSendKeys ( * ) ? You might also try baSendKeys (~8)

RE: lingo-l HELP with BUDDY API anyone?

2002-05-13 Thread Carlos Lorenz
Kerry, I´ve already tried to send * and ~8 but nothing happened. It seems the app only works with the real code of multiply key I mean whenever I press it from num pad it works. Do you believe keys in Num Pad may have special codes that BUDDY can´t send? Carlos --

lingo-l HELP with BUDDY API anyone?

2002-05-13 Thread Carlos Lorenz
Hi, Can´t send MULTIPLY Key (num pad) to an application using buddy´s method baSendKeys(). Any help is welcome Carlos -- ___ Sign-up for your own FREE Personalized E-mail at Mail.com http://www.mail.com/?sr=signup [To remove yourself from this list,

RE: lingo-l HELP with BUDDY API anyone?

2002-05-13 Thread Kerry Thompson
It seems the app only works with the real code of multiply key I mean whenever I press it from num pad it works. Do you believe keys in Num Pad may have special codes that BUDDY can´t send? Quite possible. Mac or PC? On Windows, the key and the keycode are the same for the * on the num

RE: lingo-l HELP with BUDDY API anyone?

2002-05-13 Thread Carlos Lorenz
(as GUI manual explains) i have no success :( - Original Message - From: Kerry Thompson [EMAIL PROTECTED] Date: Mon, 13 May 2002 13:52:00 -0700 To: [EMAIL PROTECTED] Subject: RE: lingo-l HELP with BUDDY API anyone? It seems the app only works with the real code of multiply key I mean

RE: lingo-l HELP with BUDDY API anyone?

2002-05-13 Thread Kerry Thompson
Alright that´s the idea: I have this TV Tuner that accepts keyboard shortcuts to manage controls at GUI. So I may issue a baSendKeys(3) and it´s the same as user have pressed key pad 3 to tune channel 3. This works fine but when it´s time to turn audio ON/OFF using MULTIPLY KEY in num pad

RE: lingo-l HELP with BUDDY API anyone?

2002-05-13 Thread Mark A. Boyd
At 14:11 13/05/2002, Carlos Lorenz wrote: Alright that´s the idea: I have this TV Tuner that accepts keyboard shortcuts to manage controls at GUI. So I may issue a baSendKeys(3) and it´s the same as user have pressed key pad 3 to tune channel 3. This works fine but when it´s time to turn audio

RE: lingo-l HELP with BUDDY API anyone?

2002-05-13 Thread Carlos Lorenz
Kerry, the difference between the * on the numeric keypad and the shift-8 *. I guess you´re right these keys really have different codes in Windows and that´s what´s going on: the application distinguishes both keys. If I could only find a way of sending these codes with buddy api... I know