Visuelle Einstellung

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: Visuelle Einstellung

Post by Jann » 02 Dec 2018, 16:18

Vielen viel Dank Just me^^
Hast mir wirklich sehr geholfen!

Re: Visuelle Einstellung

Post by just me » 02 Dec 2018, 10:59

Moin,

Du hast anscheinend die Überschriftenzeile der Codebox mit kopiert. Der für Dich bestimmte Teil beginnt bei:

Code: Select all

Speed = 25 ;Anfangswert

Re: Visuelle Einstellung

Post by Jann » 02 Dec 2018, 09:28

Ich habe es versucht, allerdings wird mir ein Fehler in der ersten Zeile angezeigt:

http://prntscr.com/lpoxi2

Auf den Error hin habe ich das selbe nochmal ohne Zeile Probiert. Allerdings funktionierte dann das Gui nicht :crazy:

Re: Visuelle Einstellung

Post by Rohwedder » 01 Dec 2018, 05:20

Hallo,
versuchs mal damit:

Code: Select all

Speed = 25 ;Anfangswert
Gui, Add, Text, x22 y19 w100 h40 +Center, Lower the Number increases the clicking speed (ms)
Gui, Add, Edit, vSpeed x22 y69 w100 h20, %Speed%
Gui, Show, w142 h107, Setting GUI
Return
GuiClose:
Gui, Submit
return
~F10::
toggle:=!toggle
return
~lbutton::
while toggle And GetKeyState("lbutton","P")
{
	click
	sleep, Speed
}
return

Visuelle Einstellung

Post by Jann » 30 Nov 2018, 20:44

Hey Leute,
Ich habe mir hier ein simples Script und ein simples GUI zusammen gebastelt.
Leider kriege ich es selber nicht hin beides zu vereinen, so dass ich den clicking speed einstellen kann. Sicher kann mir einer weiterhelfen :D

Mein Script sieht wie folgt aus:

~F10::

{
toggle:=!toggle
}
return

~lbutton::
{
if toggle
{
while, GetKeyState("lbutton","P")
{
click
sleep, 25
}
}
}

return

Mein GUI so:

Gui, Add, Text, x22 y19 w100 h40 +Center, Lower the Number increases the clicking speed (ms)
Gui, Add, Edit, x22 y69 w100 h20 , 25
Gui, Show, w142 h107, Setting GUI
return

Top