Windows Hot Corners?
Friday, December 9, 2005 by TouuuucanSam | Discussion: Customization Software
Any info would be appreciated
Reply #3 Saturday, December 10, 2005 1:02 AM
Make an image. It doesn't matter really what it looks like, but a black square would keep it simple. Size isn't important, but you also may as well keep it small. For the sake of the example, make a 16x16 solid black square in your image editor and save as a png.
In DesktopX Builder, create a new object. Click the Change button next to the Default Appearance text on the General panel of the properties. Select your black square image.
Go to the Summary panel. Enter 0 (Zero) for Left and Top coordinates. This'll put the object in upper left corner. Set the Width and Height. A true Hot Corner would probably only be one pixel (1x1) but you can set anything. Let's do Width of 4 and height of 4.
Enter any other info you want on the Summary. The only other important one is the ObjectID--Name it "TL_Corner"
Click Apply and you have a 4x4 Black square in the upper left of screen.
Go to the States panel. Choose the transparency tab from the group at the bottom. Give it a Uniform Opacity of 1%. This'll make it undiscernable to the eye, without making it invisible to the mouse (a 0% transparency won't work).
Go to the relation tab. This is where the magic is. In the Start With box, select Mouse Over. To be thorough, also select Rectangular area in the Activation box and Always On Top from the Z-Order.
Click Apply again.
Now the object is set to do something when you mouse to upper left corner.
Do what exactly is up to you. But, just so we can see it work, go back to the General panel. Click Change button next to Object Type. Then select Shortcut. Select the Folder Shortcut radio button, Select My Documents from the drop down list, and check the open As popup menu box.
Click OK, then Apply.
Put your mouse in the upper left corner.
Now, be aware, this is a somewhat simple example. I really don't know what sort of things the Mac hot corners do. You can do a lot with just the panels and options there, and even more with scripting - for example, and I never miss a chance to plug my own stuff, play with this widget: http://rabidrobot.wincustomize.com/ViewSkin.aspx?SkinID=579&LibID=34&comments=1
You can set the opacity of the widget by right clicking->properties. Just don't set it to zero.
I hope that gets you started. It is a lot easier than my writing makes it sound.
Reply #4 Saturday, December 10, 2005 2:22 AM
the reason i'm trying to make hotcorners is because i want to basically mimic the Expose feature on apple computers. do you happen to know if there's a way to set that desktopx square we just made to do something like Expose?
Reply #5 Saturday, December 10, 2005 2:46 AM
The widget I linked earlier has some hidden features, you can Ctrl, Shift, or Alt click it to tile the windows, Horizontally, Vertically, or Cascaded, respectively. There is also a more convenient widget by CerebroJD for these particular functions: https://www.wincustomize.com/ViewSkin.aspx?SID=1&SkinID=643&LibID=34&comments=1
If you want to do one of these things with your Hot Corner Object, you'll need a script.
On the General tab, click the New Script button. Then replace everything in the script window with this code:
| 'Called when the script is executed Sub Object_OnScriptEnter End Sub Sub Object_OnStateChange(state) If state = "Command executed" Then Set objShellApp = CreateObject("Shell.Application") objShellApp.CascadeWindows 'objShellApp.TileVertically 'objShellApp.TileHorizontally Set objSellApp = Nothing End If End Sub 'Called when the script is terminated Sub Object_OnScriptExit End Sub |
The apostrophes "comment out" lines. You can remove the apostrophes from one of the two Tile lines, but make sure to add one to the cascade line--just make sure only one is "uncommented".
Personally, I find these functions more trouble than tehy're worth. And to emulate other Expose features would of course add much more complexity.
Reply #6 Saturday, December 10, 2005 3:20 AM
Reply #8 Saturday, December 10, 2005 2:09 PM
Which pointed out this http://www.winplosion.com/cupgame/3cups.html
That last link takes you to a Flash Shell Game (pun probably intentional?), where if you go 15 rounds and provide an email, they'll give you a free liscence for WinPLOSION!
I did it. Took me a few tries, but it can be done, my copy is now registered, and I'm going to take it for a spin!
Reply #11 Saturday, December 10, 2005 5:49 PM
Reply #12 Saturday, December 10, 2005 6:05 PM
| I was lucky enough to get it on the first try |
Show off.

Reply #13 Saturday, December 10, 2005 6:09 PM
Reply #14 Sunday, December 11, 2005 4:19 AM

Reply #15 Sunday, December 11, 2005 8:25 AM
Please login to comment and/or vote for this skin.
Welcome Guest! Please take the time to register with us.
There are many great features available to you once you register, including:
- Richer content, access to many features that are disabled for guests like commenting on the forums and downloading skins.
- Access to a great community, with a massive database of many, many areas of interest.
- Access to contests & subscription offers like exclusive emails.
- It's simple, and FREE!








Reply #1 Friday, December 9, 2005 10:48 PM