topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Wednesday November 26, 2025, 10:25 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

Recent Posts

Pages: prev1 ... 192 193 194 195 196 [197] 198 199 200 201 202 ... 222next
4901
FARR Plugins and Aliases / Re: CZB pack
« Last post by skwire on October 03, 2009, 04:43 AM »
if you find any other bugs, or have any ideas let me know. I have some time for CZB coding now

If you have some time, I get the same Google Translate error as Anaderi mentioned above: https://www.donation....msg174212#msg174212
4902
Finished Programs / Re: IDEA: File/Folder Deleter Based on Text File
« Last post by skwire on October 02, 2009, 10:23 PM »
v1.0.2 - 2009-10-02
    ! Removed tray icon that was erroneously left in.

Website | Download
4903
Finished Programs / Re: IDEA: File/Folder Deleter Based on Text File
« Last post by skwire on October 02, 2009, 07:05 PM »
v1.0.1 - 2009-10-02
    + Added ability to paste in paths from clipboard via the Edit menu or via Ctrl+V.  (Thanks, dojima)

Website | Download

Sorry about that.
4904
Finished Programs / Re: IDEA: File/Folder Deleter Based on Text File
« Last post by skwire on October 02, 2009, 06:51 PM »
Is the list limited to a certain number of items?

No limit.

Also, I don't seem to be able to paste a list of items in there.  I'm not sure if I might just be doing something wrong or it hasn't been implemented.

Ah, crap.  I forgot.  Give me a few minutes.

Thanks again.  Amazing work.

You're welcome.  Glad to help.
4905
Finished Programs / Re: IDEA: File/Folder Deleter Based on Text File
« Last post by skwire on October 02, 2009, 04:52 PM »
Give this a try:  Deletist v1.0.0

Website | Download

main.png
4906
Can you provide me with the exact paths you're using, please?

1) Files 2 Folder install path.
2) Full path of the ABC folder you reference.
3) Full path and filename of the file you're working with.

Thanks.
4907
Finished Programs / Re: IDEA: File/Folder Deleter Based on Text File
« Last post by skwire on October 02, 2009, 03:10 PM »
I like Deletist.  Thanks.  =] Now to choose an icon, tidy up some loose ends and this puppy is ready for release.
4908
Finished Programs / Re: IDEA: File/Folder Deleter Based on Text File
« Last post by skwire on October 02, 2009, 02:50 PM »
Almost done and need an app name.  I have Deletext as the working name but, as always, am open to suggestion.  Cranioscopical?!?!  Pressure's on, guv.   :D
4909
Finished Programs / Re: IDEA: File/Folder Deleter Based on Text File
« Last post by skwire on October 02, 2009, 09:06 AM »
Cool.  I wanted to make sure that using coloured icons versus coloured text was okay.  I can do either, but I prefer icons.  I've got some shopping to do with my wife so I'll get started on this a bit later.
4910
Finished Programs / Re: IDEA: File/Folder Deleter Based on Text File
« Last post by skwire on October 02, 2009, 08:25 AM »
As the subject states, I'm wondering if it's possible to create a program that will delete files and folders based on a text file with their full paths given, delimited by line breaks.

Yes, easily done.

Perhaps a good way to handle this is to be able to open or drag the txt file to the program window

Almost all of my apps offer several ways when dealing with this type of functionality.  1) File menu 2) Toolbar buttons 3) Drag & drop

and have it show the list of items to be deleted before clicking a button to carry out the action.

Correct, this will be a listview-centric app.

Alternatively, pasting the list directly from the clipboard might be useful.

Can do.

By deletion, I simply mean the action of moving the files/folders listed to the recycle bin.

Deleting to the bin is doable.

Upon completion of the recycling task, I envision a status window popping up that says something like, "x files deleted and y files skipped." in the event that certain files on the list were either in use or simply do not exist.

How about displaying this information in the app's statusbar?

Altering the original list of items from black to green or red based on recycled or skipped status respectively might be a good way to show this visually, though I don't know how overly difficult I may be making the coding of the program by requesting this.

I was thinking of using coloured icons in the first column to show the status of a certain line.  Logic would be something like this:

On file/folder load action:

Grey icon - File or folder is present.
Yellow icon - File or folder is missing.

On file/folder delete action:

Green icon - Deletion was successful.
Red icon - Deletion was unsuccessful.

Additionally, it might be useful to have the option of specifying other delimiters such as colons, vertical bars, etc.

Can do but this will come last.

Your thoughts?
4911
Finished Programs / Re: IDEA: File/Folder Deleter Based on Text File
« Last post by skwire on October 02, 2009, 07:39 AM »
I can do this one.
4912
Sweet...great to hear.
4913
Living Room / Re: How much Soda/Energy-Drinks you drink / week?
« Last post by skwire on September 30, 2009, 09:12 PM »
Energy drinks?  None.  Ever.  No soda, either.  I drink coffee, tea, and water.
4914
Code: AutoIt [Select]
  1. F1:: ; Remove caption and sizing border from the active window.
  2. {
  3.     WinSet, Style, -0xC00000, A    
  4.     WinSet, Style, -0x40000, A    
  5. }
  6.  
  7. F2:: ; Return active window to normal.
  8. {
  9.     WinSet, Style, +0xC00000, A    
  10.     WinSet, Style, +0x40000, A
  11. }
4915
This should do what you want:

