[request] hot spot activation for showcase

Would it be possible to somehow make showcase be activated by putting the mouse cursor in a configurable corner of the screen?

I find hotkeys a little clumsy sometimes.

#256882

That would be a welcome feature. There should also be a way to exit the showcase using the mouse only.

#257080

ShowCase can be accesed thru the scripting interface:

Save the following in ActivateShowCase.vbs:

Dim aveDesk 'as AveDesk.Application

set aveDesk = CreateObject("AveDesk.Application")

aveDesk.ShowCase.Activate()

set aveDesk = nothing

Now double-click the ActivateShowCase.vbs file.. and see the magic :)

To deactivate use

Dim aveDesk 'as AveDesk.Application

set aveDesk = CreateObject("AveDesk.Application")

aveDesk.ShowCase.DeActivate()

set aveDesk = nothing

(I see herd is in this thread to, so you would likely to get the same sort of reply from him, but with prettier words and longer sentence ;) )

#257086

Would it be hard to make Showcase....almost instant?

The amount of seconds it takes for showcase to activate makes me change my mind on ever pressing the hotkey.

#257090

Would it be hard to make Showcase....almost instant?

The amount of seconds it takes for showcase to activate makes me change my mind on ever pressing the hotkey.

DIsable the animation.

#257091

scripting eh?.... ill have a look at it soon as i catch up with my studies and have a little free time... prolly not for a week or so tho, so if anyone else wants to give it a go, feel free!

#257115

Ooh, didn't realize the scripting was already in place. Is there an updated CHM help file with the new scripting?

#257132

Ooh, didn't realize the scripting was already in place. Is there an updated CHM help file with the new scripting?
Not yet...

#257135

now, if only there were a hot-corners app that can launch arbitrary code.

Is there one about?

#257349

what is the script function to activate showcase on all icons?

#267131

mmmmh I know is not the right use for an effectlet, but here is it:

2-minutes-coding-time Showcase Activation Effectlet :)

might put a few more options tomorrow. If your desklet has a lot of transparent parts it will be uncomfortable :slant: I think the effectlet needs a "sensibility" parameter, and maybe a timeout...

A real package with the real version :)

ShowcaseEffectlet.zip

Attachment: ShowcaseEffectlet.zip

#267148

thanks dreadnaut, that effectlet is working perfectly for me. :)

#267256

this is pretty useful, but once again, does anyone know the script function to activate showcase on all icons, rather than the ones set just as showcase?

#267419

this is pretty useful, but once again, does anyone know the script function to activate showcase on all icons, rather than the ones set just as showcase?

then instead of

ShowCase.Activate()

you need to call

ShowCase.ActivateOnAllDesklets()

#267434

excellent thank you

#267546