| Author |
Message |
Topic: Problem with FileReadLine Loop |
Looq
Replies: 4
Views: 178
|
Forum: Ask for Help Posted: Sun Apr 27, 2008 1:14 pm Subject: Problem with FileReadLine Loop |
Yeah, it doesn't really makes sense beause FileReadLine only supposed to read one line at a time What I really needed this fuction for was to make hot keys from a text file. It would parse the f ... |
Topic: Problem with FileReadLine Loop |
Looq
Replies: 4
Views: 178
|
Forum: Ask for Help Posted: Sun Apr 27, 2008 10:17 am Subject: Problem with FileReadLine Loop |
I have no clue why my file reading fuction is reading two lines instead of one. AHK just isn't working for me tonight
readline(line,field)
{
FileReadLine, List,key_config.ini,lin ... |
Topic: A resizable circular mouse cursor |
Looq
Replies: 0
Views: 266
|
Forum: Ask for Help Posted: Sat Apr 26, 2008 12:27 am Subject: A resizable circular mouse cursor |
I'm looking to make a circular mouse cursor that can be resized by holding a hotkey and dragging the mouse. An example is in the image below:
http://www.autohotkey.net/~Looq/images/sai_circle.jpg
Th ... |
Topic: OpenCanvas Networking Helper 1.5 beta |
Looq
Replies: 0
Views: 2226
|
Forum: Scripts & Functions Posted: Fri Apr 11, 2008 4:47 pm Subject: OpenCanvas Networking Helper 1.5 beta |
| Been a while since I've posted here, but here's a utility I made to make OpenCanvas 1.1 easier to use. It's called a 'networking helper' because it saves a list of user names and the info to connect t ... |
Topic: hex values - converting to integer or floating point? |
Looq
Replies: 2
Views: 171
|
Forum: Ask for Help Posted: Tue Apr 24, 2007 1:00 pm Subject: hex values - converting to integer or floating point? |
| I've been trying to figure out how OpenCanvas stores it's brush sizes in the registry. I wrote a script make a text file of values. It simply increments the brush size, saves it, reads the registry ke ... |
Topic: OpenCanvas Network Helper - saves server profiles ..etc |
Looq
Replies: 2
Views: 1007
|
Forum: Scripts & Functions Posted: Fri Mar 09, 2007 6:56 am Subject: OpenCanvas Network Helper - saves server profiles ..etc |
Thanks. I noticed that it's not possible to have images in compiled scripts so..i chopped the image off. Also I think I had tiny bug in the updating part of the netbar. It also automatically genera ... |
Topic: OpenCanvas Network Helper - saves server profiles ..etc |
Looq
Replies: 2
Views: 1007
|
Forum: Scripts & Functions Posted: Thu Mar 08, 2007 3:04 am Subject: OpenCanvas Network Helper - saves server profiles ..etc |
| Well I believe I Finally finished this thing. It's an app to save all the settings for a server and automatically paste them into OpenCanvas. If anyone wants to clean up my code..well be my guest :lol ... |
Topic: Replacing text based on line number |
Looq
Replies: 3
Views: 903
|
Forum: Ask for Help Posted: Wed Mar 07, 2007 8:12 pm Subject: Replacing text based on line number |
Alpha? I just found a solution using arrays :
ArrayCount = 0
Loop, Read, oc_server.cfg
{
ArrayCount += 1
if( substr(A_LoopReadLine,1,1) = "#")
... |
Topic: Replacing text based on line number |
Looq
Replies: 3
Views: 903
|
Forum: Ask for Help Posted: Wed Mar 07, 2007 6:29 pm Subject: Replacing text based on line number |
Would there be a way to replace one or more character in a file based on the line it's on? I have a file that kind of looks like this:
#some comment
1
#some comment
2
#some comment
name
#some ... |
Topic: Changing Title Bar or Text inside Progress Bar?----FIXED---- |
Looq
Replies: 2
Views: 427
|
Forum: Ask for Help Posted: Tue Mar 06, 2007 2:09 am Subject: Changing Title Bar or Text inside Progress Bar?----FIXED---- |
Fixed err...worked around anyway I borrowed some code from:
DetectHiddenWindows, On
Gosub,poplist
Return
;#############################################################
;############ READ ... |
Topic: Changing Title Bar or Text inside Progress Bar?----FIXED---- |
Looq
Replies: 2
Views: 427
|
Forum: Ask for Help Posted: Mon Mar 05, 2007 11:21 pm Subject: Changing Title Bar or Text inside Progress Bar?----FIXED---- |
| Updated the title to better reflect what i'm really looking for. Would it also be possible to show next insde of a progress bar? |
Topic: Changing Title Bar or Text inside Progress Bar?----FIXED---- |
Looq
Replies: 2
Views: 427
|
Forum: Ask for Help Posted: Mon Mar 05, 2007 10:16 pm Subject: Changing Title Bar or Text inside Progress Bar?----FIXED---- |
| I'm still working on an app to make OpenCanvas a little easier to use. It's progressed pretty nicely over the past couple days I think. One thing that'd be really handy to have is a small bar to displ ... |
Topic: same variable cannot be used....GUI problem |
Looq
Replies: 4
Views: 371
|
Forum: Ask for Help Posted: Mon Mar 05, 2007 4:52 am Subject: same variable cannot be used....GUI problem |
Ah Destroy fixed it:
savewin:
Gui,2:Destroy
Gui, Submit,NoHide
Gui 2:+AlwaysOnTop
Gui, 2:Add, Text, x15 y6 w80 h20 , Host's Name
Gui, 2:Add, Edit,vUHNAME x16 y27 w140 h20 , ... |
Topic: same variable cannot be used....GUI problem |
Looq
Replies: 4
Views: 371
|
Forum: Ask for Help Posted: Mon Mar 05, 2007 3:37 am Subject: same variable cannot be used....GUI problem |
Ah! So I just called it too many times. Hmm..I knew it had to be something simple Thanks I guess I'll just leave it as it was: close the window then select a name from the DDL...then hit "edi ... |
Topic: same variable cannot be used....GUI problem |
Looq
Replies: 4
Views: 371
|
Forum: Ask for Help Posted: Mon Mar 05, 2007 2:31 am Subject: same variable cannot be used....GUI problem |
| I'm working on a script that displays a list of names, reads thier associated info from a text file and pastes these values into openCanvas. The problem I keep running into is being able to update the ... |
| |