Search found 64 matches

by Jonas353
08 Mar 2018, 14:20
Forum: Ask for Help (v1)
Topic: Variable = [Hey, No, Wait] Topic is solved
Replies: 4
Views: 801

Re: Variable = [Hey, No, Wait] Topic is solved

Thanks @TheDewd yours worked!
by Jonas353
08 Mar 2018, 14:01
Forum: Ask for Help (v1)
Topic: Variable = [Hey, No, Wait] Topic is solved
Replies: 4
Views: 801

Re: Variable = [Hey, No, Wait] Topic is solved

I want one control to hide this

Code: Select all

Variable := [Hey, No, Wait]

Gui, Add, Text, vHey, Lol 
Gui, Add, Text, vNo, How 
Gui, Add, Text, vWait, What
Gui, Add, Button, gButton, Button

Button:
GuiControl, Hide, %Variable%
return
by Jonas353
08 Mar 2018, 13:29
Forum: Ask for Help (v1)
Topic: Variable = [Hey, No, Wait] Topic is solved
Replies: 4
Views: 801

Variable = [Hey, No, Wait] Topic is solved

I would like to make something like this. Can't find anything similar on the forums.

Code: Select all

Variable = [Hey, No, Wait]
GuiControl, Hide, %Variable%
by Jonas353
17 Feb 2018, 15:00
Forum: Ask for Help (v1)
Topic: Send to github and Hotkey help
Replies: 3
Views: 686

Re: Send to github and Hotkey help

I can't seem to find anything with git commit?

Can you maybe give an example?
by Jonas353
17 Feb 2018, 10:44
Forum: Ask for Help (v1)
Topic: File transfer
Replies: 2
Views: 547

Re: File transfer

Commercial haha :D

I would like to make a script that runs in the background. It should be able to upload a file and type a email into the website.
by Jonas353
17 Feb 2018, 09:20
Forum: Ask for Help (v1)
Topic: File transfer
Replies: 2
Views: 547

File transfer

I have a laptop that i have some files on and i want it to upload the files to https://www.fileconvoy.com/ then send an email to me with the download link.

It could be very useful if it actually ran in the background so when i ran it on my laptop at my school it wouldn't distract me.
by Jonas353
17 Feb 2018, 07:32
Forum: Ask for Help (v1)
Topic: Disable dropdown list when checkbox isn't checked
Replies: 9
Views: 1850

Re: Disable dropdown list when checkbox isn't checked

I'm sorry it didn't work. Try this instead: ; Disable Fading Effect On Guis DllCall("SystemParametersInfo","UInt",0x1043,"UInt",0,"UInt",0) Progress, 100, Loading, Please Wait... Progress, Off DllCall("SystemParametersInfo","UInt",0x1043,"UInt",0,"UInt",1) Put it on top of your script Credit to: htt...
by Jonas353
17 Feb 2018, 06:12
Forum: Ask for Help (v1)
Topic: Disable dropdown list when checkbox isn't checked
Replies: 9
Views: 1850

Re: Disable dropdown list when checkbox isn't checked

You can press Control+Shift+F9 or use this

Code: Select all

DllCall("dwmapi\DwmEnableComposition", "uint", 1) ; DllCall For Windows Decomposition ; Off
by Jonas353
17 Feb 2018, 05:41
Forum: Ask for Help (v1)
Topic: Disable dropdown list when checkbox isn't checked
Replies: 9
Views: 1850

Re: Disable dropdown list when checkbox isn't checked

Actually use what BoBo says #singleInstance, force gui, font, s9, Segoe UI gui, add, checkbox, vConvertToSingleFormat gCheck, Convert to single format? gui, add, dropDownList, vChosenFormat, jpg|png gui, show, w300 center, Image converter Check: GuiControlGet, ConvertToSingleFormat if (ConvertToSing...
by Jonas353
17 Feb 2018, 05:35
Forum: Ask for Help (v1)
Topic: Disable dropdown list when checkbox isn't checked
Replies: 9
Views: 1850

Re: Disable dropdown list when checkbox isn't checked

