Search

Main Menu

Login
Username:

Password:

Remember me?
Anonymous

Lost Password?

Register now!

Samurize Forums -> Fade in on Mouseover


Pages: (2) [1] 2   ( Go to first unread post ) Reply to this topicStart new topic

> Fade in on Mouseover
Tews
Posted: Jul 28 2007, 09:36 AM
Quote Post
Offical Spam Whore
***



Group: Admin
Joined: Sep 26 2003
Posts: 242
Offline



I was wondering if this were possible? What I want to attempt is have a config or a group of configs that would fade in on mouseover and fade out after a specified period of time... Any thoughts would be appreciated!! smil3dbd4d6422f04.gif


smil43e1ffe2b15f0.gif


--------------------
--<< Member of the Old Farts Alliance >>--
PMEmail PosterIntegrity Messenger IMICQAOLMSN
Top
Spewed
Posted: Jul 28 2007, 09:56 AM
Quote Post
Our Blind Friend
*****



Group: Moderating Crew
Joined: Jan 12 2006
Posts: 1,555
Offline



I'd like this feature as well Tews man. I posted a Plugin Request some time ago about the same subject. smil3dbd4d6422f04.gif
PMEmail PosterMSN
Top
KMDonlon
  Posted: Jul 28 2007, 08:58 PM
Quote Post
The Weather Freak
*****



Group: Member
Joined: Feb 19 2004
Posts: 3,535
Offline



Hmmm, I know we can do something similar with an image with some plugins but I can't think of a way with the entire config smil43e66cd850197.gif Sounds like a job for Adam or a new plugin for uziq smil3dbd4d6422f04.gif


--------------------
PMEmail PosterICQAOLYahooMSN
Top
flambee1
Posted: Jul 29 2007, 08:12 AM
Quote Post
Captain Tronnix
***



Group: German Support Mod
Joined: Oct 14 2004
Posts: 200
Offline



Invisible meter executing a command, in that case running a *.vbs by mouseover:

CODE
Set WSHShell = WScript.CreateObject("WScript.Shell")

WSHShell.Run "C:\Programs\Samurize\Client.exe i=Instance1"
WSHShell.Run "C:\Programs\Samurize\Client.exe i=Instance2"
WSHShell.Run "C:\Programs\Samurize\Client.exe i=Instance3"
WSHShell.Run "C:\Programs\Samurize\Client.exe i=Instance4"

WScript.Sleep 60000

WSHShell.Run "C:\Programs\Samurize\Client.exe i=Instance1 close"
WSHShell.Run "C:\Programs\Samurize\Client.exe i=Instance2 close"
WSHShell.Run "C:\Programs\Samurize\Client.exe i=Instance3 close"
WSHShell.Run "C:\Programs\Samurize\Client.exe i=Instance4 close"


This will start one or more instances as you like and after a pause of here as example 60 seconds the instances close again. Fading is set in the Config itself for startup and close.

Disadvantage: the script will run as long it is paused. But you can also put a countup in one of the started Configs and use it as a alert for executing a *.vbs closing the configs again. Therefore you'll need two *.vbs:

1. Starting the Instances by mouseover of the invisible meter:

CODE
Set WSHShell = WScript.CreateObject("WScript.Shell")

WSHShell.Run "C:\Programs\Samurize\Client.exe i=Instance1"
WSHShell.Run "C:\Programs\Samurize\Client.exe i=Instance2"
WSHShell.Run "C:\Programs\Samurize\Client.exe i=Instance3"
WSHShell.Run "C:\Programs\Samurize\Client.exe i=Instance4"


2. Executing a command if a specific time of the countup is reached (alert):

CODE
Set WSHShell = WScript.CreateObject("WScript.Shell")

WSHShell.Run "C:\Programs\Samurize\Client.exe i=Instance1 close"
WSHShell.Run "C:\Programs\Samurize\Client.exe i=Instance2 close"
WSHShell.Run "C:\Programs\Samurize\Client.exe i=Instance3 close"
WSHShell.Run "C:\Programs\Samurize\Client.exe i=Instance4 close"


--------------------
PMICQMSN
Top
Spewed
Posted: Jul 29 2007, 09:09 AM
Quote Post
Our Blind Friend
*****



Group: Moderating Crew
Joined: Jan 12 2006
Posts: 1,555
Offline



Clever flambee. smil43e6c401b9177.gif

Although it's not possible to dim/blur configs with that (as I've requested) but works nicely if you want to completely fade in/out configs. smil3dbd4d6422f04.gif
PMEmail PosterMSN
Top
flambee1
Posted: Jul 29 2007, 09:23 AM
Quote Post
Captain Tronnix
***



Group: German Support Mod
Joined: Oct 14 2004
Posts: 200
Offline



QUOTE
it's not possible to dim/blur configs
Now I understand. The configs should fade/dimm while running. So mine is more like a workaround.


--------------------
PMICQMSN
Top
AdamC
Posted: Jul 30 2007, 05:06 PM
Quote Post
The Programming Frog
*****



Group: Admin
Joined: Sep 26 2003
Posts: 2,496
Offline



