AutoHotkey Community

It is currently May 22nd, 2012, 1:21 pm

All times are UTC [ DST ]


Search found 35 matches
Search these results:

Author Message

 Forum: Support   Topic: [SOLVED] Making a TreeView item appear in bold via script

Posted: September 4th, 2011, 8:24 pm 

Replies: 2
Views: 137


I figured out how to do it without knowing the ItemID's ahead of time. I inserted the following loop inside my main search loop Loop % TV_GetCount() { ItemID := TV_GetNext(ItemID) TV_GetText(ItemText, ItemID) if ItemText = %StoryFolder% ;StoryFolder previously obtained f...

 Forum: Support   Topic: [SOLVED] Making a TreeView item appear in bold via script

Posted: September 4th, 2011, 12:12 pm 

Replies: 2
Views: 137


I have an app with a treeview displaying a list of folders and a listview displaying the file names in the currently selected folder. When you click on an item in the treeview it builds the listview with the appropriate folder files and makes the treeview item appear in bold. I created a search subr...

 Forum: Scripts   Topic: ILButton() - image buttons with text, states, alignment

Posted: September 1st, 2011, 10:31 pm 

Replies: 36
Views: 11973


My AHK app uses audio icons for play, pause, stop, and volume. I want one button to share the play and pause icons. So far I can make the pause icon replace the play icon when the button is pressed however it then immediately fades back to the play icon. Any suggestions on how to keep an icon presen...

 Forum: Scripts   Topic: ILButton() - image buttons with text, states, alignment

Posted: August 27th, 2011, 8:37 pm 

Replies: 36
Views: 11973


First of all thank u vary mutch tkoi for your great shearing. :) I was wondering for something like your function. But, in my computer the ilbuttondemo.ahk in not working, it shows an error msg that it is unable to include ILButton11.ahk Both the function and the demo ahk are in the same folder and...

 Forum: Scripts   Topic: BASS Library - extreme AHK multimedia power!

 Post subject: Bass Installation
Posted: August 25th, 2011, 7:38 am 

Replies: 102
Views: 23725


Has this been abandoned? The site http://bass.eat.at is not available. Plus where do I find the bass.ahk script?

 Forum: Support   Topic: Detecting the "Enter" key in a GUI Edit control

Posted: August 22nd, 2011, 10:49 pm 

Replies: 3
Views: 232


I have an Edit control in my GUI and I want to activate code after I typed text into and press the Enter key. In other words, pressing the Enter key will activate the code. I figured this would be simple like detecting the mouse clicks but I can't seem to figure it out. Any hints would be appreciated.

 Forum: Scripts   Topic: QuickMediaPlayer v0.3 - Drag & Drop Media Player

Posted: August 13th, 2011, 11:30 pm 

Replies: 4
Views: 1119


I wrote an app in AHK that keeps tracks of my audio stories (mp3 format). I use QuickMediaPlayer when I need to listen to parts of a story if I need information from it. I use the following code snippet to call it... LV_GetText(SelectedFullPath, ControlItem, 4) ;Gets the path and name of the...

 Forum: Scripts   Topic: ListViews: Color individual rows, multiple LV support

Posted: August 9th, 2011, 8:12 am 

Replies: 22
Views: 4032


Quote:
... or I might just have had too much to drink.

:wink:

 Forum: Scripts   Topic: ListViews: Color individual rows, multiple LV support

Posted: August 8th, 2011, 6:08 pm 

Replies: 22
Views: 4032


As usual, there is a way. In the notification structure is a handle to the listview's DC along with the coordinates of the bounding rectangle being refreshed. Someone who knows GDI can use this information to draw a nice dark horizontal grid line at the bottom of that rectangle. I try not to drop t...

 Forum: Scripts   Topic: ListViews: Color individual rows, multiple LV support

Posted: August 8th, 2011, 2:45 pm 

Replies: 22
Views: 4032


I can understand and appreciate the slowdown. The code is doing a lot of stuff. If you take a lot stuff and multiply it by 1,700 rows, you're bound to see a slowdown. In addition, the WM_Notify function is marked as Critical. With Critical, messages that can't be processed right away are put into a...

 Forum: Scripts   Topic: ListViews: Color individual rows, multiple LV support

Posted: August 8th, 2011, 11:05 am 

Replies: 22
Views: 4032


After using it for a couple of days I removed it from my script. I have a listview with approx. 1,700 rows and 5 columns of data and the drawing and redrawing was just too slow to bare. It would also run away at random and push the processor over 50% until all I could do was kill the process. Maybe ...

 Forum: Scripts   Topic: ListViews: Color individual rows, multiple LV support

Posted: August 6th, 2011, 11:56 pm 

Replies: 22
Views: 4032


Anonymous wrote:
It works with AHK_L ansi.


I switched to ansi and it worked great. Thanks for the tip!

 Forum: Support   Topic: GUI creation- button1 opens gui2

Posted: August 6th, 2011, 8:12 pm 

Replies: 4
Views: 109


Yeah the docs I've found to be great but the gui stuff I'm just having trouble with. There's not as many examples as for other expressions, just didn't understand them. I've tried to get my button2 on gui 1 to show gui 2 when clicked but to no avail. I added the code that was suggested above to the...

 Forum: Scripts   Topic: Listview colors for individual lines (e.g. highlighting)

Posted: August 6th, 2011, 7:07 pm 

Replies: 25
Views: 15960


No, the code does not make allowance for the increased size of handles and pointers on x64 systems (not the author's fault, the original code is 5 years old). Handles and pointers are 4 bytes on 32 bit systems, but are 8 bytes on x64, which means that wherever you see a struct member type that star...

 Forum: Scripts   Topic: ListViews: Color individual rows, multiple LV support

Posted: August 6th, 2011, 4:42 pm 

Replies: 22
Views: 4032


I can't get the example to show any colors. Is this compatible with AHK_L 64bit on Win 7?
Sort by:  
Page 1 of 3 [ Search found 35 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group