Search found 43 matches

by kwstas13
05 Jul 2016, 09:00
Forum: Off-topic Discussion
Topic: Thank you for the music
Replies: 305
Views: 223679

Re: Thank you for the music



I heard it from unboxing video :)
by kwstas13
01 Jul 2016, 06:55
Forum: Wish List
Topic: Another open source license
Replies: 21
Views: 7075

Re: Another open source license

We have a battle here I prefer calling it the battle of two laws The First law according to gpl website : If a programming language interpreter is released under the GPL, does that mean programs written to be interpreted by it must be under GPL-compatible licenses? (#IfInterpreterIsGPL) When the int...
by kwstas13
27 May 2016, 02:02
Forum: Ask for Help (v1)
Topic: HELP with autohotkey-obfuscator-master
Replies: 12
Views: 4549

Re: HELP with autohotkey-obfuscator-master

so by using MPRESS, one wont be able to un-compile an ahk script. am i right ? and if this is the matter, could you please guide me its procedure, as i use "Compile_AHK v0.9.1.3". Thanks again for your kind help. You mean decompile. Well even using mpress I can get your code in several minutes. So ...
by kwstas13
23 May 2016, 09:24
Forum: Ask for Help (v1)
Topic: how to slow down the hotstrinngs with a global command ?
Replies: 4
Views: 1483

Re: how to slow down the hotstrinngs with a global command ?

Hi all I am intensively using hotstrings for correcting mispelled words , replace abbreviations etc. I would like to record my screen a few minutes and send that film to a few colleagues in order to show them how useful hotstrings are. To make it more "visual", I would like the hotstrings to work i...
by kwstas13
17 May 2016, 12:02
Forum: Forum Issues
Topic: I always have to login twice
Replies: 5
Views: 3090

Re: I always have to login twice

happens to me too....but I don't really care
I'm using Microsoft edge as browser to login
by kwstas13
13 May 2016, 13:40
Forum: Gaming Help (v1)
Topic: Running a script on a browser in the 'background'
Replies: 6
Views: 2427

Re: Running a script on a browser in the 'background'

SetTitleMatchMode, 2 WinGet, pid, PID, HoloRP SetTimer, F3, 40000 return F3: IfWinNotExist, %pid% return postmsg("...", pid) return postmsg(text, pid) { Loop, Parse, text { char:= A_LoopField char_number := asc(char) char_hex := char_number ; Convert a decimal integer to hexadecimal: SetFormat, Int...
by kwstas13
11 May 2016, 17:48
Forum: Ask for Help (v1)
Topic: Sending to text field in Firefox
Replies: 17
Views: 4086

Re: Sending to text field in Firefox

@guest, Absolutely not a silly question as I know nothing about coding, but sure do know a thing or two about making silly mistakes. I'm typing @@ in the text field (let's say Gmail's login field for example) if that's what you mean by focus, then spacing, tabbing, spacing-back spacing etc in attem...
by kwstas13
11 May 2016, 16:51
Forum: Ask for Help (v1)
Topic: [Need Help]
Replies: 3
Views: 1206

Re: [Need Help]

What do you mean exactly? Hide the process? Or hide the tray icon? Or hide the gui maybe?
by kwstas13
11 May 2016, 16:22
Forum: Ask for Help (v1)
Topic: Sending to text field in Firefox
Replies: 17
Views: 4086

Re: Sending to text field in Firefox

#IfWinActive ahk_class MozillaWindowClass ::@@:: send example@hotmail.com #IfWinActive otherwise try this #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new sc...
by kwstas13
10 May 2016, 18:37
Forum: Ask for Help (v1)
Topic: NumPad x2
Replies: 9
Views: 2667

Re: NumPad x2

Numpad2:= 0 $Numpad2:: if ((A_TickCount - Numpad2) <= 250) Send 2,{enter} Sleep 200 Send 18,{enter} else Send 2 Numpad2:= A_TickCount Return Error: Else with no matching IF Numpad2:= 0 $Numpad2:: if ((A_TickCount - Numpad2) <= 250) { Send 2,{enter} Sleep 200 Send 18,{enter} } else { Send 2 } Numpad...
by kwstas13
10 May 2016, 18:10
Forum: Ask for Help (v1)
Topic: NumPad x2
Replies: 9
Views: 2667

Re: NumPad x2

Code: Select all

Numpad2:= 0

$Numpad2::
if ((A_TickCount - Numpad2) <= 250)
	Send 2,{enter}
Sleep 200
Send 18,{enter}
else
	Send 2
Numpad2:= A_TickCount
Return 
You can try this code has not been tested
by kwstas13
10 May 2016, 17:19
Forum: Ask for Help (v1)
Topic: Sending to text field in Firefox
Replies: 17
Views: 4086

Re: Sending to text field in Firefox

In text field pressing @@ gives @@. A following space, space then backspace, tab... it still remains @@. There are only 4-5 other abbreviations ATM in the script, all look like ::ABC::ABCDEF Other abbreviations work for Firefox? At the moment I'm replying to you using my smartphone and I cannot tes...
by kwstas13
10 May 2016, 16:30
Forum: Ask for Help (v1)
Topic: Sending to text field in Firefox
Replies: 17
Views: 4086

Re: Sending to text field in Firefox

OK, now works in notepad, still not in a text field though. Win 8.1; Running script as admin produces same results. I've installed a newer Firefox version (now 30)- but same. So when you press @@ what happens ? Maybe some line of your code cause this problem. I had same problem back in time with Fi...
by kwstas13
10 May 2016, 16:26
Forum: Off-topic Discussion
Topic: How many hours are you programming and what age you started?
Replies: 5
Views: 2561

Re: How many hours are you programming and what age you started?

Re edited thanks. I agree with you. So you started at 15 nice. I did start at 17
by kwstas13
10 May 2016, 15:34
Forum: Ask for Help (v1)
Topic: Sending to text field in Firefox
Replies: 17
Views: 4086

Re: Sending to text field in Firefox

Not working, and in notepad i get: send example@email.com use this ::@@:: send,example@email.com Not this ::@@::send,example@email.com this (send,example@email.com) must be under of the line ::@@:: also you can give more info about what version of windows you use and how your script look like try r...
by kwstas13
10 May 2016, 15:09
Forum: Ask for Help (v1)
Topic: Sending to text field in Firefox
Replies: 17
Views: 4086

Re: Sending to text field in Firefox

strange this work for me in firefox.You can try this

Code: Select all

::@@::
send,[email protected]
by kwstas13
10 May 2016, 12:33
Forum: Off-topic Discussion
Topic: How many hours are you programming and what age you started?
Replies: 5
Views: 2561

How many hours are you programming and what age you started?

How many hours per day you programming and at what age you started?
In general how much time a programmer need to become actually good and at what age ?What's your opinion?
How much time did it take you to learn a language in that level so you can use it daily ?
by kwstas13
30 Apr 2016, 00:57
Forum: Off-topic Discussion
Topic: Thank you for the music
Replies: 305
Views: 223679

Re: Thank you for the music


Go to advanced search