Search found 81 matches

by Azevedo
31 Aug 2015, 17:28
Forum: Ask for Help (v1)
Topic: TreeView: enter edit mode (F2)
Replies: 11
Views: 3390

Re: TreeView: enter edit mode (F2)

Thanks anyway gilli.
by Azevedo
31 Aug 2015, 17:22
Forum: Ask for Help (v1)
Topic: Custom Netflix client in AHK
Replies: 10
Views: 4252

Re: Custom Netflix client in AHK

Bruttosozialprodukt wrote:I've already done stuff like this and have already tried some things with AHK and Netflix. I'm 90% convinced I can do it.
Then go for it! Good luck!
by Azevedo
31 Aug 2015, 11:37
Forum: Ask for Help (v1)
Topic: Custom Netflix client in AHK
Replies: 10
Views: 4252

Re: Custom Netflix client in AHK

Get real. Read your question again. Are you joking? AHK is not an amusement park. Even if you were a C++ ninja you would have to have Netflix API documented to accomplish what you proposed. As far as I know Netflix uses silverlight plugin. The very near you can get is to embed an Internet Explorer f...
by Azevedo
31 Aug 2015, 11:32
Forum: Ask for Help (v1)
Topic: Making "Gui, +OwnDialogs" constant
Replies: 2
Views: 1197

Re: Making "Gui, +OwnDialogs" constant

I thought so. I wondered if there was a trick though.
I tried to write a function to to display messages box but I couldn't return IfMsgBox xxxxx

Code: Select all

IfMsgBox xxxxx
      return xxxxx
IfMsgBox yyyy
      return yyyy
I wouldn't do that, want to keep a neat and clean code
by Azevedo
31 Aug 2015, 11:25
Forum: Ask for Help (v1)
Topic: TreeView: enter edit mode (F2)
Replies: 11
Views: 3390

Re: TreeView: enter edit mode (F2)

I tried this

Code: Select all

Gui, Add, TreeView, gTreeViewHandle AltSubmit -ReadOnly hwndHTV

; ...

SendMessage, 0x110E, % A_ThisMenuItem,  ahk_id %HTV%
but it didn't work
by Azevedo
31 Aug 2015, 09:59
Forum: Ask for Help (v1)
Topic: Push a button - Two choices
Replies: 3
Views: 1231

Re: Push a button - Two choices

win1_is_open := false win2_is_open := false timeout := 10000 ; 10 seconds Gui, add, button. gCheckWindows, Check windows Gui, show return checkWindows: Loop { if (win1_is_open) && (win2_is_open) { WinClose, YourWndow Title Loop { ; wait for win2 to close if (!win2_is_open) break sleep, 100 timeout-...
by Azevedo
30 Aug 2015, 23:54
Forum: Ask for Help (v1)
Topic: Custom Netflix client in AHK
Replies: 10
Views: 4252

Re: Custom Netflix client in AHK

Dude, where did you buy that stuff? I want some, man. cool
by Azevedo
30 Aug 2015, 23:49
Forum: Ask for Help (v1)
Topic: [solved] UrlDownloadToFile slows down GUI response
Replies: 15
Views: 7364

Re: [solved] UrlDownloadToFile slows down GUI response

Ok. It was a misunderstanding. My bad.
Thanks buddy!
by Azevedo
30 Aug 2015, 23:43
Forum: Ask for Help (v1)
Topic: Script for Printing to 2 Trays Topic is solved
Replies: 4
Views: 1853

Re: Script for Printing to 2 Trays Topic is solved

Hey, I suggest you to install a PDF printer. Once your accounting software prints to pdf it is very easy to send PDF to printer A or B. Besides, printing to PDF will free your CPU from "waiting" the spooler is done with the physical printing process. Here you'll find plenty of PDF printers: http://a...
by Azevedo
30 Aug 2015, 23:26
Forum: Ask for Help (v1)
Topic: TreeView: enter edit mode (F2)
Replies: 11
Views: 3390

Re: TreeView: enter edit mode (F2)

ok. I'll. Thanks gilli!
by Azevedo
30 Aug 2015, 21:49
Forum: Ask for Help (v1)
Topic: TreeView: enter edit mode (F2)
Replies: 11
Views: 3390

Re: TreeView: enter edit mode (F2)

How so? I tried something like that but no success.
by Azevedo
30 Aug 2015, 19:45
Forum: Ask for Help (v1)
Topic: Screensaver Detection
Replies: 2
Views: 1613

Re: Screensaver Detection

You can try PixelGetColorevery 30 seconds
Get 5 known pixels of your screen saver. if it matches then your screensaver is running
by Azevedo
30 Aug 2015, 19:41
Forum: Ask for Help (v1)
Topic: TreeView: enter edit mode (F2)
Replies: 11
Views: 3390

Re: TreeView: enter edit mode (F2)

If you press F2 in a treeview you can edit the selected entry, right? In the picture, I want to trigger that feature when the user clicks Rename in the context menu there must be another way other than SendInput TVContextHandler: if (A_ThisMenuItem == "Rename`tF2") { SendInput, {F2} } like set style...
by Azevedo
30 Aug 2015, 19:34
Forum: Ask for Help (v1)
Topic: [solved] GUI autosize padding
Replies: 2
Views: 1488

Re: GUI autosize padding

That will do.
Thanks!
by Azevedo
30 Aug 2015, 19:29
Forum: Ask for Help (v1)
Topic: Push a button - Two choices
Replies: 3
Views: 1231

Re: Push a button - Two choices

I'm not sure what you want to do... win1_is_open := false win2_is_open := false timeout := 10000 ; 10 seconds ; when win1 is oppened, set win1_is_open := true Loop { if (win1_is_open) { ; do your stuff } if (win2_is_open) { ; do your stuff } sleep, 100 timeout-- if (timeout<=0) break } while (win_1_...
by Azevedo
30 Aug 2015, 18:54
Forum: Ask for Help (v1)
Topic: Making "Gui, +OwnDialogs" constant
Replies: 2
Views: 1197

Making "Gui, +OwnDialogs" constant

Hi,

is there a way to make Gui, +OwnDialogs constant globaly or I have to set it before every MsgBox?
by Azevedo
30 Aug 2015, 14:12
Forum: Ask for Help (v1)
Topic: TreeView: enter edit mode (F2)
Replies: 11
Views: 3390

TreeView: enter edit mode (F2)

Hi,

I have this TreeView with editing enabled -ReadOnly - which can be edited by pressing F2.

How do I set the selected TV item to enter in edit mode?
Image

Thanks
by Azevedo
30 Aug 2015, 11:36
Forum: Ask for Help (v1)
Topic: [solved] GUI autosize padding
Replies: 2
Views: 1488

[solved] GUI autosize padding

Hey! Is there a way to set autosize GUI padding? I think the default is 10px. http://s7.postimg.org/mj2v2ys7f/clipboard20150830132932.png I mean, if I set the GUI width and height like Gui, show, w300 h500 Center in systems where the user set a high/custom font size / DPI the contents won't be cente...

Go to advanced search