• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

How can i deactivate this???

booyaka95

Chevereto Noob
My Problem is
i would deactivate that the background didn't flash yellow???
unbenannt.jpg


Thanks.

I know my english is bad ^^
 
open effects.js in the js folder an find

Code:
var options=Object.extend({startcolor:'#ffff99'},arguments[1]||{});
this.start(options);
},
setup:function(){
if(this.element.getStyle('display')=='none'){this.cancel();return;}
this.oldStyle={};
if(!this.options.keepBackgroundImage){
this.oldStyle.backgroundImage=this.element.getStyle('background-image');
this.element.setStyle({backgroundImage:'none'});
}
if(!this.options.endcolor)
this.options.endcolor=this.element.getStyle('background-color').parseColor('#ffffff');
change startcolor:'#ffff99'.. to '#ffffff' and the yellow fade effects becomes invisible :)
 
easy.. open js/rules.js and then delete this:
Code:
'#contenedorupload' : function(element){
		element.onclick = function(){
			new Effect.Highlight(this,{duration: .5});
		}
	},
 
Back
Top