| Author |
Message |
Topic: [SOLVED]Extract programs icon in systray |
tic
Replies: 14
Views: 323
|
Forum: Ask for Help Posted: Mon Jan 30, 2012 7:17 pm Subject: [SOLVED]Extract programs icon in systray |
| I might take a look at beginning to incorporate some of this into the gdi+ library (although not really gdi+ it could be helpful) |
Topic: How to get number from last line of text? |
tic
Replies: 7
Views: 248
|
Forum: Ask for Help Posted: Fri Jan 27, 2012 4:00 pm Subject: How to get number from last line of text? |
| Ugh....it makes the whole thing pointless if you stringsplit and stringreplace and then use 4 instrings every loop, as well as the regexs! |
Topic: How to get number from last line of text? |
tic
Replies: 7
Views: 248
|
Forum: Ask for Help Posted: Thu Jan 26, 2012 6:21 am Subject: How to get number from last line of text? |
Do not use loops as suggested. Output is in variable out1
RegExMatch(File, "s).*#(\d{3}\-\d{3}\-\d{4}\-\d{4})", out) |
Topic: GDI+ standard library 1.45 by tic |
tic
Replies: 918
Views: 139599
|
Forum: Scripts & Functions Posted: Tue Jan 24, 2012 5:12 pm Subject: GDI+ standard library 1.45 by tic |
| I think you will be best drawing everything into 1 bitmap and setting that to your control rather than drawing with separate windows. There are some errors with the offsets when rotating that I have n ... |
Topic: I Would like to count when i find pixel color. |
tic
Replies: 5
Views: 115
|
Forum: Ask for Help Posted: Mon Jan 23, 2012 6:55 pm Subject: I Would like to count when i find pixel color. |
| Depends how frequently it's changing.... |
Topic: GDI+ standard library 1.45 by tic |
tic
Replies: 918
Views: 139599
|
Forum: Scripts & Functions Posted: Mon Jan 23, 2012 5:45 pm Subject: GDI+ standard library 1.45 by tic |
| You use a lot of things that aren't related to setting a bitmap onto a standard window. You do not need UpdateLayeredWindow, as you are not dealing with layered windows. The most basic example of how ... |
Topic: I need an Advice what language is better for my project |
tic
Replies: 52
Views: 866
|
Forum: Ask for Help Posted: Sat Jan 21, 2012 9:38 am Subject: I need an Advice what language is better for my project |
Heh...I hate to weigh in on possible trolling topics, but AHK at least with graphic manipulation is much more advanced, and I hope I have a small part in that  |
Topic: GDI+ standard library 1.45 by tic |
tic
Replies: 918
Views: 139599
|
Forum: Scripts & Functions Posted: Fri Jan 20, 2012 3:56 pm Subject: GDI+ standard library 1.45 by tic |
Hi jleslie48
If you can please change your images to be a bit smaller to help the loading of each page.
What more do you need to learn? I think tutorial 9 should cover a lot of what you are ask ... |
Topic: [solved] Win7: GDI+, after hibernation |
tic
Replies: 14
Views: 454
|
Forum: Ask for Help Posted: Thu Jan 19, 2012 6:38 pm Subject: [solved] Win7: GDI+, after hibernation |
I can't think of anything wrong with using this method. Not the cleanest, but not a big deal.
What happens if you do a normal hide, but when you want to show, instead of using WinShow, then use Upda ... |
Topic: GDI+ standard library 1.45 by tic |
tic
Replies: 918
Views: 139599
|
Forum: Scripts & Functions Posted: Wed Jan 18, 2012 8:47 pm Subject: GDI+ standard library 1.45 by tic |
+E0x80000
-Caption
+LastFound
+OwnDialogs
+Owner
+E0x80000 - Layered window style from msdn
http://msdn.microsoft.com/en-us/library/ms997507.aspx
You need to find the enumeration for WS_ ... |
Topic: Gdip_ImageSearch |
tic
Replies: 7
Views: 1169
|
Forum: Scripts & Functions Posted: Tue Jan 17, 2012 10:02 pm Subject: Gdip_ImageSearch |
Are either of you running this on x64 ahk as that could provide an error level -6
The above code with Gdip_CreateBitmapFromFile, doesnot work for me.
Same image search is successful for Gdip_Bi ... |
Topic: Trying to add Masks(Transparency) to Bitmaps with GDI+ |
tic
Replies: 5
Views: 204
|
Forum: Ask for Help Posted: Tue Jan 17, 2012 5:01 pm Subject: Trying to add Masks(Transparency) to Bitmaps with GDI+ |
@Tic:
Could that code also be written natively in Autohotkey? Or would that be to slow? Im asking because i dont know how to compile machine code or create dll's....
Also does that code allow the us ... |
Topic: [solved] Win7: GDI+, after hibernation |
tic
Replies: 14
Views: 454
|
Forum: Ask for Help Posted: Mon Jan 16, 2012 5:05 am Subject: [solved] Win7: GDI+, after hibernation |
I guess we could decide what is more of a concern; memory or speed
You could try the same method in a different way to not use memory
F3::
hbmBlank := CreateDIBSection(Width, He ... |
Topic: GDI+ standard library 1.45 by tic |
tic
Replies: 918
Views: 139599
|
Forum: Scripts & Functions Posted: Mon Jan 16, 2012 4:58 am Subject: GDI+ standard library 1.45 by tic |
| Very awesome gamax92! |
Topic: Trying to add Masks(Transparency) to Bitmaps with GDI+ |
tic
Replies: 5
Views: 204
|
Forum: Ask for Help Posted: Sun Jan 15, 2012 1:59 am Subject: Trying to add Masks(Transparency) to Bitmaps with GDI+ |
You can compile the below to machine code or create a dll
int Gdip_PixelSearch(unsigned int * BitmapIn, unsigned int * Mask, unsigned int * BitmapOut, int w, int h, int Stride)
{
in ... |
| |