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:18 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 ... 194 195 196 197 198 [199] 200 201 202 203 204 ... 222next
4951
Is this harder than I think?

Yes and no.  There are a lot of variables at play here.  Off the top of my head:

1) Does everybody use the same network drive i.e. there is only one network drive?
2) Are all XLS files saved to the network drive?  What about XLS files saved on a user's local computer?
3) How to handle version history of the copied XLS files, if any?
4) How to handle filename collisions?  Does each user get their own subfolder in the destination folder, etc.?
5) ...

There is potential for a large amount of complexity here depending on what you're after.  I suppose what I'm getting at is that you're going to need to provide a lot more in the way of specifics.
4952
So, is everything working, as desired, to this point?  Hotkeys, buttons, etc.
4953
The hotkeys work for me.  I did clean up your formatting a bit; sorry for imposing my braces and indentation habits upon you.  Also, you only need "SetTitleMatchMode, 2" once in the script (at the top, unless you're changing it later for some reason).  As for hiding the overlay, you can do this easily with a toggle-type of hotkey.  I added an F1 toggle hotkey for you but you could change it to whatever you like.  Here's the toggle code (it's also included in the full script below):

Code: AutoIt [Select]
  1. F1:: ; Toggle the GUI.
  2. {
  3.     If ! ( Toggle_Gui )
  4.     {
  5.         Gui, 3: Show, Hide
  6.         Gui, 1: Show, Hide
  7.     }
  8.     Else
  9.     {
  10.         Gui, 3: Show
  11.         Gui, 1: Show
  12.     }
  13.     Toggle_Gui := !Toggle_Gui
  14. }


Code: AutoIt [Select]
  1. SetTitleMatchMode, 2
  2. DetectHiddenWindows, On
  3.  
  4. Header_Text3 := "EVDCAP 8"
  5. Font_Size3   := "56"
  6. Font_Style3  := "Lucida Sans Unicode"
  7. Font_Color3  := "Black"
  8.  
  9. Gui, 3: +Toolwindow -Caption +Lastfound +AlwaysOnTop
  10. Gui, 3: +LastFound
  11. Gui, 3: Margin, 0, 0
  12. Gui, 3: Font, s%Font_Size3% c%Font_Color3%, % Font_Style3
  13. Gui, 3: Add, Text, xm+457 ym+2 0x200 vmyText, % Header_Text3
  14. Gui, 3: Font
  15. Gui, 3: Color, EEAA99
  16. Winset, Transcolor, EEAA99
  17. Gui, 3: Show, x0 y0 w1280 h768, Overlay
  18.  
  19. Header_Text := "EVDCAP 8"
  20. Font_Size   := "56"
  21. Font_Style  := "Lucida Sans Unicode"
  22. Font_Color  := "Red"
  23.  
  24. Gui, 1: +Toolwindow -Caption +Lastfound +AlwaysOnTop
  25. Gui, 1: +LastFound
  26. Gui, 1: Margin, 0, 0
  27. Gui, 1: Font, s%Font_Size% c%Font_Color%, % Font_Style
  28. Gui, 1: Add, Text, xm+460 ym+0 0x200 vmyText, % Header_Text
  29. Gui, 1: Font
  30. Gui, 1: Color, EEAA99
  31. Winset, Transcolor, EEAA99
  32. Gui, 1: Add, Button, xm+40  ym+125 w145 h25 vmyButton01 gonClick, NDF + LTC mp2 (#1)
  33. Gui, 1: Add, Button, xm+40  ym+150 w145 h25 vmyButton02 gonClick, DF + LTC mp2 (#2)
  34. Gui, 1: Add, Button, xm+40  ym+175 w145 h25 vmyButton03 gonClick, PAL + LTC mp2 (#3)
  35. Gui, 1: Add, Button, xm+40  ym+220 w145 h25 vmyButton04 gonClick, NDF L-R + L-LTC simo (#4)
  36. Gui, 1: Add, Button, xm+40  ym+245 w145 h25 vmyButton05 gonClick, DF L-R + L-LTC simo (#5)
  37. Gui, 1: Add, Button, xm+40  ym+270 w145 h25 vmyButton06 gonClick, PAL L-R + L-LTC simo (#6)
  38. Gui, 1: Add, Button, xm+230  ym+125 w145 h25 vmyButton07 gonClick, NDF 3-4 + 3-LTC mp2 (#7)
  39. Gui, 1: Add, Button, xm+230  ym+150 w145 h25 vmyButton08 gonClick, DF 3-4 + 3-LTC mp2 (#8)
  40. Gui, 1: Add, Button, xm+230  ym+175 w145 h25 vmyButton09 gonClick, PAL 3-4 + 3-LTC mp2 (#9)
  41. Gui, 1: Add, Button, xm+230  ym+220 w145 h25 vmyButton10 gonClick, Future Button 1
  42. Gui, 1: Add, Button, xm+230  ym+245 w145 h25 vmyButton11 gonClick, Future Button 2
  43. Gui, 1: Add, Button, xm+230  ym+270 w145 h25 vmyButton12 gonClick, Future Button 3
  44. Gui, 1: Add, Button, xm+915  ym+125 w145 h25 vmyButton13 gonClick, Future Button 4
  45. Gui, 1: Add, Button, xm+915  ym+150 w145 h25 vmyButton14 gonClick, Future Button 5
  46. Gui, 1: Add, Button, xm+915  ym+175 w145 h25 vmyButton15 gonClick, Future Button 6
  47. Gui, 1: Add, Button, xm+330  ym+705 w120 h25 vmyButton16 gonClick, Switch to NTSC (#n)
  48. Gui, 1: Add, Button, xm+450  ym+705 w120 h25 vmyButton17 gonClick, Switch to PAL (#p)
  49. Gui, 1: Show, x0 y0 w1280 h768, Overlay
  50.  
  51.  
  52. F1:: ; Toggle the GUI.
  53. {
  54.     If ! ( Toggle_Gui )
  55.     {
  56.         Gui, 3: Show, Hide
  57.         Gui, 1: Show, Hide
  58.     }
  59.     Else
  60.     {
  61.         Gui, 3: Show
  62.         Gui, 1: Show
  63.     }
  64.     Toggle_Gui := !Toggle_Gui
  65. }
  66.  
  67. onClick:
  68. {
  69.     Gui, 2: Submit, NoHide
  70.     If ( A_GuiControl = "myButton01" )
  71.     {
  72.         WinWait, Digital Rapids Stream,
  73.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  74.         WinWaitActive,  Digital Rapids Stream,
  75.         MouseClick, left,  248,  12
  76.         Sleep, 200
  77.         Send, {ALTDOWN}f{ALTUP}o
  78.         WinWait, Open Local Project...,
  79.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  80.         WinWaitActive, Open Local Project...,
  81.         Sleep, 200
  82.         Send, ntsc{SHIFTDOWN}-{SHIFTUP}ndf{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  83.     }
  84.     Else If ( A_GuiControl = "myButton02" )
  85.     {
  86.         WinWait, Digital Rapids Stream,
  87.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  88.         WinWaitActive,  Digital Rapids Stream,
  89.         MouseClick, left,  248,  12
  90.         Sleep, 200
  91.         Send, {ALTDOWN}f{ALTUP}o
  92.         WinWait, Open Local Project...,
  93.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  94.         WinWaitActive, Open Local Project...,
  95.         Sleep, 200
  96.         Send, ntsc{SHIFTDOWN}-{SHIFTUP}df{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  97.     }
  98.     Else If ( A_GuiControl = "myButton03" )
  99.     {
  100.         WinWait, Digital Rapids Stream,
  101.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  102.         WinWaitActive,  Digital Rapids Stream,
  103.         MouseClick, left,  248,  12
  104.         Sleep, 200
  105.         Send, {ALTDOWN}f{ALTUP}o
  106.         WinWait, Open Local Project...,
  107.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  108.         WinWaitActive, Open Local Project...,
  109.         Sleep, 200
  110.         Send, pal{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  111.     }
  112.     Else If ( A_GuiControl = "myButton04" )
  113.     {
  114.         WinWait, Digital Rapids Stream,
  115.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  116.         WinWaitActive,  Digital Rapids Stream,
  117.         MouseClick, left,  248,  12
  118.         Sleep, 200
  119.         Send, {ALTDOWN}f{ALTUP}o
  120.         WinWait, Open Local Project...,
  121.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  122.         WinWaitActive, Open Local Project...,
  123.         Sleep, 200
  124.         Send, ntsc{SHIFTDOWN}-{SHIFTUP}ndf{SHIFTDOWN}-{SHIFTUP}l-r{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}l-ltc{SHIFTDOWN}-{SHIFTUP}simultaneous.prj{ENTER}
  125.     }
  126.     Else If ( A_GuiControl = "myButton05" )
  127.     {
  128.         WinWait, Digital Rapids Stream,
  129.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  130.         WinWaitActive,  Digital Rapids Stream,
  131.         MouseClick, left,  248,  12
  132.         Sleep, 200
  133.         Send, {ALTDOWN}f{ALTUP}o
  134.         WinWait, Open Local Project...,
  135.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  136.         WinWaitActive, Open Local Project...,
  137.         Sleep, 200
  138.         Send, ntsc{SHIFTDOWN}-{SHIFTUP}df{SHIFTDOWN}-{SHIFTUP}l-r{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}l-ltc{SHIFTDOWN}-{SHIFTUP}simultaneous.prj{ENTER}
  139.     }
  140.     Else If ( A_GuiControl = "myButton06" )
  141.     {
  142.         WinWait, Digital Rapids Stream,
  143.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  144.         WinWaitActive,  Digital Rapids Stream,
  145.         MouseClick, left,  248,  12
  146.         Sleep, 200
  147.         Send, {ALTDOWN}f{ALTUP}o
  148.         WinWait, Open Local Project...,
  149.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  150.         WinWaitActive, Open Local Project...,
  151.         Sleep, 200
  152.         Send, pal{SHIFTDOWN}-{SHIFTUP}l-r{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}l-ltc{SHIFTDOWN}-{SHIFTUP}simultaneous.prj{ENTER}
  153.     }
  154.     Else If ( A_GuiControl = "myButton07" )
  155.     {
  156.         WinWait, Digital Rapids Stream,
  157.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  158.         WinWaitActive,  Digital Rapids Stream,
  159.         MouseClick, left,  248,  12
  160.         Sleep, 200
  161.         Send, {ALTDOWN}f{ALTUP}o
  162.         WinWait, Open Local Project...,
  163.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  164.         WinWaitActive, Open Local Project...,
  165.         Sleep, 200
  166.         Send, ntsc{SHIFTDOWN}-{SHIFTUP}ndf{SHIFTDOWN}-{SHIFTUP}3-4{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  167.     }
  168.  
  169.     Else If ( A_GuiControl = "myButton08" )
  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.         Send, {ALTDOWN}f{ALTUP}o
  176.         WinWait, Open Local Project...,
  177.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  178.         WinWaitActive, Open Local Project...,
  179.         Sleep, 200
  180.         Send, ntsc{SHIFTDOWN}-{SHIFTUP}df{SHIFTDOWN}-{SHIFTUP}3-4{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  181.     }
  182.     Else If ( A_GuiControl = "myButton09" )
  183.     {
  184.         WinWait, Digital Rapids Stream,
  185.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  186.         WinWaitActive,  Digital Rapids Stream,
  187.         MouseClick, left,  248,  12
  188.         Sleep, 200
  189.         Send, {ALTDOWN}f{ALTUP}o
  190.         WinWait, Open Local Project...,
  191.         IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  192.         WinWaitActive, Open Local Project...,
  193.         Sleep, 200
  194.         Send, pal{SHIFTDOWN}-{SHIFTUP}3-4{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  195.     }
  196.     Else If ( A_GuiControl = "myButton10" )
  197.     {
  198.         ; Do other stuff here.
  199.         MsgBox, You clicked "Future Button 1".
  200.     }
  201.     Else If ( A_GuiControl = "myButton11" )
  202.     {
  203.         ; Do other stuff here.
  204.         MsgBox, You clicked "Future Button 2".
  205.     }
  206.     Else If ( A_GuiControl = "myButton12" )
  207.     {
  208.         ; Do other stuff here.
  209.         MsgBox, You clicked "Future Button 3".
  210.     }
  211.     Else If ( A_GuiControl = "myButton13" )
  212.     {
  213.         ; Do other stuff here.
  214.         MsgBox, You clicked "Future Button 4".
  215.     }
  216.     Else If ( A_GuiControl = "myButton14" )
  217.     {
  218.         ; Do other stuff here.
  219.         MsgBox, You clicked "Future Button 5".
  220.     }
  221.     Else If ( A_GuiControl = "myButton15" )
  222.     {
  223.         ; Do other stuff here.
  224.         MsgBox, You clicked "Future Button 6".
  225.     }
  226.     Else If ( A_GuiControl = "myButton16" )
  227.     {
  228.         WinWait, Digital Rapids Stream,
  229.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  230.         WinWaitActive,  Digital Rapids Stream,
  231.         MouseClick, left,  248,  12
  232.         Sleep, 100
  233.         Send, {ALTDOWN}{ALTUP}op
  234.         WinWait, Preferences,
  235.         IfWinNotActive, Preferences, , WinActivate, Preferences,
  236.         WinWaitActive, Preferences,
  237.         MouseClick, left,  105,  98
  238.         Sleep, 100
  239.         MouseClick, left,  392,  58
  240.         Sleep, 200
  241.         Send {Up}
  242.         Sleep, 100
  243.         Send, {ENTER}
  244.         Sleep, 100
  245.         Send, {ENTER}
  246.     }
  247.     Else If ( A_GuiControl = "myButton17" )
  248.     {
  249.         WinWait, Digital Rapids Stream,
  250.         IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  251.         WinWaitActive,  Digital Rapids Stream,
  252.         MouseClick, left,  248,  12
  253.         Sleep, 100
  254.         MouseClick, left,  248,  12
  255.         Sleep, 100
  256.         Send, {ALTDOWN}{ALTUP}op
  257.         WinWait, Preferences,
  258.         IfWinNotActive, Preferences, , WinActivate, Preferences,
  259.         WinWaitActive, Preferences,
  260.         MouseClick, left,  105,  98
  261.         Sleep, 100
  262.         MouseClick, left,  392,  58
  263.         Sleep, 200
  264.         Send {Down}
  265.         Sleep, 100
  266.         Send, {ENTER}
  267.         Sleep, 100
  268.         Send, {ENTER}
  269.     }
  270. }
  271.  
  272. #n::
  273. {
  274.     WinWait, Digital Rapids Stream,
  275.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  276.     WinWaitActive,  Digital Rapids Stream,
  277.     MouseClick, left,  248,  12
  278.     Sleep, 100
  279.     Send, {ALTDOWN}{ALTUP}op
  280.     WinWait, Preferences,
  281.     IfWinNotActive, Preferences, , WinActivate, Preferences,
  282.     WinWaitActive, Preferences,
  283.     MouseClick, left,  105,  98
  284.     Sleep, 100
  285.     MouseClick, left,  392,  58
  286.     Sleep, 200
  287.     Send {Up}
  288.     Sleep, 100
  289.     Send, {ENTER}
  290.     Sleep, 100
  291.     Send, {ENTER}
  292. }
  293.  
  294. #p::
  295. {
  296.     WinWait, Digital Rapids Stream,
  297.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  298.     WinWaitActive,  Digital Rapids Stream,
  299.     MouseClick, left,  248,  12
  300.     Sleep, 100
  301.     MouseClick, left,  248,  12
  302.     Sleep, 100
  303.     Send, {ALTDOWN}{ALTUP}op
  304.     WinWait, Preferences,
  305.     IfWinNotActive, Preferences, , WinActivate, Preferences,
  306.     WinWaitActive, Preferences,
  307.     MouseClick, left,  105,  98
  308.     Sleep, 100
  309.     MouseClick, left,  392,  58
  310.     Sleep, 200
  311.     Send {Down}
  312.     Sleep, 100
  313.     Send, {ENTER}
  314.     Sleep, 100
  315.     Send, {ENTER}
  316. }
  317.  
  318. !numpad0::
  319. {
  320.     MouseClick, left,  710,  460
  321.     Sleep, 100
  322.     WinWait, Ingest Upload Verification Page - Mozilla Firefox,
  323.     IfWinNotActive, Ingest Upload Verification Page - Mozilla Firefox, , WinActivate, Ingest Upload Verification Page - Mozilla Firefox,
  324.     WinWaitActive, Ingest Upload Verification Page - Mozilla Firefox,
  325.     Sleep, 100
  326.     MouseClick, left,  711,  253
  327.     Sleep, 100
  328.     WinWait, Ingest Upload Sucess Home Page - Mozilla Firefox,
  329.     IfWinNotActive, Ingest Upload Sucess Home Page - Mozilla Firefox, , WinActivate, Ingest Upload Sucess Home Page - Mozilla Firefox,
  330.     WinWaitActive, Ingest Upload Sucess Home Page - Mozilla Firefox,
  331.     Sleep, 100
  332.     MouseClick, left,  713,  405
  333.     Sleep, 100
  334.     MouseClick, left,  713,  370
  335. }
  336.  
  337. :*:aspera::
  338. {
  339.     Run, C:\Program Files\Aspera\Aspera Scp\bin\asperacopy.exe
  340.     WinWait, Aspera File Transfer,
  341.     IfWinNotActive, Aspera File Transfer, , WinActivate, Aspera File Transfer,
  342.     WinWaitActive, Aspera File Transfer,
  343.     MouseClick, left,  491,  131
  344.     Sleep, 100
  345.     MouseClick, left,  794,  233
  346.     Sleep, 100
  347.     Send, {ALTDOWN}{SPACE}x{ALTUP}{ALTDOWN}{ALTUP}{RIGHT}{RIGHT}{DOWN}{DOWN}{DOWN}{DOWN}{DOWN}{DOWN}{DOWN}{ENTER}
  348.     MouseClick, left,  390,  116
  349.     Sleep, 100
  350. }
  351.  
  352. #1::
  353. {
  354.     WinWait, Digital Rapids Stream,
  355.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  356.     WinWaitActive,  Digital Rapids Stream,
  357.     MouseClick, left,  248,  12
  358.     Sleep, 200
  359.     Send, {ALTDOWN}f{ALTUP}o
  360.     WinWait, Open Local Project...,
  361.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  362.     WinWaitActive, Open Local Project...,
  363.     Sleep, 200
  364.     Send, ntsc{SHIFTDOWN}-{SHIFTUP}ndf{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  365. }
  366.  
  367. #2::
  368. {
  369.     WinWait, Digital Rapids Stream,
  370.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  371.     WinWaitActive,  Digital Rapids Stream,
  372.     MouseClick, left,  248,  12
  373.     Sleep, 200
  374.     Send, {ALTDOWN}f{ALTUP}o
  375.     WinWait, Open Local Project...,
  376.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  377.     WinWaitActive, Open Local Project...,
  378.     Sleep, 200
  379.     Send, ntsc{SHIFTDOWN}-{SHIFTUP}df{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  380. }
  381.  
  382. #3::
  383. {
  384.     WinWait, Digital Rapids Stream,
  385.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  386.     WinWaitActive,  Digital Rapids Stream,
  387.     MouseClick, left,  248,  12
  388.     Sleep, 200
  389.     Send, {ALTDOWN}f{ALTUP}o
  390.     WinWait, Open Local Project...,
  391.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  392.     WinWaitActive, Open Local Project...,
  393.     Sleep, 200
  394.     Send, pal{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  395. }
  396.  
  397. #4::
  398. {
  399.     WinWait, Digital Rapids Stream,
  400.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  401.     WinWaitActive,  Digital Rapids Stream,
  402.     MouseClick, left,  248,  12
  403.     Sleep, 200
  404.     Send, {ALTDOWN}f{ALTUP}o
  405.     WinWait, Open Local Project...,
  406.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  407.     WinWaitActive, Open Local Project...,
  408.     Sleep, 200
  409.     Send, ntsc{SHIFTDOWN}-{SHIFTUP}ndf{SHIFTDOWN}-{SHIFTUP}l-r{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}l-ltc{SHIFTDOWN}-{SHIFTUP}simultaneous.prj{ENTER}
  410. }
  411.  
  412. #5::
  413. {
  414.     WinWait, Digital Rapids Stream,
  415.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  416.     WinWaitActive,  Digital Rapids Stream,
  417.     MouseClick, left,  248,  12
  418.     Sleep, 200
  419.     Send, {ALTDOWN}f{ALTUP}o
  420.     WinWait, Open Local Project...,
  421.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  422.     WinWaitActive, Open Local Project...,
  423.     Sleep, 200
  424.     Send, ntsc{SHIFTDOWN}-{SHIFTUP}df{SHIFTDOWN}-{SHIFTUP}l-r{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}l-ltc{SHIFTDOWN}-{SHIFTUP}simultaneous.prj{ENTER}
  425. }
  426.  
  427. #6::
  428. {   WinWait, Digital Rapids Stream,
  429.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  430.     WinWaitActive,  Digital Rapids Stream,
  431.     MouseClick, left,  248,  12
  432.     Sleep, 200
  433.     Send, {ALTDOWN}f{ALTUP}o
  434.     WinWait, Open Local Project...,
  435.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  436.     WinWaitActive, Open Local Project...,
  437.     Sleep, 200
  438.     Send, pal{SHIFTDOWN}-{SHIFTUP}l-r{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}l-ltc{SHIFTDOWN}-{SHIFTUP}simultaneous.prj{ENTER}
  439. }
  440.  
  441. #7::
  442. {
  443.     WinWait, Digital Rapids Stream,
  444.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  445.     WinWaitActive,  Digital Rapids Stream,
  446.     MouseClick, left,  248,  12
  447.     Sleep, 200
  448.     Send, {ALTDOWN}f{ALTUP}o
  449.     WinWait, Open Local Project...,
  450.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  451.     WinWaitActive, Open Local Project...,
  452.     Sleep, 200
  453.     Send, ntsc{SHIFTDOWN}-{SHIFTUP}ndf{SHIFTDOWN}-{SHIFTUP}3-4{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  454. }
  455.  
  456. #8::
  457. {
  458.     WinWait, Digital Rapids Stream,
  459.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  460.     WinWaitActive,  Digital Rapids Stream,
  461.     MouseClick, left,  248,  12
  462.     Send, {ALTDOWN}f{ALTUP}o
  463.     WinWait, Open Local Project...,
  464.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  465.     WinWaitActive, Open Local Project...,
  466.     Sleep, 200
  467.     Send, ntsc{SHIFTDOWN}-{SHIFTUP}df{SHIFTDOWN}-{SHIFTUP}3-4{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  468. }
  469.  
  470. #9::
  471. {
  472.     WinWait, Digital Rapids Stream,
  473.     IfWinNotActive, Digital Rapids Stream, , WinActivate, Digital Rapids Stream,
  474.     WinWaitActive,  Digital Rapids Stream,
  475.     MouseClick, left,  248,  12
  476.     Sleep, 200
  477.     Send, {ALTDOWN}f{ALTUP}o
  478.     WinWait, Open Local Project...,
  479.     IfWinNotActive, Open Local Project..., , WinActivate, Open Local Project...,
  480.     WinWaitActive, Open Local Project...,
  481.     Sleep, 200
  482.     Send, pal{SHIFTDOWN}-{SHIFTUP}3-4{SHIFTDOWN}-{SHIFTUP}{SHIFTDOWN}=-{SHIFTUP}ltc{SHIFTDOWN}-{SHIFTUP}mp2.prj{ENTER}
  483. }
  484.  
  485. ; EOF
4954
General Software Discussion / Re: Freeware Website Creator For Dummies?
« Last post by skwire on September 18, 2009, 12:49 AM »
Website Baker is a great little CMS.  Check out my site here on DC for an example of what it can do:

http://skwire.dcmembers.com/
4955
Finished Programs / Re: IDEA: Sort images into folders based on resolution
« Last post by skwire on September 17, 2009, 05:23 PM »
Website | Download
v1.0.5 - 2009-09-17
    + Added new sort mode based on aspect ratio.  (Thanks, FrankEBailey`)
    + You can now cancel a scan.  (Thanks, FrankEBailey`)
    + All settings are now saved.  (Thanks, FrankEBailey`)


main.png
4956
Finished Programs / Re: IDEA: Sort images into folders based on resolution
« Last post by skwire on September 17, 2009, 11:41 AM »
Try this, please:  Download

If it checks out, we'll bump it to v1.0.5 and call it good.  =]
4957
Finished Programs / Re: IDEA: Sort images into folders based on resolution
« Last post by skwire on September 17, 2009, 07:52 AM »
I have the aspect ratio stuff done but still need to implement the pixel total stuff.
4958
Finished Programs / Re: IDEA: Sort images into folders based on resolution
« Last post by skwire on September 17, 2009, 04:54 AM »
To clarify given 16:9 with a 2% tolerance:

16/9 = 1.78
1.78*0.98 = 1.74
1.78*1.02 = 1.82

You want all images with aspect ratios between 1.73 and 1.81 sorted into a folder named 16-9 (colons are forbidden in file/folder names).  Is this along the lines of what you had in mind?
4959
Coding Snacks / Re: IDEA: Double-click makes a new folder
« Last post by skwire on September 16, 2009, 10:54 PM »
and i know just the right person for it - skwire. 8)

I appreciate the sentiment but...

1) I don't run Vista.
2) I don't use Explorer as a file manager.
3) I don't use Explorer as a shell.
4960
Post New Requests Here / Re: Idea - Whats in my fridge?
« Last post by skwire on September 16, 2009, 04:06 AM »
Small bugfix.

Website | Download

v1.0.5 - 2009-09-16
    * If the day changes, colors are re-computed.
4961
My goodness, you do go out of your way to help people!
My hat's off to you.

Anything and everything in the name of software, eh?  =]
4962
Post New Requests Here / Re: Idea - Whats in my fridge?
« Last post by skwire on September 16, 2009, 01:07 AM »
You're welcome.  Glad you like it.   :mrgreen:
4963
Post New Requests Here / Re: Idea - Whats in my fridge?
« Last post by skwire on September 15, 2009, 11:29 PM »
unlikely.. i've been begging skwire to make screencasts of Trout and he adamantly refuses.

Soz, too busy with all of these Coding Snacks.   :harhar:
4964
Post New Requests Here / Re: Idea - Whats in my fridge?
« Last post by skwire on September 15, 2009, 07:04 PM »
Thanks.  Wow...holy crap.  Not even a full day of development yet...   :D
4965
I set up a test box with UltraVNC.  Do the following on the server side:

1) Start menu > Programs > UltraVNC > Edit Settings
2) Screen Capture tab.  Check the 'Capture Alpha-Blending' box.
3) Restart VNC service (or reboot that box).

Should work now...
4966
Got the "Switch to PAL" button to work.
Will work on the others soon.
But the old hotkey of Windows-P no longer works for "Switch to PAL"
Is this because of a stray "RETURN" somewhere in the script?
Or maybe because the hotkeys should be placed first in the script, before the button data?

Does it work if you first click the actual vidcap window?  If you've clicked one of the overlay buttons first, it would have focus and any vidcap window hotkeys would not work.  We should be able to get around this if this is the case.

Also, you won't believe this.
The overlay doesn't show up in a VNC remote session!
Don't know if there's anything that can be done scriptwise... might have to ask the video expert here how to remedy that.

Hmmm...I could understand that if we were using a percentage of transparency but we're not.  Which version/flavour of VNC is this?
4967
Post New Requests Here / Re: Idea - Whats in my fridge?
« Last post by skwire on September 15, 2009, 09:49 AM »
I suppose I should clarify my "knowing next to nothing about web coding" statement.  I'm extremely familiar with all the front end stuff... POSTing, GETing, etc.  It's the backend PHP stuff that I've not done much of.
4968
Post New Requests Here / Re: Idea - Whats in my fridge?
« Last post by skwire on September 15, 2009, 08:32 AM »
Sure...I'm happy to work together on it.  Just let me know what you'll need. 
4969
Post New Requests Here / Re: IDEA: SuperDuperRoboPrinter
« Last post by skwire on September 15, 2009, 07:10 AM »
I'll look and see if there is a way pf printing actualy size with the image viewer...  No doubt someone will come back later and they want to print full size with it!!!  Ho hum...

Welcome to the wonderful world of Coding Snacks.   :D
4970
Post New Requests Here / Re: Idea - Whats in my fridge?
« Last post by skwire on September 15, 2009, 05:27 AM »
Worked reasonably well for me but you seem to have overlooked one essential.
Where is the button to press that will command someone to go and get the shopping?
Oh, and could that track my commands in order to predict, for example, when I next want quail's eggs.
I know that Mouser is very keen on this kind of smart software.

Oh, I know he is...neural thinker and all that.  =]  I just randomly bash the keyboard and hope it compiles.   :P
4971
It works!
Thanks.

Sweet.  =]  You're welcome...glad to help.
4972
Give this a shot (change variables at top to suit):

Header_Text := "EVD CAP 8"
Font_Size   := "56"
Font_Style  := "Arial"
Font_Color  := "Yellow"


Gui, 1: +Toolwindow -Caption +Lastfound +AlwaysOnTop
GUI_ID := WinExist()
Gui, 1: +LastFound
Gui, 1: Margin, 0, 0

Gui, 1: Font, s%Font_Size% c%Font_Color%, % Font_Style
Gui, 1: Add, Text, xm+450 ym+5  0x200 vmyText, % Header_Text
Gui, 1: Font
Gui, 1: Color, EEAA99
WinSet, Transcolor, EEAA99

Gui, 1: Add, Button, xm+40  ym+125 w120 h25 vmyButton01 gonClick, NDF + LTC mp2
Gui, 1: Add, Button, xm+40  ym+150 w120 h25 vmyButton02 gonClick, DF + LTC mp2
Gui, 1: Add, Button, xm+40  ym+175 w120 h25 vmyButton03 gonClick, PAL + LTC mp2

Gui, 1: Add, Button, xm+40  ym+220 w120 h25 vmyButton04 gonClick, NDF L-R + L-LTC simo
Gui, 1: Add, Button, xm+40  ym+245 w120 h25 vmyButton05 gonClick, DF L-R + L-LTC simo
Gui, 1: Add, Button, xm+40  ym+270 w120 h25 vmyButton06 gonClick, PAL L-R + L-LTC simo

Gui, 1: Add, Button, xm+230 ym+125 w120 h25 vmyButton07 gonClick, NDF 3-4 + 3-LTC mp2
Gui, 1: Add, Button, xm+230 ym+150 w120 h25 vmyButton08 gonClick, DF 3-4 + 3-LTC mp2
Gui, 1: Add, Button, xm+230 ym+175 w120 h25 vmyButton09 gonClick, PAL 3-4 + 3-LTC mp2

Gui, 1: Add, Button, xm+230 ym+220 w120 h25 vmyButton10 gonClick, Future button 1
Gui, 1: Add, Button, xm+230 ym+245 w120 h25 vmyButton11 gonClick, Future button 2
Gui, 1: Add, Button, xm+230 ym+270 w120 h25 vmyButton12 gonClick, Future button 3

Gui, 1: Add, Button, xm+915 ym+125 w120 h25 vmyButton13 gonClick, Future button 4
Gui, 1: Add, Button, xm+915 ym+150 w120 h25 vmyButton14 gonClick, Future button 5
Gui, 1: Add, Button, xm+915 ym+175 w120 h25 vmyButton15 gonClick, Future button 6

Gui, 1: Add, Button, xm+350 ym+710 w100 h25 vmyButton16 gonClick, Switch to NTSC
Gui, 1: Add, Button, xm+465 ym+710 w100 h25 vmyButton17 gonClick, Switch to PAL

Gui, 1: Show, x0 y0 w1280 h768, Overlay

Return ; End of auto-execute section.


onClick:
{
    Gui, 2: Submit, NoHide
    If ( A_GuiControl = "myButton01" )
    {
        ; Do stuff here.
        MsgBox, You clicked "NDF + LTC mp2".
    }
    Else If ( A_GuiControl = "myButton02" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "DF + LTC mp2".
    }
    Else If ( A_GuiControl = "myButton03" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "PAL + LTC mp2".
    }
    Else If ( A_GuiControl = "myButton04" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "NDF L-R + L-LTC simo".
    }
    Else If ( A_GuiControl = "myButton05" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "DF L-R + L-LTC simo".
    }
    Else If ( A_GuiControl = "myButton06" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "PAL L-R + L-LTC simo".
    }
    Else If ( A_GuiControl = "myButton07" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "NDF 3-4 + 3-LTC mp2".
    }
    Else If ( A_GuiControl = "myButton08" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "DF 3-4 + 3-LTC mp2".
    }
    Else If ( A_GuiControl = "myButton09" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "PAL 3-4 + 3-LTC mp2".
    }
    Else If ( A_GuiControl = "myButton10" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "Future button 1".
    }
    Else If ( A_GuiControl = "myButton11" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "Future button 2".
    }
    Else If ( A_GuiControl = "myButton12" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "Future button 3".
    }
    Else If ( A_GuiControl = "myButton13" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "Future button 4".
    }
    Else If ( A_GuiControl = "myButton14" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "Future button 5".
    }
    Else If ( A_GuiControl = "myButton15" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "Future button 6".
    }
    Else If ( A_GuiControl = "myButton16" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "Switch to NTSC".
    }
    Else If ( A_GuiControl = "myButton17" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "Switch to PAL".
    }
}
Return
4973
Coding Snacks / Re: IDEA: Double-click makes a new folder
« Last post by skwire on September 15, 2009, 12:45 AM »
what version of AVG are you using? i think newer versions don't have this problem..

A lot of the issue is that this is a recurring problem.  A/V companies will go months without false positives and then, all of a sudden, bam, we get a rash of them.  Unless requested, I don't compile any of my AHK apps with UPX.  I don't care about the file size.
4974
If I see the word "Arial" or "Helvetica" in the script, I can just change it later, right?
Yes, it will be easily changed.
4975
Any particular font you would like used?
Pages: prev1 ... 194 195 196 197 198 [199] 200 201 202 203 204 ... 222next