Help: Using AutoHotKey with Skype

Post a reply


In an effort to prevent automatic submissions, we require that you complete the following challenge.
Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :| :mrgreen: :geek: :ugeek: :arrow: :angel: :clap: :crazy: :eh: :lolno: :problem: :shh: :shifty: :sick: :silent: :think: :thumbup: :thumbdown: :salute: :wave: :wtf: :yawn: :facepalm: :bravo: :dance: :beard: :morebeard: :xmas: :HeHe: :trollface: :cookie: :rainbow: :monkeysee: :monkeysay: :happybday: :headwall: :offtopic: :superhappy: :terms: :beer:
View more smilies

BBCode is ON
[img] is OFF
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Help: Using AutoHotKey with Skype

Re: Help: Using AutoHotKey with Skype

Post by Kobaltauge » 16 Oct 2019, 08:10

Ich habe mir vor langem mal das automatische wählen von Telefonnummern in Skype gebastelt. Das ist Grundgerüst für dich um zumindest die Meetings aufzurufen.
Deine Anforderungen sind nicht ohne. Es wäre besser du hättest ein Grundprogramm und das Forum hilft dir bei Problemen.

Code: Select all

;Telefonummer wählen
^+t::
clipboard = ; Empty the clipboard
send, ^c
ClipWait, 1 ;wait until something is on the clipboard
send ^!+3
if WinActive("ahk_class CommunicatorMainWindowClass")
{
	send ^4
	SendRaw %Clipboard%
	sleep, 100
	send {Return}
	sleep, 100
	send {Return}
}
return

Help: Using AutoHotKey with Skype

Post by lesophi » 16 Oct 2019, 04:24

I need some help for using the HotKey for Skype.
It have to open the actually Meeting from Outlook in Sype atomaticly.
Furthermore I have to choose the right microphone and have to share the screen.

All this have to work with only one key combination.
Can you help me with this. I have no idea how it works.
Thank you.

----------------------------------------------------------------------------------------------------------------------

Ich brauche Hilfe um HotKeys in Skype zu verwenden.
Es muss sich automatisch der aktuelle Termin aus Outlook in Skype öffnen.
Außerdem muss das richtige Mikrophone ausgewählt werden und der Bildschirm geteilt werden.

All das soll mit einer einzigen Tastenkombination funktionieren.
Können Sie mir bitte damit helfen? Ich habe keine Idee wie es funktioniert.
Dankeschön.

Top