Something like dis? #singleInstance, force gui, font, s9, Segoe UI gui, add, checkbox, vConvertToSingleFormat, Convert to single format? gui, add, dropDownList, vChosenFormat, jpg|png gui, show, w300 center, Image converter SetTimer, Timer, 0 Timer: GuiControlGet, ConvertToSingleFormat if (ConvertTo...
by Jonas353
17 Feb 2018, 03:49
Forum: Ask for Help (v1)
Topic: Send to github and Hotkey help
Replies: 3
Views: 686

Send to github and Hotkey help

I need help to 2 things. 1. is it possible to make a autohotkey script that logs into github and uploads a txt file or a script? 2. Is there a easy way to have 2 hotkeys? Something like this.

Code: Select all

~0:: send, goodbye
~0:: send, Hey
by Jonas353
15 Feb 2018, 09:02
Forum: Ask for Help (v1)
Topic: If Window = another window
Replies: 14
Views: 1769

Re: If Window = another window

It's not made to steal passwords i just made it to see how much i was typing everyday.
But it still doesn't show Time or winactive
by Jonas353
15 Feb 2018, 08:13
Forum: Ask for Help (v1)
Topic: If Window = another window
Replies: 14
Views: 1769

Re: If Window = another window

Okay! So know it simply doesn't show the time or winactive in lol.txt. #SingleInstance Force #NoTrayIcon lastWindow := 0 SendMode, Input ~a:: FormatTime, time, h:m:s tt WinGetTitle, Title, A thisWindow := WinActive() str := "" if (thisWindow != lastWindow) { str := Title " " time "`n" fileappend, %s...
by Jonas353
15 Feb 2018, 07:50
Forum: Ask for Help (v1)
Topic: If Window = another window
Replies: 14
Views: 1769

Re: If Window = another window

Oh wow i'll change that.
Thanks
by Jonas353
15 Feb 2018, 07:36
Forum: Ask for Help (v1)
Topic: If Window = another window
Replies: 14
Views: 1769

Re: If Window = another window

Like this right? Because it still doesn't seem to work? #SingleInstance Force #NoTrayIcon lastWindow := 0 SendMode, Input FormatTime, time, h:m:s tt WinGetTitle, Title, A ~a:: thisWindow := WinActive() if (thisWindow != lastWindow) { fileappend, `na`n, %A_ScriptDir%\folder\lol.txt lastWindow := this...
by Jonas353
15 Feb 2018, 07:32
Forum: Ask for Help (v1)
Topic: If Window = another window
Replies: 14
Views: 1769

Re: If Window = another window

Oh thanks now i feel dumb :D
I'll try it now
by Jonas353
15 Feb 2018, 07:09
Forum: Ask for Help (v1)
Topic: If Window = another window
Replies: 14
Views: 1769

Re: If Window = another window

This doesn't seem to work when i put msgbox inside it tells me that thiswindow = 0x0? #SingleInstance Force #NoTrayIcon lastWindow := 0 SendMode, Input FormatTime, time, h:m:s tt WinGetTitle, Title, A thisWindow := WinActive() ~a:: if (thisWindow != lastWindow) { fileappend, `na`n, %A_ScriptDir%\fol...
by Jonas353
15 Feb 2018, 06:49
Forum: Ask for Help (v1)
Topic: If Window = another window
Replies: 14
Views: 1769

Re: If Window = another window

I will try that
by Jonas353
15 Feb 2018, 05:59
Forum: Ask for Help (v1)
Topic: If Window = another window
Replies: 14
Views: 1769

If Window = another window

Is it possible to make a program that checks if the same window is active when it checked last time? And if its the same window then just FileAppend which key is pressed? Something like this If %Window% = %Not same Window% ~b::fileappend, %Title% %time% b, %A_ScriptDir%\folder\lol.txt if %Window% = ...
by Jonas353
03 Jan 2018, 00:56
Forum: Gaming Help (v1)
Topic: Variable help!
Replies: 1
Views: 550

Variable help!

So whenever i Press f4 and close the gui then open it again it says "The same variable cannot be used for more than one control" #SingleInstance Force SendMode Input #IfWinActive, Minecraft random = 0 SetTimer, Timer, 1000 MsgBox, Press F4 to edit or press F6 to run it IniRead, high, %A_ScriptDir%\S...

Go to advanced search