topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Wednesday April 17, 2024, 11:03 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - AlainCh [ switch to compact view ]

Pages: [1]
1
Finished Programs / Re: DONE: Push2Talk
« on: November 07, 2006, 12:47 AM »
hahahah!!!!


Yes true !!

Anyway ..... my laptop has only ONE port for the mouse !
NO kb port :-))

I will find an easy key .. on top

AlainCh ( of my lap TOP !!!

 ;D :D ;D :D ;D :D ;D  :D ;D  :Thmbsup:

2
Finished Programs / Re: DONE: Push2Talk
« on: November 06, 2006, 09:09 AM »
Ok thanks

NO idea whatsover it's happening on my PC ..
While the original one work fine ..
 no way I can make any other key working :-((

I tried as well to change only the Key name into the original script..
 and it start to do the flip flop :-(((

I suppose the "#" before the label means the Win key so I don't use it,
only the shear Keyname "NumpadIns" without the bracket.

Well, going out to work .. will be back in 15 hours
It's now 4pm here :-)) and I work the nite shift :-)
Will be home around 7PM local time :-)

Is there may be a problem with the Keyboard??

I'm not using the Laptop KB, but a normal KB on an MultiPort USB converter
It's a USB docking hub >> in: 3 usb + serial +parallel +mouse +kb +LAN


_________ GOTCHA !!!!!___________

As I was writing, the doubt started to rise .......

NOT having the F12 nor the NPins key on the Laptop KB I tried the  " ì " key
and ...
 LO!!!
It worked fine on the laptop KB but started to flip flop as soon I used the Normal KB !!!!

The reason of the behavior is the converter/usb docking .. I suppose its not able to send a continuous string to the PC.
 That explain as well why I mistype so much .. loosing some letters while I type too fast. Finally .... I will be a better typer!!

 Many thx for Your support..
Now I know that it will work with the right key(board)!!

I'm really a fast typer with only

Alainch ( 2 fingers

3
Finished Programs / Re: DONE: Push2Talk
« on: November 05, 2006, 11:44 PM »
OK this is my last debug script
 I cant get an hang on ..
 WHY !
on my PC each script loop have a random KEY value!
Sometime it's U sometime is D.

 Please, can you check if the results are the same on your pc??
The value is displayed in the messg box.

 Running the script: please keep the NumPadIns pressed and with the mouse click OK on the messgBox
The script will circle under it and the tooltips will show you where the logical path leeds.

 that goes under "the  wall banging

AlainCh ( head"

4
Finished Programs / Re: DONE: Push2Talk
« on: November 05, 2006, 04:09 PM »
Well thx !!

 I know AHK  Its fun ( I will use to remap some Keys :-))
 BUT
 the script results seems to be different from jgpaiva PC then from Mine

Just wondering ...

 AlainCh ( WHY !!!
 

5
Finished Programs / Re: DONE: Push2Talk
« on: November 05, 2006, 04:00 PM »
Seems that on my PC the status is not continuus
for me the mic is going up and down every cycle ....

 NO Idea why

(Home XP on a Fujiitsu laptop)

IF you check the value of the NPins is flipflopping ..
 Keep pressed the NPins and with the mouse say Ok to the MessageBox --- tell me what you see
 Please

AlainCh (

6
Finished Programs / Re: DONE: Push2Talk
« on: November 05, 2006, 03:38 PM »
It seems to pass (also) by the Else ...

SO:
 I rem'd the Break and now its pure flipflop
(looping every time I keep pressed the NumPadIns)
 just see the LoopCount exposed by the tooltip

Thanks for your time

AlainCh (

7
Finished Programs / Re: DONE: Push2Talk
« on: November 05, 2006, 03:28 PM »
try this with the volume control open
and look the mic cursor

AlainCh (please

8
Finished Programs / Re: DONE: Push2Talk
« on: November 05, 2006, 03:23 PM »
OK .. THX

but it still do the flip flop
 Strange behaviour :-((
 

I tried the three sample I put in the post .. no way !!

Hard..
AlainCh ( ...NUT

PS ::  Please give a try to the attached NUMPADins

9
Finished Programs / Re: DONE: Push2Talk
« on: November 05, 2006, 08:51 AM »
OK thx

 That was it !!!

BUT
 while now the F12 is felt :
with the NOT .. as you suggested
      the Mic doesn't stay up but go up and down when I keep pressing
without the NOT
    it  goes up once when I  hit it and nothing more even If I keep pressing


I tried to make interval longer but it's just slowing down the flip flop

Yes, I programmed  some ..
AlainCh (25 years ago

These are some tests ..
then I changed key and debugged
. no value for the key seems to come inside but only once

_____________________________ Got Flip Flop

F12::
SoundGet,micvol,Microphone:2,Volume
ToolTip,Mic is On
SoundSet,100,Microphone:2,Volume
Loop
{
  Sleep,100
  If not GetKeyState(F12,P)

    Break
}
ToolTip,Mic is Off
SoundSet,0,Microphone:2,Volume
Sleep,2000
ToolTip,
Return
___________- Tried this one from the Original script (Same Result flip flop)

F12::

SoundGet,micvol,Microphone:2,Volume
ToolTip,Mic is On
SoundSet,100,Microphone:2,Volume
Loop
{
  Sleep,100
  GetKeyState,states,F12,P
;  GetKeyState,state,S,P
;  states=%states%%state%
  IfInString,states,U
    Break
}
ToolTip,Mic is Off
SoundSet,0,Microphone:2,Volume
Sleep,2000
ToolTip,
Return
_______________ THis IS debug
As you'll see, The GetKeyState function
is not getting any value for the key :-((
_______________
NumpadIns::
Loop
{
PINS := GetKeyState(NumpadIns,P)
; MsgBox % "-"  PINS  "-"
sleep,100
  If  % PINS
   {
   ToolTip,Mic is On      
   SoundSet,100,Microphone:2,Volume
     Sleep,1000
;   Tooltip,
   }
   Else
   {
   ToolTip,Mic is Off
   SoundSet,0,Microphone:2,Volume
   Sleep,200
;   ToolTip,
   }
    Break
}
Count+= 1
ToolTip, " Loop> " %count%
Return

10
Finished Programs / Re: DONE: Push2Talk
« on: November 05, 2006, 04:53 AM »
I edited the previous post to your answer check it please ..

11
Finished Programs / Re: DONE: Push2Talk
« on: November 05, 2006, 04:52 AM »
NO, sorry

Your version was NOT  working ..
 while the Win+s worked the same

I tried to change the Key ... same result

 Strange isn't it ??
 I checked why that a such strange behavior...
 what would have caused it  ..


Discovered nothing

AlainCh ( lost
 no way

12
Finished Programs / Re: DONE: Push2Talk
« on: November 05, 2006, 04:33 AM »
I'm trying to get the right of it ..
But while I changed the keys ..
I cant get MY key working .. BUT
(that's strange)
 the WIN+S still work !!


 LOOK :
_________ 2nd version _______
#s::
SoundGet,micvol,Microphone:2,Volume
ToolTip,Mic is On
SoundSet,100,Microphone:2,Volume
Loop
{
  Sleep,100
  If GetKeyState(F12,P)

    Break
}
ToolTip,Mic is Off
SoundSet,0,Microphone:2,Volume
Sleep,200
ToolTip,
Return


_______________

I tried the original putting into it the F12 ..
 nothing ....
 now I tried this one ..  Win+s is not felt anymore :-)
 nor the F12

 Thx for your
 AlainCh ( HELP !

13
Finished Programs / Re: DONE: Push2Talk
« on: November 03, 2006, 07:54 PM »
Well THX thats better then before ...
 BUt please can you make a SINGLE key ???
 may be the BlockNUm or the PAUSE whatever its convenient to you


MANY THX !!!! ...

________________

Tried it ... seems not to work.
 BTW I looked at the script ... may be I can m0pdify it myself..
 how do you compile that ??

Where can I find any reference to that language ??

 Once upon a time I was ..

 AlainCh ( a programmer

14
Finished Programs / Re: DONE: Push2Talk
« on: November 03, 2006, 01:11 PM »
UP

 and thx !!

Even if ...

AlainCh ( It's not already DONE

 :D

15
OOOOHHHH   !!!!


 thats great !
 Many thx

I'm waiting to hear more :-))

16
Finished Programs / REQ: Pushtotalk alternative on off method .. ??
« on: October 30, 2006, 08:39 AM »
THx for the prog ..
But.
I use a softphone for VOIP so My mic is always on and sometime react badly on the surroundings sounds :-))

I tried to use PushToTalk but its not easy doing .
 My keyboards have NOT the Win key ( I hate the WIN key)
If it was there, it is not anymore !! :-)))) I tore it away.

Well now ... How can I open / close the mic??

The tray Icon is just so so ..
I'm  used to the auto hide feature for the taskbar (vertical left)

A button that appears when I need to talk on the phone would be great.

I can press it with the mouse ..
or alternatively use any KB button I can assign to do the job
... instead of using the fixed Win+s 

I mean (till the said button is visible)
I can assign the CTRL key to do the activation (or any other SINGLE key),
when the mic is not needed anymore the key will return to its normal job.

In this case the key can act as a LIVE button (active when pressed)
or as a toggle button (press once activate the Mic, press again  disactive the Mic)
This way it should fit any way a user need to use the microphone.

Many thanks !!
 best regards

 AlainCh ( 

Pages: [1]