topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Sunday November 30, 2025, 4:21 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 ... 3 4 5 6 7 [8] 9 10 11 12 13 ... 251next
176
i am not sure if it is compatible with Win 8.1 but have you tried this app, "Show Desktop"? it has an option to toggle between two different ways of showing the desktop.

"large image alert"
show_desktop_by_ceiiular-d2774le.png


http://ceiiular.devi...ow-Desktop-133022210
177
maybe Skwire's Files 2 Folder will help you?

http://skwire.dcmemb...?page=files-2-folder
178
General Software Discussion / Re: Linux bash exploit discovered
« Last post by lanux128 on September 28, 2014, 08:47 PM »
i believe this has something to do with this post so i'll just leave this here.

1_2014_09_29_001.png
http://www.intelliad...ity-to-look-out-for/
179
Screenshot Captor / So what other helper tools do you use with Screenshot Captor?
« Last post by lanux128 on September 28, 2014, 04:43 AM »
in the recent update (v4.8.7 Beta), mouser added the Tools menu to SC's system tray menu. the ability to use external tools from within SC is one of the advantage that I very much like. so I was wondering what other tools out there that can complement or enhance your SC experience.

i'll start with my own SC tools menu, it's quite self-explanatory and it helps a lot with my workflow. though mouser has graciously implemented many of my requests to make things even smoother! :Thmbsup:

Tool Properties_2014_09_28_003.png
180
Screenshot Captor / Re: black screen
« Last post by lanux128 on September 26, 2014, 06:47 AM »
@Ravin dave: according to wikipedia, there seems to be a certain in-game function to capture screenshots. perhaps this feature may be interfering with Screenshot Captor?

To recall clues or important items, players can use a camera feature to take screenshots, which are then placed in a journal the player can access at any time.

http://en.wikipedia..../Myst_V:_End_of_Ages
181
Finished Programs / Re: WinWarden send window to back / bottom
« Last post by lanux128 on September 25, 2014, 04:48 AM »
adding a TrayTip command would provide a visual clue to the users as to what is happening, which I have already added in the above code.

I don't see any drawbacks between using WinWait and Loop, it is just a matter of personal preference. feel free to try out the example you linked, and see if there are any differences. you can use WinWaitActive/WinWaitNotActive.
182
General Software Discussion / Re: Free Alternative to CopyWhiz (Piky Basket)?
« Last post by lanux128 on September 25, 2014, 04:19 AM »
Try TeraCopy its a freeware, download from here.

TeraCopy's homepage is still working. The link is as follows: http://codesector.com/teracopy
183
Finished Programs / Re: WinWarden send window to back / bottom
« Last post by lanux128 on September 25, 2014, 04:15 AM »
Hi rodp,

glad to be see the script working. if you want to interact with the said window (Execute window), you can press Ctrl+Esc to pause the script. give it a try and see if that works for you.
184
Finished Programs / Re: WinWarden send window to back / bottom
« Last post by lanux128 on September 24, 2014, 09:59 PM »
i am not sure if what you're asking is possible with WinWarden but if you want to go the Autohotkey route, this might be of help:

this is untested and you may have to change the "Sleep' duration a bit.

