Search found 15 matches

by peter723pan
24 Feb 2017, 12:22
Forum: Ask for Help (v1)
Topic: Sorry for mistake report.
Replies: 3
Views: 1375

Re: After [DllCall "SelectObject"] , [CoordMode, Mouse, Screen] doesn't work.

Hours ago , add codes for my slideshow script suit for multi-monitors . If middle click in the second monitor , it fullscreen in the second monitor. But it fail , I checked it , MouseGetPos returned relative position. CoordMode, Mouse, Screen < Not worked , after I changed it to before DllCall it wo...
by peter723pan
24 Feb 2017, 09:51
Forum: Ask for Help (v1)
Topic: Sorry for mistake report.
Replies: 3
Views: 1375

Sorry for mistake report.

If [ MouseGetPos, xpos, ypos ] before [ DllCall("SelectObject", "uint", hdc, "uint", obm) ] every thing works fine. Gets x,y of screen position. CoordMode, Mouse, Screen MouseGetPos, xpos, ypos WinGetPos, X, Y, , , %myTitle% DllCall("SelectObject", "uint", hdc, "uint", obm) but if [ DllCall("SelectO...
by peter723pan
13 Feb 2017, 12:32
Forum: Ask for Help (v1)
Topic: Pixiv Ugoira zip anime player basicly done. Topic is solved
Replies: 22
Views: 7724

Re: Pixiv Ugoira zip anime player basicly done. Topic is solved

........ Last update: For it's not master peace like tic's GDIP.ank in "Scripts and Functions" board . And seen not like "Helpful script writing tricks" in "Tutorials" board . Not very useful script , but if your like the Hulagirl.ahk , can think this is an update . I not going to start a new threa...
by peter723pan
09 Feb 2017, 10:40
Forum: Ask for Help (v1)
Topic: Pixiv Ugoira zip anime player basicly done. Topic is solved
Replies: 22
Views: 7724

Re: Pixiv Ugoira zip anime player on going. Topic is solved

Brilliant,thanks for the quick heads up,best of luck with the zipped playback. I add a memory free line . After the File.close() File.Close() VarSetCapacity(Buffer, 0) And the uncompressed zippack frames player is basicly done. https://marcan.st/talks/2014_pixiv_ugoku_player/ Download this pixiv Ug...
by peter723pan
09 Feb 2017, 07:23
Forum: Ask for Help (v1)
Topic: Pixiv Ugoira zip anime player basicly done. Topic is solved
Replies: 22
Views: 7724

Re: Pixiv Ugoira zip anime player on going. Topic is solved

So am i right to assume apart from the loading images from zip component, you have solved the flickering issue,i'm only asking such that if you did, i want to keep you're version as a future fix for any future encounter with flickering,i have a 'scripts for future fixes' folder,just want to be sure...
by peter723pan
09 Feb 2017, 03:30
Forum: Ask for Help (v1)
Topic: Pixiv Ugoira zip anime player basicly done. Topic is solved
Replies: 22
Views: 7724

Re: Load imgs to array then loop slideshow till exit. Topic is solved

I'm using the latest version of ahk but mine works so here's the script and gdip that i'm using, place them both in the same folder as the 'Images' folder and give it a shot,you can even change the images in the folder to your own,it loops through all png files in the images directory. Your code se...
by peter723pan
08 Feb 2017, 13:17
Forum: Ask for Help (v1)
Topic: Pixiv Ugoira zip anime player basicly done. Topic is solved
Replies: 22
Views: 7724

Re: Load imgs to array then loop slideshow till exit. Topic is solved

Gui, +E0x02000000 might help to reduce flickering in this case. WS_EX_COMPOSITED (0x02000000L) Paints all descendants of a window in bottom-to-top painting order using double-buffering. It's dosen't change any. but nevermind , there's other problem. I want to read image files from an uncompressed z...
by peter723pan
08 Feb 2017, 08:40
Forum: Ask for Help (v1)
Topic: Pixiv Ugoira zip anime player basicly done. Topic is solved
Replies: 22
Views: 7724

Re: Load imgs to array then loop slideshow till exit. Topic is solved

Well if you used with the hulagirl images you'll find it's wicked smooth,but if you're using your own images you could tweak this line: SetTimer, Animate, 50 ;the numeral represents the speed at which the images are being cycled and changing it about might make the end of the loop and image cycle r...
by peter723pan
08 Feb 2017, 08:04
Forum: Ask for Help (v1)
Topic: Pixiv Ugoira zip anime player basicly done. Topic is solved
Replies: 22
Views: 7724

Re: Load imgs to array then loop slideshow till exit. Topic is solved

I'm using the latest version of ahk but mine works so here's the script and gdip that i'm using, place them both in the same folder as the 'Images' folder and give it a shot,you can even change the images in the folder to your own,it loops through all png files in the images directory. Yes, it work...
by peter723pan
08 Feb 2017, 06:57
Forum: Ask for Help (v1)
Topic: Pixiv Ugoira zip anime player basicly done. Topic is solved
Replies: 22
Views: 7724

Re: Load imgs to array then loop slideshow till exit. Topic is solved

You might look for LoadPicture() (look at the example). Thank you very much, this function should have a tag in user doc "Graphical User Interfaces" or "Screen" . How you found it ? That may be helpful to efficiently search doc . New version is great , but download from Offical homepage at my place...
by peter723pan
07 Feb 2017, 15:17
Forum: Ask for Help (v1)
Topic: Pixiv Ugoira zip anime player basicly done. Topic is solved
Replies: 22
Views: 7724

Re: Load imgs to array then loop slideshow till exit. Topic is solved

Based on these lines in the script: ;Create Bitmaps from Files SetWorkingDir %A_ScriptDir%\Images Loop, *.png { pBitmap%A_Index% := Gdip_CreateBitmapFromFile(A_LoopFileName) } You will need to have a sub folder named Images with .pngs in it at your scripts location. HTH I notice those lines: SetWor...
by peter723pan
07 Feb 2017, 15:03
Forum: Ask for Help (v1)
Topic: Pixiv Ugoira zip anime player basicly done. Topic is solved
Replies: 22
Views: 7724

Re: Load imgs to array then loop slideshow till exit. Topic is solved

check this out, https://github.com/dufferzafar/Autohotkey-Scripts/tree/master/Hula%20Girl, I recommend you download whole github folder before you run script as the images the script loops through are in a sub folder. Thanks for replying. I download it and tried. first popup fail , no gdip. Downloa...
by peter723pan
07 Feb 2017, 13:17
Forum: Ask for Help (v1)
Topic: Pixiv Ugoira zip anime player basicly done. Topic is solved
Replies: 22
Views: 7724

Pixiv Ugoira zip anime player basicly done. Topic is solved

I want to load a batch of frame pictures , fast slideshow make it looks like motional. Let's say load 100 frames load in array, then fast loop slideshow till click close window. But , fail at the beginning . Don't even success with 2 picture slow loop show Let's use old uploaded pics to test. Two dn...
by peter723pan
28 Sep 2014, 07:51
Forum: Scripts and Functions (v1)
Topic: EitherMouse 0.8 - Multiple mice, individual settings...
Replies: 392
Views: 207163

Re: EitherMouse 0.59 - Multiple mice, individual settings...

One month ago , the zippack download had script source .ahk files within it.
But now the newer one only contain exe file.
by peter723pan
01 Sep 2014, 15:23
Forum: Scripts and Functions (v1)
Topic: EitherMouse 0.8 - Multiple mice, individual settings...
Replies: 392
Views: 207163

Re: EitherMouse 0.59 - Multiple mice, individual settings...

Finally find a software deal with Multiple mice , individual settings. I have a stupid handheld trackball which I hope make forward , backward buttons work as left and right buttons. And make left and right buttons do the forward , backward. When play games I use normal mouse not trackball. There ar...

Go to advanced search