Search found 40 matches

by sinbad
06 Aug 2019, 12:27
Forum: Ask for Help (v1)
Topic: Help reading remote variable
Replies: 1
Views: 450

Re: Help reading remote variable

I'm just thinking aloud here. This might be due to blocking in the socket....

Edit: Changing blocking to False caused every test to return empty.
by sinbad
06 Aug 2019, 11:59
Forum: Ask for Help (v1)
Topic: Help reading remote variable
Replies: 1
Views: 450

Help reading remote variable

I'm trying to control a script remotely. I can do most things ok, but I'm having trouble getting the status of a variable from a running script. Here's my test setup. The server status can be in three states "READY", "BUSY" and "RELOAD" but I can't seem to get it to report when it's "BUSY". server.a...
by sinbad
06 Aug 2019, 06:30
Forum: Ask for Help
Topic: AhkThread Example for AHK v1
Replies: 1
Views: 3147

AhkThread Example for AHK v1

Hello,

I want to use AhkThread in ahk v1 but there is no documentation. Can anyone provide a working example like the v2 version here https://hotkeyit.github.io/v2/docs/commands/AhkThread.htm

Thanks!
by sinbad
17 Jul 2019, 06:48
Forum: Ask for Help (v1)
Topic: Display dynamic list of images
Replies: 1
Views: 494

Display dynamic list of images

Hi, I'm familiar with AHK but I never use the GUI elements. I'm wondering if there are some existing scripts which do something like I need. I want to pass ahk a list of lists of images and display each collection. So I guess I want to loop over a collection and display all of those images. Has anyo...
by sinbad
15 Jul 2019, 09:12
Forum: Ask for Help (v1)
Topic: RemoteObj "object type not supported"
Replies: 0
Views: 460

RemoteObj "object type not supported"

Is it possible to use RemoteObj with a sub-class like this? ObjToPublish := new Main() Server := new RemoteObj(ObjToPublish, [Bind_Addr,Bind_Port]) class Main { class Session { __New(account) { this.account := account this.url := getURL() this.chrome := chromeProfilePath(account) } } } I try calling...
by sinbad
07 Jul 2019, 15:17
Forum: Ask for Help (v1)
Topic: animated gif or video splash screen?
Replies: 4
Views: 2224

Re: animated gif or video splash screen?

I did read that, and I tried the scrip given but it only produced a blank square. I thought I'd ask again in case someone else has it working.
by sinbad
07 Jul 2019, 12:28
Forum: Ask for Help (v1)
Topic: animated gif or video splash screen?
Replies: 4
Views: 2224

animated gif or video splash screen?

Has anyone played with animated gifs recently? I'd like to make a simple splash screen for my app.
Are animated gifs still a problem for windows? And if so would it be easier to embed a video?

Thanks!
by sinbad
30 Jun 2019, 09:31
Forum: Ask for Help (v1)
Topic: Increase a value in a loop Topic is solved
Replies: 4
Views: 1843

Re: Increase a value in a loop Topic is solved

You want to increment a variable? Something like this
Image
by sinbad
30 Jun 2019, 07:33
Forum: Ask for Help (v1)
Topic: Augmented Intelligence Programming-> Get involved
Replies: 0
Views: 526

Augmented Intelligence Programming-> Get involved

Dear forum I made this little hack a couple of weeks ago, and since I've made a few tweaks, It works pretty well, even for autohotkey code. But you can help make it better. It works by wrapping howdoi, which searches stackexchange questions. So the best way you can help is by asking and answering au...
by sinbad
23 Jun 2019, 13:13
Forum: Ask for Help (v1)
Topic: Helpmecode an ai to help you code
Replies: 1
Views: 593

Helpmecode an ai to help you code

