topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday April 19, 2024, 4:49 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Candle [ switch to compact view ]

Pages: [1]
1
Post New Requests Here / IDEA : hide window to system tray 1 icon
« on: February 12, 2007, 01:58 PM »
Like to have windows hide to sdystem tray and use one icon for the hiden windows . right click on icon to pick window to unhide? etc.

2
I was working on this but not having a lot of luck so will ask if someone gets sometime to maybe do this.
I download a lot of files to one folder and want to burn the folder to dvd disk when it hits about 4 gigs ,so need something to watch it for me and when it hits that size it gives me a message .

3
Post New Requests Here / IDEA: Little help with this code
« on: December 24, 2006, 09:08 AM »
I can't seem to get the buttons to work?

Gui,2: Add, ListBox, x0 y0 w343 h500,
Gui,2: Show, x131 y91 h562 w561, New GUI Window
Gui,2: Add, Picture, x376 y140 w160 h390 , banner.jpg
Gui,2: Add, Button, x376 y90 w160 h30 , Save to File
Gui,2: Add, Button, x376 y30 w160 h30 , Select Folder
; Generated using SmartGUI Creator 4.0

Return

buttonselectfolder:
FileSelectFolder, OutputVar, , 3
if OutputVar =
    MsgBox, You didn't select a folder.
else
    MsgBox, You selected folder "%OutputVar%".

 Loop, "%OutputVar%"\*.mp3, 0, 1
{
   Pic%A_Index% = %A_LoopFileFullPath%
   If A_Index = 1
     GUIControl,2:, ListBox1, |%A_LoopFileName%||
   Else
    GUIControl,2:,ListBox1,%A_LoopFileName%
}
Return
GuiClose:
ExitApp

Thanks for any help with this.

edit by brotherS: If you don't say anything about your code (so that newbies can follow) it might be better to post @ the AHK forums directly.

4
Finished Programs / DONE: Edit a txt file gui
« on: February 09, 2006, 12:03 PM »
I have this litle gui that I want to grab some links out of a txt file they are like this in the file:
http://www.google.com
http://www.yahoo.com
http://www.msncom
etc
So anyways I want to have each link go into each editbox 7 of them.
Then edit the urls in the editboxs and have the save button save it back to the url.txt file.
So I can change the url links in the txt file.
Been trying this but I suck at this coding. lol



;;fill from url.txt
Gui, Add, Text, x130 y62 w100 h30 , Link 1
Gui, Add, Text, x130 y97 w100 h20 , Link 2
Gui, Add, Text, x130 y137 w100 h20, Link 3
Gui, Add, Text, x130 y177 w100 h20, Link 4
Gui, Add, Text, x130 y217 w100 h20, Link 5
Gui, Add, Text, x130 y257 w100 h20, Link 7
Gui, Add, Text, x130 y297 w100 h20, Link 8

Gui, Add, Edit, x166 y57 w250 h30,
Gui, Add, Edit, x166 y97 w250 h30,
Gui, Add, Edit, x166 y137 w250 h30,
Gui, Add, Edit, x166 y177 w250 h30,
Gui, Add, Edit, x166 y217 w250 h30,
Gui, Add, Edit, x166 y257 w250 h30,
Gui, Add, Edit, x166 y297 w250 h30,
Gui, Add, Button, x50 y337 w100 h30, Save
Gui, Add, Text, x196 y7 w140 h30,Link Editor
Gui, Show, x249 y99 h388 w452, Link Editor
Return

buttonsave:
;;url.txt
GuiClose:
ExitApp
Anyone feel like helping me code this.
Thanks for the help

Pages: [1]