Search found 42 matches

by jonathan scott james
04 May 2018, 00:50
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4894
Views: 1396172

Re: « What's on your mind? » Topic is solved

what forum would DllCall("Polygon", "uint", hdc, "uint",what goes here with 4 points to make 2 lines and can i use a hex number and how many hex digits per point?, int,4?) i saw this line in someone's extensive script: DllCall("Polygon", "uint", hdcMem, "uint", &ptShip, "int", 5) was preceded by thi...
by jonathan scott james
03 May 2018, 11:49
Forum: Ask for Help (v1)
Topic: How to Detect When a Window is Resized
Replies: 7
Views: 5318

Re: How to Detect When a Window is Resized

is the "GuiSize:" label is used anywhere in your script then any time a gui is created or changer size, it will be invoked. you can execute any script command you like then "return" normally just like a timer or hotkey GuiSize: soundbeep, 10000,1 ;tie a bell around it's neck so you know it's worklin...
by jonathan scott james
03 May 2018, 01:02
Forum: Ask for Help (v1)
Topic: A_args and subroutines Topic is solved
Replies: 8
Views: 6018

Re: A_args and subroutines Topic is solved

why is this script non functional ? both error : : ==> Call to nonexistent function.

Code: Select all

if instr(a_args(a),/params    )
framecycle:=substr (a_arg(1),instr(a_args(a),/params    )+7)
specifically

Code: Select all

a:=1
if instr (A_Args(a),zoom)
framecycle:=substr (a_arg(a),instr(a_args(a),/zoom      )+5)
by jonathan scott james
24 Apr 2018, 19:26
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4894
Views: 1396172

Re: « What's on your mind? » Topic is solved

this does what i think it should. but i cant use it in this form i need help using "scrollwindow" how do i use rthis without calling it from an onmessage ox115 ;OnMessage(0x115,DllCall("ScrollWindow",uint,WinExist(),int,-1,int,-1,uint,0,uint,0)) ; WM_HSCROLL Gui, +Resize +0x300000 ; WS_VSCROLL | WS_...
by jonathan scott james
24 Apr 2018, 12:05
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4894
Views: 1396172

Re: « What's on your mind? » Topic is solved

ScrollDC and ScrollWindowEx of user32.dll cqant make them work and controlmove is too slow: Gui,1: +LastFound +AlwaysOnTop Gui,1: Add, Text,h150 w400 x0 y0 vCtrlScope,ASDFASDFASDF Gui,1: Add, Edit,,ASDFASDFASDF Gui,1: Show,H300 W200,F1=help (Toggle) starter: y:=1 looper1: y:=y-1 ControlMove, , y if ...
by jonathan scott james
24 Apr 2018, 11:18
Forum: Ask for Help
Topic: Why does "ScrollWindow" produce a blank area?
Replies: 9
Views: 4529

Re: Why does "ScrollWindow" produce a blank area?

that code your posting does not work on my ahk it says:
(1) : ==> Call to nonexistent function.
Specifically: GuiCreate()
by jonathan scott james
24 Apr 2018, 10:52
Forum: Ask for Help
Topic: Why does "ScrollWindow" produce a blank area?
Replies: 9
Views: 4529

Re: Why does "ScrollWindow" produce a blank area?

here's the natural ahk way of doing it. but it's too slow #Persistent Gui,1: +LastFound +AlwaysOnTop Gui,1: Add, Text,h150 w400 vCtrlScope,ASDFASDFASDF Gui,1: Add, Edit ,,ASDFASDFASDF Gui,1: Show,H300 W1020,F1=help (Toggle) Gui,1: +Resize GuiHwnd := WinExist() hDC := DllCall("GetDC", UInt, GuiHwnd) ...
by jonathan scott james
19 Apr 2018, 10:43
Forum: Scripts and Functions (v1)
Topic: GDI+ standard library 1.45 by tic
Replies: 438
Views: 247969

Re: GDI+ standard library 1.45 by tic

interesdting how you can assign the pen outside of the loop , but you stil need to DllCall("SelectObject", UInt,hdc, UInt,hCurrPen2) and releace. is there a way to alocate more stack? void or something? i can't find the x on my posts .. to delete them... should i just edit them and delete the conten...
by jonathan scott james
19 Apr 2018, 07:24
Forum: Scripts and Functions (v1)
Topic: GDI+ standard library 1.45 by tic
Replies: 438
Views: 247969

Re: GDI+ standard library 1.45 by tic

this actually works .. i discovered you can only name your gui 1: or just leave it blank, or you cant exit app without back clicking the t ray and selecting exit,,, also, you have to rel;eace pen or whoa,, it writes all over the titlebars and makes artifacts all over every window in the desktop and ...
by jonathan scott james
19 Apr 2018, 02:51
Forum: Scripts and Functions (v1)
Topic: GDI+ standard library 1.45 by tic
Replies: 438
Views: 247969

Re: GDI+ standard library 1.45 by tic