I spent alittle while trying to do the fade in/out and I could never get it to work because of how samurize works. Its not a straight forward thing to do like you would expect.
PMICQAOLYahooMSN
Top
virtualrain
Posted: Sep 23 2007, 04:13 AM
Quote Post
Shadow
*



Group: Member
Joined: Aug 26 2005
Posts: 19
Offline



Could you not just have a global alpha blend setting that is the "faded" setting and on mouse over ramp up to each meter's alpha blend setting?

The configs can fade in on startup, why not use this same feature on mouse over?
PMEmail Poster
Top
AdamC
Posted: Sep 25 2007, 11:35 AM
Quote Post
The Programming Frog
*****



Group: Admin
Joined: Sep 26 2003
Posts: 2,496
Offline



Thats what I tried or something along those lines.......

and it did not work. Samurize just aint built to do some of this stuff. A complete re-write is in order to get things like this working correctly.
PMICQAOLYahooMSN
Top
aqutavia
Posted: Oct 27 2007, 12:02 AM
Quote Post
Shadow
*



Group: Member
Joined: Oct 26 2007
Posts: 11
Offline



You could avoid a rewrite... and just add a feature in the next update.
I could be talking out of my a$$ though because I have no idea of the inner workings of Samurize or programming for that matter;)

I know its sometimes easier said then done... especially with programming.
What sounds like a simple program could take you 2 days to write;)
Thats too bad... because the "change mouse cursor over linkable meters" option works;) if it could only be tied into a mouse over fade event.

Maybe in the next update, or create a patch that, you could enable/load an optional fading script.
This could be great, not only could people have custom fades, to add an aditional "feel" or style to ones config.
PM
Top
RobertMB
Posted: Oct 27 2007, 09:22 AM
Quote Post
Samurai
***



Group: Member
Joined: Jul 12 2007
Posts: 195
Offline



QUOTE (aqutavia @ Oct 27 2007, 06:02 AM)
You could avoid a rewrite... and just add a feature in the next update.
I could be talking out of my a$$ though because I have no idea of the inner workings of Samurize or programming for that matter;)

I know its sometimes easier said then done... especially with programming.
What sounds like a simple program could take you 2 days to write;)
Thats too bad... because the "change mouse cursor over linkable meters" option works;) if it could only be tied into a mouse over fade event.

Maybe in the next update, or create a patch that, you could enable/load an optional fading script.
This could be great, not only could people have custom fades, to add an aditional "feel" or style to ones config.

Adam already stated that this isn't possible.

I am wondering though, that it isn't possible to access every Meter and reduce its Alpha Value from the set one to Zero and Increase it back to the set one on an Mouse over.


But, then again, Samurize is totaly centered upon Meter Control, and not on Configs.
It's to much Micro and to less Macro, if you get the point.


--------------------
User posted image

USER MIGRATED TO SAMURIZE.US
PM
Top
aqutavia
Posted: Oct 27 2007, 09:48 PM
Quote Post
Shadow
*



Group: Member
Joined: Oct 26 2007
Posts: 11
Offline



QUOTE (RobertMB @ Oct 27 2007, 09:22 AM)
Adam already stated that this isn't possible.

I am wondering though, that it isn't possible to access every Meter and reduce its Alpha Value from the set one to Zero and Increase it back to the set one on an Mouse over.


But, then again, Samurize is totaly centered upon Meter Control, and not on Configs.
It's to much Micro and to less Macro, if you get the point.

Your right... he did.

Just hoping to spark some outside the box thinking instead of just accepting fate.

Like you just did. Maybe you got something there.
Mister Crabby smil3dbd4d4e4c4f2.gif
PM
Top
AdamC
Posted: Oct 28 2007, 07:25 AM
Quote Post
The Programming Frog
*****



Group: Admin
Joined: Sep 26 2003
Posts: 2,496
Offline



I think its possible to do (anything is possible.... right) but would be very cpu intensive. At the moment for all fading stuff we have to refresh the whole config. I do not believe there is a simple way around that complete refreshing without changing how samurize updates. Which means alot of changes and would actually be better to start writing from scratch.
PMICQAOLYahooMSN
Top
RobertMB
Posted: Oct 28 2007, 12:06 PM
Quote Post
Samurai
***



Group: Member
Joined: Jul 12 2007
Posts: 195
Offline



I did wanted to ask if there is a chance to open up the Sourcecode to the GNU Licence, but I realized that it's totaly dump to ask because you are working with it since 4 Years already, and noone wants to see his Baby being abused by retards, no?


--------------------
User posted image

USER MIGRATED TO SAMURIZE.US
PM
Top
AdamC
Posted: Oct 28 2007, 04:08 PM
Quote Post
The Programming Frog
*****



Group: Admin
Joined: Sep 26 2003
Posts: 2,496
Offline



Its not just my code there has been 6 developers on Samurize. So we would need there permissions to open up the source code. The question has been raised before and discussion with the crew has always decided to keep it closed source.

It probably needs to be reviewed again.
PMICQAOLYahooMSN
Top
0 User(s) are reading this topic (0 Guests and 0 Anonymous Users)
0 Members:

Topic Options Pages: (2) [1] 2  Reply to this topicStart new topic

 

Come On, Get Samurized!