Code: AutoIt [Select]
  1. SetTitleMatchMode, 2
  2. DetectHiddenWindows, On
  3.  
  4.  
  5. Header_Text := "EVDCAP 8"
  6. Font_Size   := "56"
  7. Font_Style  := "Lucida Sans Unicode"
  8. Font_Color  := "Green"
  9.  
  10. Gui, 1: +Toolwindow -Caption +Lastfound +AlwaysOnTop
  11. Gui, 1: +LastFound
  12. Gui, 1: Margin, 0, 0
  13. Gui, 1: Font, s%Font_Size% c%Font_Color%, % Font_Style
  14. Gui, 1: Add, Text, xm+460 ym+0 0x200 vmyText1, % Header_Text
  15. Gui, 1: Font
  16. Gui, 1: Color, EEAA99
  17. Winset, Transcolor, EEAA99
  18. Gui, 1: Add, Button, xm+40  ym+125 w145 h25 vmyButton01 gonClick, NDF + LTC mp2 (#1)
  19. Gui, 1: Add, Button, xm+40  ym+150 w145 h25 vmyButton02 gonClick, DF + LTC mp2 (#2)
  20. Gui, 1: Add, Button, xm+40  ym+175 w145 h25 vmyButton03 gonClick, PAL + LTC mp2 (#3)
  21. Gui, 1: Add, Button, xm+40  ym+220 w145 h25 vmyButton04 gonClick, NDF L-R + L-LTC simo (#4)
  22. Gui, 1: Add, Button, xm+40  ym+245 w145 h25 vmyButton05 gonClick, DF L-R + L-LTC simo (#5)
  23. Gui, 1: Add, Button, xm+40  ym+270 w145 h25 vmyButton06 gonClick, PAL L-R + L-LTC simo (#6)
  24. Gui, 1: Add, Button, xm+230  ym+125 w145 h25 vmyButton07 gonClick, NDF 3-4 + 3-LTC mp2 (#7)
  25. Gui, 1: Add, Button, xm+230  ym+150 w145 h25 vmyButton08 gonClick, DF 3-4 + 3-LTC mp2 (#8)
  26. Gui, 1: Add, Button, xm+230  ym+175 w145 h25 vmyButton09 gonClick, PAL 3-4 + 3-LTC mp2 (#9)
  27. Gui, 1: Add, Button, xm+230  ym+220 w145 h25 vmyButton10 gonClick, Future Button 1
  28. Gui, 1: Add, Button, xm+230  ym+245 w145 h25 vmyButton11 gonClick, Future Button 2
  29. Gui, 1: Add, Button, xm+230  ym+270 w145 h25 vmyButton12 gonClick, Future Button 3
  30. Gui, 1: Add, Button, xm+915  ym+125 w145 h25 vmyButton13 gonClick, Future Button 4
  31. Gui, 1: Add, Button, xm+915  ym+150 w145 h25 vmyButton14 gonClick, Future Button 5
  32. Gui, 1: Add, Button, xm+915  ym+175 w145 h25 vmyButton15 gonClick, Future Button 6
  33. Gui, 1: Add, Button, xm+330  ym+705 w120 h25 vmyButton16 gonClick, Switch to NTSC (#n)
  34. Gui, 1: Add, Button, xm+450  ym+705 w120 h25 vmyButton17 gonClick, Switch to PAL (#p)
  35. Gui, 1: Show, x0 y0 w1280 h768, Overlay
  36.  
  37.  
  38.  
  39. Header_Text2 := " Gb Free on Cap 6"
  40. Font_Size2   := "14"
  41. Font_Style2  := "Lucida Sans Unicode"
  42. Font_Color2  := "Green"
  43.  
  44. Gui, 2: +Toolwindow -Caption +Lastfound +AlwaysOnTop
  45. GUI_ID := WinExist()
  46. Gui, 2: +LastFound
  47. Gui, 2: Margin, 0, 0
  48.  
  49. Gui, 2: Font, s%Font_Size2% c%Font_Color2%, % Font_Style2
  50. Gui, 2: Add, Text, xm+900 ym+00 w230 0x200 vmyText2,
  51. Gui, 2: Font
  52. Gui, 2: Color, EEAA99
  53. Winset, Transcolor, EEAA99
  54. Gui, 2: Show, x0 y0 w1280 h768, Overlay
  55.  
  56.  
  57.  
  58.  
  59. Header_Text3 := " Gb Free on Cap 7"
  60. Font_Size3   := "14"
  61. Font_Style3  := "Lucida Sans Unicode"
  62. Font_Color3  := "Green"
  63.  
  64. Gui, 3: +Toolwindow -Caption +Lastfound +AlwaysOnTop
  65. GUI_ID := WinExist()
  66. Gui, 3: +LastFound
  67. Gui, 3: Margin, 0, 0
  68.  
  69. Gui, 3: Font, s%Font_Size2% c%Font_Color2%, % Font_Style2
  70. Gui, 3: Add, Text, xm+900 ym+30 w230 border 0x200 vmyText3,
  71. Gui, 3: Font
  72. Gui, 3: Color, EEAA99
  73. Winset, Transcolor, EEAA99
  74. Gui, 3: Show, x0 y0 w1280 h768, Overlay
  75.  
  76.  
  77.  
  78.  
  79. Header_Text4 := " Gb Free on Cap 8"
  80. Font_Size4   := "14"
  81. Font_Style4  := "Lucida Sans Unicode"
  82. Font_Color4  := "Green"
  83.  
  84. Gui, 4: +Toolwindow -Caption +Lastfound +AlwaysOnTop
  85. GUI_ID := WinExist()
  86. Gui, 4: +LastFound
  87. Gui, 4: Margin, 0, 0
  88.  
  89. Gui, 4: Font, s%Font_Size2% c%Font_Color2%, % Font_Style2
  90. Gui, 4: Add, Text, xm+900 ym+60 w230 0x200 vmyText4,
  91. Gui, 4: Font
  92. Gui, 4: Color, EEAA99
  93. Winset, Transcolor, EEAA99
  94. Gui, 4: Show, x0 y0 w1280 h768, Overlay
  95.  
  96.  
  97. ; Run once to initialise values.
  98. GoSub, GetDriveSpaceFree
  99. ; Set the timer to run every five minutes.
  100. SetTimer, GetDriveSpaceFree, 300000
  101.  
  102. Return ; End of auto-execute section.
  103.  
  104.  
  105. #T:: ; Toggle the GUI.
  106. {
  107.     If ! ( Toggle_Gui )
  108.     {
  109.         Gui, 1: Show, Hide
  110.         Gui, 2: Show, Hide
  111.         Gui, 3: Show, Hide
  112.         Gui, 4: Show, Hide
  113.     }
  114.     Else
  115.     {
  116.  
  117.         Gui, 1: Show
  118.         Gui, 2: Show
  119.         Gui, 3: Show, Hide
  120.         Gui, 4: Show, Hide
  121.     }
  122.     Toggle_Gui := !Toggle_Gui
  123. }
  124.  
  125.  
  126. GetDriveSpaceFree:
  127. {
  128.     DrivespaceFree, freeQ, Q:\
  129.     DrivespaceFree, freeR, R:\
  130.     DrivespaceFree, freeS, S:\
  131.    
  132.     GuiControl, 2: Text, myText2, % Round(freeQ/1024) Header_Text2    
  133.     GuiControl, 3: Text, myText3, % Round(freeR/1024) Header_Text3    
  134.     GuiControl, 4: Text, myText4, % Round(freeS/1024) Header_Text4
  135. }
  136.  
  137.  
  138. onClick:
  139. {
  140.     Gui, 2: Submit, NoHide
  141.     If ( A_GuiControl = "myButton01" )
  142.     {
  143.         WinWait, Digital Rapids Stream,
  144.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  145.         WinWaitActive,  Digital Rapids Stream,
  146.         MouseClick, left,  248,  12
  147.         Sleep, 200
  148.         Send, {ALTDOWN}f{ALTUP}o
  149.         WinWait, Open Local Project...,
  150.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  151.         WinWaitActive, Open Local Project...,
  152.         Sleep, 200
  153.         Send, ntsc{SHIFTDOWN}-{SHIFTUP}ndf{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  154.     }
  155.     Else If ( A_GuiControl = "myButton02" )
  156.     {
  157.         WinWait, Digital Rapids Stream,
  158.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  159.         WinWaitActive,  Digital Rapids Stream,
  160.         MouseClick, left,  248,  12
  161.         Sleep, 200
  162.         Send, {ALTDOWN}f{ALTUP}o
  163.         WinWait, Open Local Project...,
  164.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  165.         WinWaitActive, Open Local Project...,
  166.         Sleep, 200
  167.         Send, ntsc{SHIFTDOWN}-{SHIFTUP}df{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  168.     }
  169.     Else If ( A_GuiControl = "myButton03" )
  170.     {
  171.         WinWait, Digital Rapids Stream,
  172.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  173.         WinWaitActive,  Digital Rapids Stream,
  174.         MouseClick, left,  248,  12
  175.         Sleep, 200
  176.         Send, {ALTDOWN}f{ALTUP}o
  177.         WinWait, Open Local Project...,
  178.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  179.         WinWaitActive, Open Local Project...,
  180.         Sleep, 200
  181.         Send, pal{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  182.     }
  183.     Else If ( A_GuiControl = "myButton04" )
  184.     {
  185.         WinWait, Digital Rapids Stream,
  186.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  187.         WinWaitActive,  Digital Rapids Stream,
  188.         MouseClick, left,  248,  12
  189.         Sleep, 200
  190.         Send, {ALTDOWN}f{ALTUP}o
  191.         WinWait, Open Local Project...,
  192.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  193.         WinWaitActive, Open Local Project...,
  194.         Sleep, 200
  195.         Send, ntsc{SHIFTDOWN}-{SHIFTUP}ndf{SHIFTDOWN}-{SHIFTUP}l-r{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}l-ltc{SHIFTDOWN}-{SHIFTUP}simultaneous.prj{ENTER}
  196.     }
  197.     Else If ( A_GuiControl = "myButton05" )
  198.     {
  199.         WinWait, Digital Rapids Stream,
  200.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  201.         WinWaitActive,  Digital Rapids Stream,
  202.         MouseClick, left,  248,  12
  203.         Sleep, 200
  204.         Send, {ALTDOWN}f{ALTUP}o
  205.         WinWait, Open Local Project...,
  206.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  207.         WinWaitActive, Open Local Project...,
  208.         Sleep, 200
  209.         Send, ntsc{SHIFTDOWN}-{SHIFTUP}df{SHIFTDOWN}-{SHIFTUP}l-r{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}l-ltc{SHIFTDOWN}-{SHIFTUP}simultaneous.prj{ENTER}
  210.     }
  211.     Else If ( A_GuiControl = "myButton06" )
  212.     {
  213.         WinWait, Digital Rapids Stream,
  214.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  215.         WinWaitActive,  Digital Rapids Stream,
  216.         MouseClick, left,  248,  12
  217.         Sleep, 200
  218.         Send, {ALTDOWN}f{ALTUP}o
  219.         WinWait, Open Local Project...,
  220.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  221.         WinWaitActive, Open Local Project...,
  222.         Sleep, 200
  223.         Send, pal{SHIFTDOWN}-{SHIFTUP}l-r{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}l-ltc{SHIFTDOWN}-{SHIFTUP}simultaneous.prj{ENTER}
  224.     }
  225.     Else If ( A_GuiControl = "myButton07" )
  226.     {
  227.         WinWait, Digital Rapids Stream,
  228.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  229.         WinWaitActive,  Digital Rapids Stream,
  230.         MouseClick, left,  248,  12
  231.         Sleep, 200
  232.         Send, {ALTDOWN}f{ALTUP}o
  233.         WinWait, Open Local Project...,
  234.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  235.         WinWaitActive, Open Local Project...,
  236.         Sleep, 200
  237.         Send, ntsc{SHIFTDOWN}-{SHIFTUP}ndf{SHIFTDOWN}-{SHIFTUP}3-4{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  238.     }
  239.  
  240.     Else If ( A_GuiControl = "myButton08" )
  241.     {
  242.         WinWait, Digital Rapids Stream,
  243.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  244.         WinWaitActive,  Digital Rapids Stream,
  245.         MouseClick, left,  248,  12
  246.         Send, {ALTDOWN}f{ALTUP}o
  247.         WinWait, Open Local Project...,
  248.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  249.         WinWaitActive, Open Local Project...,
  250.         Sleep, 200
  251.         Send, ntsc{SHIFTDOWN}-{SHIFTUP}df{SHIFTDOWN}-{SHIFTUP}3-4{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  252.     }
  253.     Else If ( A_GuiControl = "myButton09" )
  254.     {
  255.         WinWait, Digital Rapids Stream,
  256.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  257.         WinWaitActive,  Digital Rapids Stream,
  258.         MouseClick, left,  248,  12
  259.         Sleep, 200
  260.         Send, {ALTDOWN}f{ALTUP}o
  261.         WinWait, Open Local Project...,
  262.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  263.         WinWaitActive, Open Local Project...,
  264.         Sleep, 200
  265.         Send, pal{SHIFTDOWN}-{SHIFTUP}3-4{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  266.     }
  267.     Else If ( A_GuiControl = "myButton10" )
  268.     {
  269.         ; Do other stuff here.
  270.         MsgBox, You clicked "Future Button 1".
  271.     }
  272.     Else If ( A_GuiControl = "myButton11" )
  273.     {
  274.         ; Do other stuff here.
  275.         MsgBox, You clicked "Future Button 2".
  276.     }
  277.     Else If ( A_GuiControl = "myButton12" )
  278.     {
  279.         ; Do other stuff here.
  280.         MsgBox, You clicked "Future Button 3".
  281.     }
  282.     Else If ( A_GuiControl = "myButton13" )
  283.     {
  284.         ; Do other stuff here.
  285.         MsgBox, You clicked "Future Button 4".
  286.     }
  287.     Else If ( A_GuiControl = "myButton14" )
  288.     {
  289.         ; Do other stuff here.
  290.         MsgBox, You clicked "Future Button 5".
  291.     }
  292.     Else If ( A_GuiControl = "myButton15" )
  293.     {
  294.         ; Do other stuff here.
  295.         MsgBox, You clicked "Future Button 6".
  296.     }
  297.     Else If ( A_GuiControl = "myButton16" )
  298.     {
  299.         WinWait, Digital Rapids Stream,
  300.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  301.         WinWaitActive,  Digital Rapids Stream,
  302.         MouseClick, left,  248,  12
  303.         Sleep, 100
  304.         Send, {ALTDOWN}{ALTUP}op
  305.         WinWait, Preferences,
  306.         IfWinNotActive, Preferences, , WinActivate, Preferences,
  307.         WinWaitActive, Preferences,
  308.         MouseClick, left,  105,  98
  309.         Sleep, 100
  310.         MouseClick, left,  392,  58
  311.         Sleep, 200
  312.         Send {Up}
  313.         Sleep, 100
  314.         Send, {ENTER}
  315.         Sleep, 100
  316.         Send, {ENTER}
  317.     }
  318.     Else If ( A_GuiControl = "myButton17" )
  319.     {
  320.         WinWait, Digital Rapids Stream,
  321.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  322.         WinWaitActive,  Digital Rapids Stream,
  323.         MouseClick, left,  248,  12
  324.         Sleep, 100
  325.         MouseClick, left,  248,  12
  326.         Sleep, 100
  327.         Send, {ALTDOWN}{ALTUP}op
  328.         WinWait, Preferences,
  329.         IfWinNotActive, Preferences, , WinActivate, Preferences,
  330.         WinWaitActive, Preferences,
  331.         MouseClick, left,  105,  98
  332.         Sleep, 100
  333.         MouseClick, left,  392,  58
  334.         Sleep, 200
  335.         Send {Down}
  336.         Sleep, 100
  337.         Send, {ENTER}
  338.         Sleep, 100
  339.         Send, {ENTER}
  340.     }
  341. }
  342.  
  343. #n::
  344. {
  345.     WinWait, Digital Rapids Stream,
  346.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  347.     WinWaitActive,  Digital Rapids Stream,
  348.     MouseClick, left,  248,  12
  349.     Sleep, 100
  350.     Send, {ALTDOWN}{ALTUP}op
  351.     WinWait, Preferences,
  352.     IfWinNotActive, Preferences, , WinActivate, Preferences,
  353.     WinWaitActive, Preferences,
  354.     MouseClick, left,  105,  98
  355.     Sleep, 100
  356.     MouseClick, left,  392,  58
  357.     Sleep, 200
  358.     Send {Up}
  359.     Sleep, 100
  360.     Send, {ENTER}
  361.     Sleep, 100
  362.     Send, {ENTER}
  363. }
  364.  
  365. #p::
  366. {
  367.     WinWait, Digital Rapids Stream,
  368.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  369.     WinWaitActive,  Digital Rapids Stream,
  370.     MouseClick, left,  248,  12
  371.     Sleep, 100
  372.     MouseClick, left,  248,  12
  373.     Sleep, 100
  374.     Send, {ALTDOWN}{ALTUP}op
  375.     WinWait, Preferences,
  376.     IfWinNotActive, Preferences, , WinActivate, Preferences,
  377.     WinWaitActive, Preferences,
  378.     MouseClick, left,  105,  98
  379.     Sleep, 100
  380.     MouseClick, left,  392,  58
  381.     Sleep, 200
  382.     Send {Down}
  383.     Sleep, 100
  384.     Send, {ENTER}
  385.     Sleep, 100
  386.     Send, {ENTER}
  387. }
  388.  
  389. !numpad0::
  390. {
  391.     MouseClick, left,  710,  460
  392.     Sleep, 100
  393.     WinWait, Ingest Upload Verification Page - Mozilla Firefox,
  394.     IfWinNotActive, Ingest Upload Verification Page - Mozilla Firefox, , WinActivate, Ingest Upload Verification Page - Mozilla Firefox,
  395.     WinWaitActive, Ingest Upload Verification Page - Mozilla Firefox,
  396.     Sleep, 100
  397.     MouseClick, left,  711,  253
  398.     Sleep, 100
  399.     WinWait, Ingest Upload Sucess Home Page - Mozilla Firefox,
  400.     IfWinNotActive, Ingest Upload Sucess Home Page - Mozilla Firefox, , WinActivate, Ingest Upload Sucess Home Page - Mozilla Firefox,
  401.     WinWaitActive, Ingest Upload Sucess Home Page - Mozilla Firefox,
  402.     Sleep, 100
  403.     MouseClick, left,  713,  405
  404.     Sleep, 100
  405.     MouseClick, left,  713,  370
  406. }
  407.  
  408. :*:aspera::
  409. {
  410.     Run, C:\Program Files\Aspera\Aspera Scp\bin\asperacopy.exe
  411.     WinWait, Aspera File Transfer,
  412.     IfWinNotActive, Aspera File Transfer, , WinActivate, Aspera File Transfer,
  413.     WinWaitActive, Aspera File Transfer,
  414.     MouseClick, left,  491,  131
  415.     Sleep, 100
  416.     MouseClick, left,  794,  233
  417.     Sleep, 100
  418.     Send, {ALTDOWN}{SPACE}x{ALTUP}{ALTDOWN}{ALTUP}{RIGHT}{RIGHT}{DOWN}{DOWN}{DOWN}{DOWN}{DOWN}{DOWN}{DOWN}{ENTER}
  419.     MouseClick, left,  390,  116
  420.     Sleep, 100
  421. }
  422.  
  423. #1::
  424. {
  425.     WinWait, Digital Rapids Stream,
  426.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  427.     WinWaitActive,  Digital Rapids Stream,
  428.     MouseClick, left,  248,  12
  429.     Sleep, 200
  430.     Send, {ALTDOWN}f{ALTUP}o
  431.     WinWait, Open Local Project...,
  432.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  433.     WinWaitActive, Open Local Project...,
  434.     Sleep, 200
  435.     Send, ntsc{SHIFTDOWN}-{SHIFTUP}ndf{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  436. }
  437.  
  438. #2::
  439. {
  440.     WinWait, Digital Rapids Stream,
  441.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  442.     WinWaitActive,  Digital Rapids Stream,
  443.     MouseClick, left,  248,  12
  444.     Sleep, 200
  445.     Send, {ALTDOWN}f{ALTUP}o
  446.     WinWait, Open Local Project...,
  447.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  448.     WinWaitActive, Open Local Project...,
  449.     Sleep, 200
  450.     Send, ntsc{SHIFTDOWN}-{SHIFTUP}df{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  451. }
  452.  
  453. #3::
  454. {
  455.     WinWait, Digital Rapids Stream,
  456.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  457.     WinWaitActive,  Digital Rapids Stream,
  458.     MouseClick, left,  248,  12
  459.     Sleep, 200
  460.     Send, {ALTDOWN}f{ALTUP}o
  461.     WinWait, Open Local Project...,
  462.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  463.     WinWaitActive, Open Local Project...,
  464.     Sleep, 200
  465.     Send, pal{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  466. }
  467.  
  468. #4::
  469. {
  470.     WinWait, Digital Rapids Stream,
  471.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  472.     WinWaitActive,  Digital Rapids Stream,
  473.     MouseClick, left,  248,  12
  474.     Sleep, 200
  475.     Send, {ALTDOWN}f{ALTUP}o
  476.     WinWait, Open Local Project...,
  477.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  478.     WinWaitActive, Open Local Project...,
  479.     Sleep, 200
  480.     Send, ntsc{SHIFTDOWN}-{SHIFTUP}ndf{SHIFTDOWN}-{SHIFTUP}l-r{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}l-ltc{SHIFTDOWN}-{SHIFTUP}simultaneous.prj{ENTER}
  481. }
  482.  
  483. #5::
  484. {
  485.     WinWait, Digital Rapids Stream,
  486.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  487.     WinWaitActive,  Digital Rapids Stream,
  488.     MouseClick, left,  248,  12
  489.     Sleep, 200
  490.     Send, {ALTDOWN}f{ALTUP}o
  491.     WinWait, Open Local Project...,
  492.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  493.     WinWaitActive, Open Local Project...,
  494.     Sleep, 200
  495.     Send, ntsc{SHIFTDOWN}-{SHIFTUP}df{SHIFTDOWN}-{SHIFTUP}l-r{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}l-ltc{SHIFTDOWN}-{SHIFTUP}simultaneous.prj{ENTER}
  496. }
  497.  
  498. #6::
  499. {   WinWait, Digital Rapids Stream,
  500.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  501.     WinWaitActive,  Digital Rapids Stream,
  502.     MouseClick, left,  248,  12
  503.     Sleep, 200
  504.     Send, {ALTDOWN}f{ALTUP}o
  505.     WinWait, Open Local Project...,
  506.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  507.     WinWaitActive, Open Local Project...,
  508.     Sleep, 200
  509.     Send, pal{SHIFTDOWN}-{SHIFTUP}l-r{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}l-ltc{SHIFTDOWN}-{SHIFTUP}simultaneous.prj{ENTER}
  510. }
  511.  
  512. #7::
  513. {
  514.     WinWait, Digital Rapids Stream,
  515.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  516.     WinWaitActive,  Digital Rapids Stream,
  517.     MouseClick, left,  248,  12
  518.     Sleep, 200
  519.     Send, {ALTDOWN}f{ALTUP}o
  520.     WinWait, Open Local Project...,
  521.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  522.     WinWaitActive, Open Local Project...,
  523.     Sleep, 200
  524.     Send, ntsc{SHIFTDOWN}-{SHIFTUP}ndf{SHIFTDOWN}-{SHIFTUP}3-4{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  525. }
  526.  
  527. #8::
  528. {
  529.     WinWait, Digital Rapids Stream,
  530.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  531.     WinWaitActive,  Digital Rapids Stream,
  532.     MouseClick, left,  248,  12
  533.     Send, {ALTDOWN}f{ALTUP}o
  534.     WinWait, Open Local Project...,
  535.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  536.     WinWaitActive, Open Local Project...,
  537.     Sleep, 200
  538.     Send, ntsc{SHIFTDOWN}-{SHIFTUP}df{SHIFTDOWN}-{SHIFTUP}3-4{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  539. }
  540.  
  541. #9::
  542. {
  543.     WinWait, Digital Rapids Stream,
  544.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  545.     WinWaitActive,  Digital Rapids Stream,
  546.     MouseClick, left,  248,  12
  547.     Sleep, 200
  548.     Send, {ALTDOWN}f{ALTUP}o
  549.     WinWait, Open Local Project...,
  550.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  551.     WinWaitActive, Open Local Project...,
  552.     Sleep, 200
  553.     Send, pal{SHIFTDOWN}-{SHIFTUP}3-4{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  554. }
  555.  
  556. ; EOF

May I assume this overlay is working well and helping out at your workplace?
4916
Post New Requests Here / Re: [Compleet]: Auto replace icon in captionbar & taskbar
« Last post by skwire on September 29, 2009, 08:59 AM »
Could you take a look at the changed taskbar button behavior: in many cases you need to click it twice until the window minimizes. And the right click menu is missing.
Unfortunately, that's a side-effect of getting rid of the buttons.  The 0x80000 style is WM_SYSMENU.  So, basically, the code removes the window's system menu (the one you normally see when right-clicking or using the alt-space hotkey).

Honestly, for the amount of customisation you want to do, you may want to look into alternate Windows shell.  I, for instance, run a branch of the bb4Win shell called bbClean.  Using the bbLeanSkin plugin, you can specify which titlebar buttons to show (or none), whether or not icons show in the titlebar, etc.  Also, you can make the taskbar and tray icons greyscale, colour-muted, and on and on.  Take a look at the screenshots at http://www.boxshots.org for ideas.  You can see a screenshot of what my desktop typically looks like in an earlier post in this thread: https://www.donation....msg175110#msg175110
4917
Post New Requests Here / Re: [Compleet]: Auto replace icon in captionbar & taskbar
« Last post by skwire on September 29, 2009, 06:46 AM »
This version checks the system for titlebar height so it should work better with your system.  It also attempts to keep the titlebar icon hidden when restoring the min/max/close buttons.  It also does away with the message box at the start and the tray icon.

As for your other requests, I really don't want to develop this app any further in all these other directions.  There are so many variables at play here and so many different system configurations that I simply have no desire to get knee-deep in trying to troubleshoot/fix/hack/whatever.  Feel free to study the code and take it further on your own.  There really isn't a whole lot of complex code in this script.  Here you go:

Code: AutoIt [Select]
  1. /*
  2. Author:  Jody Holmes (Skwire)
  3. Date:    2009-08-23
  4. Contact: skwire@skwire.net
  5.  
  6.  
  7. v0.0.0.3 - 2009-09-29
  8.     + Added optional showing/hiding of titlebar min/max/close buttons.
  9.  
  10. v0.0.0.2 - 2009-08-28
  11.     * Hook now fires on two additional messages.
  12.         HSHELL_REDRAW
  13.         HSHELL_RUDEAPPACTIVATED
  14.  
  15. v0.0.0.1 - 2009-08-23
  16.     + Initial build.
  17.  
  18. */
  19.  
  20. #NoTrayIcon
  21. #Persistent
  22. #NoEnv
  23. #SingleInstance, Force
  24. SetWorkingDir, %A_ScriptDir%
  25. DetectHiddenWindows, Off
  26. OnExit, Cleanup
  27. SysGet, TBarHeight, 4
  28.  
  29. Menu, Tray, NoStandard
  30. Menu, Tray, Add, Exit, Cleanup
  31.  
  32. Gui +LastFound
  33. hWnd := WinExist()
  34.  
  35. ; Hook the shell.
  36. ; http://www.autohotkey.com/forum/viewtopic.php?p=123323#123323
  37. DllCall( "RegisterShellHookWindow", UInt, hWnd )
  38. MsgNum := DllCall( "RegisterWindowMessage", Str, "SHELLHOOK" )
  39. OnMessage( MsgNum, "ShellMessage" )
  40.  
  41. ; Create a blank cursor for use instead of a blank icon file.
  42. ; http://www.autohotkey.com/forum/viewtopic.php?p=220113#220113
  43. VarSetCapacity( AndMask, 32*4, 0xFF ), VarSetCapacity( XorMask, 32*4, 0 )
  44. hIcon := DllCall( "CreateCursor", Uint, 0, Int, 0, Int, 0, Int, 32, Int, 32, Uint, &AndMask, Uint, &XorMask )
  45.  
  46. ; Initial loop to blank out existing windows.
  47. WinGet, s, List
  48. Loop, % s
  49. {
  50.     s := s%A_Index%
  51.     ;SendMessage, 0x80, 0, hIcon, , % "ahk_id " . s
  52. }
  53.  
  54. ; MsgBox, 36, TBarIconBlanker, Would you like to enable the min/max/close buttons tweak as well?
  55. ; IfMsgBox, Yes
  56. ; {
  57. ;     MinMaxCloseOption := 1
  58. ;     SetTimer, WatchCursor, 100
  59. ; }
  60. MinMaxCloseOption := 1
  61. SetTimer, WatchCursor, 100
  62.  
  63. Return ; End of auto-execute section.
  64.  
  65.  
  66. ; ------------------------------------------------------------------------
  67. ; Subroutines ------------------------------------------------------------
  68. ; ------------------------------------------------------------------------
  69.  
  70. Cleanup:
  71. {
  72.     If ( MinMaxCloseOption = 1 ) ; Restore titlebar buttons on close.
  73.     {
  74.         WinGet, s, List
  75.         Loop, % s
  76.         {
  77.             s := s%A_Index%
  78.             WinSet, Style, +0x80000, % "ahk_id " . s ; Restore min/max/close buttons.
  79.         }
  80.     }
  81.     ExitApp
  82. }
  83.  
  84.  
  85. WatchCursor:
  86. {
  87.     MouseGetPos, , yPos, CurrID,
  88.     If ( yPos >= 0 and yPos < ( TBarHeight + 3 ) )
  89.     {
  90.         WinSet, Style, +0x80000, % "ahk_id " . CurrID ; Restore min/max/close buttons.
  91.         SendMessage, 0x80, 0, hIcon, , % "ahk_id " . CurrID ; Blank out titlebar and taskbar icons.
  92.     }
  93.     Else
  94.     {
  95.         WinSet, Style, -0x80000, % "ahk_id " . PrevID ; Get rid of min/max/close buttons.
  96.         WinSet, Style, -0x80000, % "ahk_id " . CurrID ; Get rid of min/max/close buttons.
  97.         SendMessage, 0x80, 0, hIcon, , % "ahk_id " . CurrID ; Blank out titlebar and taskbar icons.
  98.     }
  99. }
  100.  
  101.  
  102. ; ------------------------------------------------------------------------
  103. ; Functions --------------------------------------------------------------
  104. ; ------------------------------------------------------------------------
  105.  
  106. ; Shell hook to blank out windows that are subsequently created.
  107. ShellMessage( wParam, lParam )
  108. {
  109.     Global hIcon, MinMaxCloseOption, PrevID
  110.     If wParam in 1,6,32772
  111.     {
  112.         SendMessage, 0x80, 0, hIcon, , % "ahk_id " . lParam ; Blank out titlebar and taskbar icons.
  113.         If ( MinMaxCloseOption = 1 )
  114.         {
  115.             WinSet, Style, -0x80000, % "ahk_id " . lParam ; Get rid of min/max/close buttons.
  116.         }
  117.     }
  118.     PrevID := lParam
  119. }



4918
Post New Requests Here / Re: [Compleet]: Auto replace icon in captionbar & taskbar
« Last post by skwire on September 29, 2009, 01:10 AM »
Here, try this.  When you start up this version, a message box will popup asking if you want to enable the min/max/close tweak.  If you choose yes, they will be hidden upon each window's creation and they should appear whenever your mouse is in the titlebar area.  It's not perfect but it seems to work fairly well.  Also, this version leaves the tray icon in place so you can exit it.  All min/max/close buttons should be restored on exit.

Code: AutoIt [Select]
  1. /*
  2. Author:  Jody Holmes (Skwire)
  3. Date:    2009-08-23
  4. Contact: skwire@skwire.net
  5.  
  6.  
  7. v0.0.0.3 - 2009-09-29
  8.     + Added optional showing/hiding of titlebar min/max/close buttons.
  9.  
  10. v0.0.0.2 - 2009-08-28
  11.     * Hook now fires on two additional messages.
  12.         HSHELL_REDRAW
  13.         HSHELL_RUDEAPPACTIVATED
  14.  
  15. v0.0.0.1 - 2009-08-23
  16.     + Initial build.
  17.  
  18. */
  19.  
  20. ;#NoTrayIcon
  21. #Persistent
  22. #NoEnv
  23. #SingleInstance, Force
  24. SetWorkingDir, %A_ScriptDir%
  25. DetectHiddenWindows, Off
  26. OnExit, Cleanup
  27.  
  28. Menu, Tray, NoStandard
  29. Menu, Tray, Add, Exit, Cleanup
  30.  
  31. Gui +LastFound
  32. hWnd := WinExist()
  33.  
  34. ; Hook the shell.
  35. ; http://www.autohotkey.com/forum/viewtopic.php?p=123323#123323
  36. DllCall( "RegisterShellHookWindow", UInt, hWnd )
  37. MsgNum := DllCall( "RegisterWindowMessage", Str, "SHELLHOOK" )
  38. OnMessage( MsgNum, "ShellMessage" )
  39.  
  40. ; Create a blank cursor for use instead of a blank icon file.
  41. ; http://www.autohotkey.com/forum/viewtopic.php?p=220113#220113
  42. VarSetCapacity( AndMask, 32*4, 0xFF ), VarSetCapacity( XorMask, 32*4, 0 )
  43. hIcon := DllCall( "CreateCursor", Uint, 0, Int, 0, Int, 0, Int, 32, Int, 32, Uint, &AndMask, Uint, &XorMask )
  44.  
  45. ; Initial loop to blank out existing windows.
  46. WinGet, s, List
  47. Loop, % s
  48. {
  49.     s := s%A_Index%
  50.     ;SendMessage, 0x80, 0, hIcon, , % "ahk_id " . s
  51. }
  52.  
  53. MsgBox, 36, TBarIconBlanker, Would you like to enable the min/max/close buttons tweak as well?
  54. IfMsgBox, Yes
  55. {
  56.     MinMaxCloseOption := 1
  57.     SetTimer, WatchCursor, 100
  58. }
  59.  
  60. Return ; End of auto-execute section.
  61.  
  62.  
  63. ; ------------------------------------------------------------------------
  64. ; Subroutines ------------------------------------------------------------
  65. ; ------------------------------------------------------------------------
  66.  
  67. Cleanup:
  68. {
  69.     If ( MinMaxCloseOption = 1 ) ; Restore titlebar buttons on close.
  70.     {
  71.         WinGet, s, List
  72.         Loop, % s
  73.         {
  74.             s := s%A_Index%
  75.             WinSet, Style, +0x80000, % "ahk_id " . s ; Restore min/max/close buttons.
  76.         }
  77.     }
  78.     ExitApp
  79. }
  80.  
  81.  
  82. WatchCursor:
  83. {
  84.     MouseGetPos, , yPos, CurrID,
  85.     If ( yPos >= 0 and yPos < 22 )
  86.     {
  87.         WinSet, Style, +0x80000, % "ahk_id " . CurrID ; Restore min/max/close buttons.
  88.     }
  89.     Else
  90.     {
  91.         WinSet, Style, -0x80000, % "ahk_id " . PrevID ; Get rid of min/max/close buttons.
  92.         WinSet, Style, -0x80000, % "ahk_id " . CurrID ; Get rid of min/max/close buttons.
  93.     }
  94. }
  95.  
  96.  
  97. ; ------------------------------------------------------------------------
  98. ; Functions --------------------------------------------------------------
  99. ; ------------------------------------------------------------------------
  100.  
  101. ; Shell hook to blank out windows that are subsequently created.
  102. ShellMessage( wParam, lParam )
  103. {
  104.     Global hIcon, MinMaxCloseOption, PrevID
  105.     If wParam in 1,6,32772
  106.     {
  107.         SendMessage, 0x80, 0, hIcon, , % "ahk_id " . lParam ; Blank out titlebar and taskbar icons.
  108.         If ( MinMaxCloseOption = 1 )
  109.         {
  110.             WinSet, Style, -0x80000, % "ahk_id " . lParam ; Get rid of min/max/close buttons.
  111.         }
  112.     }
  113.     PrevID := lParam
  114. }
4919
Post New Requests Here / Re: [Compleet]: Auto replace icon in captionbar & taskbar
« Last post by skwire on September 28, 2009, 10:54 PM »
Is it possible just to hide them, not remove them?

I suppose one could write code to watch the mouse cursor and, if it was in the titlebar area, set the window style back to +0x80000 to show the buttons again.

Is it possible just to hide some of them, e.g. leaving the close button only?

I don't think so, but I don't know for certain.
4920
Post New Requests Here / Re: [Compleet]: Auto replace icon in captionbar & taskbar
« Last post by skwire on September 28, 2009, 09:01 PM »
I know there's some utility that can hide buttons and other UI elements, but I can't remember what it is. To minimize visual clutter, I'd simply like it to hide every button and only when I'm hovering would they appear.
2) Yes, I can get rid of them.  (It would be just one more line of code in TBarIconBlanker)
I'd appreciate that line. Is it also possible to blank out the My Computer/Internet icon in Explorer's status bar?

Modify the code like this:

; Shell hook to blank out windows that are subsequently created.
ShellMessage( wParam, lParam )
{
    Global hIcon   
    If wParam in 1,6,32772
    {
        SendMessage, 0x80, 0, hIcon, , % "ahk_id " . lParam ; Blank out titlebar and taskbar icons.
        WinSet, Style, -0x80000, % "ahk_id " . lParam       ; Get rid of min/max/close buttons. <<<<<<<<<< Add this line.
    }
}

There's no magical hover effect.  You can set +0x80000 to get the buttons back.
4921
Finished Programs / Re: DONE: Right Click any file and create New Folder by its Name
« Last post by skwire on September 28, 2009, 08:21 PM »
I'm not exactly sure what I did wrong the first time but I saved the zip file to my desktop.  Then I opened the zip file and ran the executable without extracting it to a folder. 

Right, when the app registers the menu entry, it uses the current path.  So, if you move Files2Folder.exe, the entry will still be there in the menu but no functionality will take place.  You must unregister it and then re-register it from its new location (exactly as you did).  Good job.  :D
4922
Finished Programs / Re: DONE: Right Click any file and create New Folder by its Name
« Last post by skwire on September 28, 2009, 08:19 PM »
This is a great idea for a program.  Thanks paarkhi and skwire!  I tried this last night, but nothing showed up in my context menu.  I figured when I rebooted in the morning it'd show up.  I did find the 'Files 2 Folder' entry, but ONLY in the Quick Launch items context menus!  The files on my Desktop didn't have the entry, and trying the context menu with an open Explorer didn't help.

Hmmm...odd.  Are you selecting folders in there as well?  If so, the Files 2 Folder entry won't show up.  It should only show if you have one or more files selected.

At this point I'd like to ask what might prove to make me look stupid, but where are the hidden settings?  I've used a lot of stuff I haven't been shy messing with as far as settings, like Rainlender, Sumarize, etc.  I tried opening Files2Folder.exe in ResHacker, but didn't see them there.  I didn't see a folder in 'Application Data.'  I thought maybe I had to point to the desktop or something, although that really doesn't make any sense.

There are a few hidden settings that you can set up by creating a config.ini file in the same folder as the Files 2 Folder executable.  Here's a sample:

[Settings]
Replace_Chars=1
Chars_To_Replace=-_
Remove_Chars=1
Chars_To_Remove=!@#$%^&(){}[]

Does that help?

I should add my context menus are a bit jazzed up.  I use MMM+, and Folder Guide.  Would that interfere with the registration process?  Also, I hadn't quite read down here far enough to figure out I should've answered Yes when the initial prompt to register appeared.  I said No on the first run, and when I realized my mistake went back and said Yes on the second run.  Like I said, the entry did appear after in one context menu, just not everywhere.
Anyone have any ideas?

I don't use MMM+ or Folder Guide so I don't know if those are messing with things.  I don't think they'd interfere with the registration process which is, basically, just writing a few registry values.
4923
Finished Programs / Re: DONE: Right Click any file and create New Folder by its Name
« Last post by skwire on September 28, 2009, 08:08 PM »
What a fantastic app, skwire!  thanks for coding this! :Thmbsup: :Thmbsup: 8)

You're welcome.   :)

skwire, I followed your instructions and now I'm in business.  Awewsome app! :Thmbsup:

Ah, great to hear.  So, what was the issue?
4924
Post New Requests Here / Re: [Compleet]: Auto replace icon in captionbar & taskbar
« Last post by skwire on September 28, 2009, 07:57 PM »
Is it possible to make a version that blanks only the window icons but leaves the taskbar icons? I'd like to see the icons in the taskbar but not in the corner of the window.
Is it possible to blank out (or replace) the minimize, maximize, close buttons?
Is it possible to blank out (or replace) the icons in the Explorer toolbar, especially the Windows logo on a white background? Or does it require hacking shell?
Is it possible to blank out (or replace) the start button and the << button that displays hidden tray icons?

1) Not that I'm aware of.
2) Yes, I can get rid of them.  (It would be just one more line of code in TBarIconBlanker)
3) Res-hacking would be required for this, I believe.
4) Start button, yes.  The << button, you can get rid of yourself by disabling the "Hide inactive tray icons" option under Taskbar properties.

Is it possible to dim all icons and buttons (by overlaying them with a dark transparent bitmap instead of opaque) - and perhaps unblank (if possible, with fade in) when hovering?
Is it possible to blank out/dim the tray icons?
I use the classic style which isn't actually a visual style. I would need a visual style that looks like classic, one without any bitmaps, because I want one that uses system colors and doesn't impose its own.
Unless I use a visual style, to blank out the min, max, close buttons it would seem I need to hack the font.
Is it possible to remove the lines and + from Explorer's folder tree?
I'd like to be able to remove all icons and bitmaps from the UI, leaving just the button rectangles and text (if there originally was) for a command line-like visual experience, no bright spots or colors anywhere, just black and dark gray text and rectangles.

If you're asking if TBarIconBlanker can do this, I think it would be WAY out of scope for this simple app.  Your questions might be better suited to a dedicated windows customisation site.
4925
Finished Programs / Re: DONE: Right Click any file and create New Folder by its Name
« Last post by skwire on September 28, 2009, 09:40 AM »
Apologies, I got confused with some of my other apps.  Files 2 Folder has no GUI so, when you run the exe for the first time, it asks you if you want to register the shell extension context menu entry.  It also creates a shortcut in the same folder that's named "Files 2 Folder - Unregister shell extension.lnk" if you would like to get rid of the context menu entry.  As for your issue, you didn't move the executable after registering the shell extension, did you?
Pages: prev1 ... 192 193 194 195 196 [197] 198 199 200 201 202 ... 222next