i copied gdi.ahk into the directory.. where do i get gdi+ it says can't start gdi+ #SingleInstance, Force #NoEnv SetBatchLines, -1 ; Uncomment if Gdip.ahk is not in your standard library #Include, Gdip.ahk Start gdi+ If !pToken := Gdip_Startup() { MsgBox, 48, gdiplus error!, Gdiplus failed to start....
by jonathan scott james
18 Apr 2018, 22:00
Forum: Scripts and Functions (v1)
Topic: GDI+ standard library 1.45 by tic
Replies: 438
Views: 247969

Re: GDI+ standard library 1.45 by tic

it's gdi32.dll buts since it's loaded, it is implyed but this is the real shocker... btw, if you can help me make include gdi.ahk work. please convert this to it. i can't even make gdi.ahk do anything but error on every command, but the only way i can make it work so far is usung gdi32.dll in a dllc...
by jonathan scott james
18 Apr 2018, 14:07
Forum: Scripts and Functions (v1)
Topic: GDI+ standard library 1.45 by tic
Replies: 438
Views: 247969

Re: GDI+ standard library 1.45 by tic

at first. when i made this, i thought the rest would be a piece of cake.. but somehow it all went wrong: loopcount:=0,x:=100,y:=100 Gui,1:+LastFound +Resize +caption Gui,1: Add, Text ,h12 w200 x0 y0 vcunt1, Gui,1:Show,H300 W300, vcunt GuiHwnd := WinExist() hDC:=DllCall("GetDC",UInt,GuiHwnd) pen:=Dll...
by jonathan scott james
18 Apr 2018, 13:19
Forum: Scripts and Functions (v1)
Topic: GDI+ standard library 1.45 by tic
Replies: 438
Views: 247969

Re: GDI+ standard library 1.45 by tic

why does this not show me the sine wave in the demo driver? ;CfgSigrokJSJ = -d fx2lafw:conn=7.2 -O binary -o jsj.txt -c samplerate=20k --samples 1000 CfgSigrokJSJ = -d demo -O binary -o jsj.txt -c samplerate=20k --samples 10 run sigrok-cli.exe %CfgSigrokJSJ%,,hide loopcount:=0 Gui,scopejsj:+Resize +...
by jonathan scott james
17 Apr 2018, 05:52
Forum: Scripts and Functions (v1)
Topic: GDI+ standard library 1.45 by tic
Replies: 438
Views: 247969

Re: GDI+ standard library 1.45 by tic

when will the new ahk kernel be ready?
by jonathan scott james
17 Apr 2018, 05:51
Forum: Scripts and Functions (v1)
Topic: GDI+ standard library 1.45 by tic
Replies: 438
Views: 247969

Re: GDI+ standard library 1.45 by tic

how do you recompile the autohotkey kernel to include gdi.ahk aurtomaticaly? and how do you make it include gdi.ahk every time you compile a new .ahk script intto an exe? should i make a .bat file to replace the Ahk2Exe.exe file? with the line Ahk2Exe.exe/incluse gdi.ahk %%1 ? then use link to compi...
by jonathan scott james
25 Nov 2017, 04:20
Forum: Ask for Help (v1)
Topic: Is there any app like autohotkey for android? Topic is solved
Replies: 3
Views: 18232

Re: Is there any app like autohotkey for android? Topic is solved

is there am android x86 emulater shell that could be used to run ahk's inurprteter on android that can even make a single stepping slow shell? i have lots of old kitcats and lollipops that i wast to use as arms.. when i think about it. a pi "z" is only 5$ and i think ahk can run in a wine shell from...
by jonathan scott james
10 Oct 2017, 13:39
Forum: Suggestions on Documentation Improvements
Topic: [Archived, Locked] Suggestions on documentation improvements
Replies: 688
Views: 290187

Re: Suggestions on documentation improvements

help should have it's own client
i'm using xp, i cant seem to make the search function of help does not find parts of words
when i type a_tick , it cant find a_tickcount, it acts like it the search param has a space at the end and finds nothing.
by jonathan scott james
24 Jun 2017, 11:29
Forum: Ask for Help (v1)
Topic: how can i read the raw data from usb sound device with ahk.
Replies: 13
Views: 3833

Re: how can i read the raw data from usb sound device with ahk.

i want all the script commands that i have learned and all the script commands that i am learning things about to all be the same. i do not want to use c# or any other language
by jonathan scott james
24 Jun 2017, 04:49
Forum: Ask for Help (v1)
Topic: how can i read the raw data from usb sound device with ahk.
Replies: 13
Views: 3833

Re: how can i read the raw data from usb sound device with ahk.

i'm not getting money refunds or perks from apple or ibm or microsoft so i would like to make a whole system from tyhe cpu up.. but start with xilinx since i know it can hit 2gig lvdp and i assume it can do 1gig ttl. but these bastards are just pissing me off with their nefariousness networks which ...

Go to advanced search