Code: Autohotkey [Select]
  1.  
  2. SetTitleMatchMode, 2            ; partial match
  3. SetWorkingDir, %A_ScriptDir%
  4. DetectHiddenWindows, Off        ; they're hidden for a reason.
  5.  
  6. var1 := "NPD PowerView: Execute Table"
  7.  
  8.         {
  9.         WinGetActiveTitle, active_title
  10.         WinGetClass, active_class, A
  11.         }
  12. IfWinActive, % var1
  13.         {
  14.         WinActivate % active_title
  15.         WinActivate % "ahk_class " . active_class
  16.         TrayTip,Note:,The NPD PowerView window has lost focus. `nPlease press Ctrl+Esc if you wish to interact with it.,10,1
  17.         }
  18. Sleep, 500
  19. }
  20. Return
  21.  
  22. ^Esc::Pause                     ; Ctrl + Esc pauses
  23. +Esc::ExitApp                   ; Shift + Esc exits

Edit: added a visual hint for users.
185
DC Gamer Club / Free Soundtracks from Valve (until October 1, 2014)
« Last post by lanux128 on September 24, 2014, 08:35 PM »
"To celebrate the release of the Steam Music, the following Valve soundtracks DLC are now available for free to those who own the related base games and documentary."

Offer valid until 1st October.

musicnewspost.png

TitleLink
Half-Lifehttp://store.steampo...ered.com/app/323130/
Half-Life 2http://store.steampo...ered.com/app/323140/
Half-Life 2: Episode 1http://store.steampo...ered.com/app/323150/
Half-Life 2: Episode 2http://store.steampo...ered.com/app/323160/
Portalhttp://store.steampo...ered.com/app/323170/
Portal 2http://store.steampo...ered.com/app/323180/
Free to Playhttp://store.steampo...ered.com/app/323120/

http://store.steampo...ered.com/news/14358/


Note: the games are also 75% off but seriously who doesn't have them by now.. :D
186
DC Gamer Club / Defense Grid 2 free DLC
« Last post by lanux128 on September 24, 2014, 08:24 PM »
now with Defense Grid 2 already released, the devs are giving away a free DLC called "Double-Take: The Designer's Cut", to go with it.

Register Your Email Now with Hidden Path Entertainment and receive a free DLC Level for Defense Grid 2
We'll send you a Steam code for Double-Take: The Designer's Cut
This version was "potentially too complex" to ship, even though our lead designer loved it. We hope you love it too.
-website

Double-Take_The Designer's Cut_Hidden Path Entertainment2014_09_25_002.png
http://www.hiddenpath.com/dg2register/
187
Post New Requests Here / Re: Execute only if not running
« Last post by lanux128 on September 23, 2014, 08:40 PM »
if you want an AHK solution as Miles suggested, this snippet would be a start. win+a launches notepad if it is not running.

Code: Autohotkey [Select]
  1. notepadpath = c:\windows\notepad.exe
  2.  
  3. #a::
  4. Process, Exist, notepad.exe ; see if notepad is running
  5. {
  6.         {
  7.         IfExist, % notepadpath
  8.                 Run,% notepadpath
  9.         Return
  10.         }
  11. }
188
thanks for this feature, mouser! i had been wanting to do this in SC for a some time now. :up:

SC_new_feature_combine_images_2014_09_22_0001.png
189
Finished Programs / Re: SOLVED: TouchPad Acer Coding Snack
« Last post by lanux128 on September 08, 2014, 11:34 PM »
another similar tool: touchfreeze (Utility for Windows to disable touchpad automatically while you are typing text).

https://code.google.com/p/touchfreeze/
190
Saira is now free on Steam. the dev is giving it away since "it has done its selling by now", the source is going to be available too.

Saira_header_292x136.jpg

https://twitter.com/...s/497074830370672641
191
DC Gamer Club / Re: Get Sims 2 Ultimate for Free (Expires July 31st, 2014)
« Last post by lanux128 on July 23, 2014, 07:20 PM »
thanks for the heads-up! :Thmbsup: :-*
192
DC Gamer Club / Re: Defense Grid 2 available for pre-purchase
« Last post by lanux128 on July 17, 2014, 11:43 PM »
there is a story behind how DG2 came to be, quite a long read but interesting if you're into insight looks on video game industry.

• When a successful game is a failure - http://www.polygon.c...-grid-2-console-port
193
DC Gamer Club / Defense Grid 2 available for pre-purchase
« Last post by lanux128 on July 17, 2014, 10:00 PM »
Defense Grid 2 is available for pre-purchase at $22.49 ($26.99 if you want the Special Edition).



there are tiered rewards for those who pre-purchase.
Tier 1 - Receive the Containment expansion to Defense Grid: The Awakening and a digital copy of the Original Defense Grid Art Book. All content is giftable.

Tier 2 - Everything Above, Plus: A free immediate copy of Defense Grid: The Awakening for Windows and a 50% off coupon for Hidden Path’s new social sandbox game Windborne (currently in Early Access). All content is giftable.

Tier 3 - Everything Above, Plus: “A Matter of Endurance” a new original audio story to be written by Hugo Award Winning Author Mary Robinette Kowal and performed by the English voice cast. This content will be delivered to your Steam account on or before the launch of DG2.
http://store.steampo...ered.com/app/221540/
194
i also wanted to suggest 1-4a rename but too bad it doesn't do folders.

though plenty of usage examples here.
195
Bulk Rename Utility seems worth a try. check out the Mini-Review by [user]zridling[/user].
196
Omerta City of Gangsters is currently free on GOG.com

http://www.gog.com/?omerta
197
Screenshot Captor / Re: SC stuck / froze in Systray after start
« Last post by lanux128 on June 23, 2014, 07:25 AM »
any anti-virus running in the background? maybe it is blocking SC.
198
Finished Programs / Re: SOLVED: Copy massive folder/file directory....
« Last post by lanux128 on June 23, 2014, 12:02 AM »
just a thought, check both partitions with scandisk before any copy attempts.
199
Finished Programs / Re: SOLVED: Copy massive folder/file directory....
« Last post by lanux128 on June 22, 2014, 09:50 PM »
there are several file-copy tools that can do this. have you tried any of these: teracopy, robocopy, xxcopy?
200
DC Gamer Club / Kaptain Brawe: A Brawe New World (Free for 4 days)
« Last post by lanux128 on June 22, 2014, 07:43 AM »
as part of their Kickstarter campaign for Kaptain Brawe 2: A Space Travesty, Cateia Games are offering their earlier game for free.



http://www.kaptainbr...2.com/#free-download
Pages: prev1 ... 3 4 5 6 7 [8] 9 10 11 12 13 ... 251next