I originally made this as sort of a joke, but it really proved quite useful helping learn some Apache Groovy! So I thought I should share the link here. It's an ahk and python script so you will need python3+ in addition to ahk1.1 https://github.com/irthomasthomas/helpmecode https://github.com/irtho...
by sinbad
19 Jun 2019, 04:52
Forum: Scripts and Functions (v1)
Topic: Helpmecode: crowd-sourced programming AI
Replies: 2
Views: 1284

Re: A live coding AI to assist your programming

godofOOF wrote:
19 Jun 2019, 04:29
Could This Work For AHKCode?
Yes certainly. I just need to know it's wintitle.
by sinbad
18 Jun 2019, 18:44
Forum: Scripts and Functions (v1)
Topic: Helpmecode: crowd-sourced programming AI
Replies: 2
Views: 1284

Helpmecode: crowd-sourced programming AI

So Microsoft recently announced IntelliCode ... some AI, allegedly, to help you code. Really it's just the normal autocomplete but sorted by popularity* Well I thought I could probably write a better AI in a few lines of ahk and python, and here it is...real code block suggestions in your editor. Cr...
by sinbad
17 Feb 2019, 12:44
Forum: Ask for Help (v1)
Topic: GUI Creator error: invalid option h
Replies: 0
Views: 755

GUI Creator error: invalid option h

Hello,

Has anyone experienced this error using GUI Creator? I just downloaded it today and I'm using Win7x64 and just tried running a very simple gui and it presents this error.
by sinbad
11 Feb 2019, 10:18
Forum: Ask for Help (v1)
Topic: Python dynamic strings equivalent in ahk? Topic is solved
Replies: 1
Views: 703

Python dynamic strings equivalent in ahk? Topic is solved

Hello,

Wondering how I can do this in ahk?

Code: Select all

VALUES_URL = API_BASE_URL + '/%s/values/%s'

url = VALUES_URL % (self.id, range)
by sinbad
09 Feb 2019, 10:48
Forum: Ask for Help (v1)
Topic: Hotkeys not working
Replies: 7
Views: 1598

Re: Reload not working

I think this is the #if is the problem. If I want to rewrite this inside of a function how could I do that? I keep getting an error that this is not allowed inside functions.... #if WinActive(gui_title) ^c:: send {AppsKey}c GuiControl, 1:, AuthCode, %clpbrd% If pwb != ObjRelease(WEB) Gui, 2:destroy ...
by sinbad
09 Feb 2019, 09:18
Forum: Ask for Help (v1)
Topic: Hotkeys not working
Replies: 7
Views: 1598

Re: Reload not working

I may have spoken too soon. Having removed the SetTimer, my script still does not react to hotkeys. I tried the following and none had any affect.
^r::Reload
esc::ExitApp
F1::Reload

So I will keep looking...
by sinbad
09 Feb 2019, 09:00
Forum: Ask for Help (v1)
Topic: Hotkeys not working
Replies: 7
Views: 1598

Re: Reload not working

The culprit was in some code I borrowed from github, it has

Code: Select all

SetTimer, EnableButtonSetup, 1
This is constantly checking the content of Gui edit boxes and enabling or disabling buttons. There must be a better way to do this?
by sinbad
09 Feb 2019, 08:43
Forum: Ask for Help (v1)
Topic: Hotkeys not working
Replies: 7
Views: 1598

Re: Reload not working

Thanks @Hellbent, @gregster and @scr1pter I will work through your suggestions later today.
by sinbad
08 Feb 2019, 11:59
Forum: Ask for Help (v1)
Topic: Hotkeys not working
Replies: 7
Views: 1598

Hotkeys not working

Hello

I have a long script and at the very end I have

Code: Select all

^r::Reload
But it isn't working :facepalm:

Why can that be?
by sinbad
07 Feb 2019, 12:18
Forum: Forum Issues
Topic: fix this!!!
Replies: 66
Views: 17245

Re: fix this!!!

I am also getting this error now whichever computer I use and I have tried with a VPN and it was still the same.

Go to advanced search