Very new at this skinning thing. I'm trying to get the effect you have here that picks up colors from the posters and blurs them. I looked once on this thread and this is how far I got with the response that was previously given to a guy asking the same question:
Code:
<onload>RunScript(script.toolbox,info=blur)</onload>
<control type="image">
<include>FullscreenDimensions</include>
<fadetime>400</fadetime>
<texture background="true">$INFO[Window(home).Property(ImageColor)]</texture>
</control>
So I understand I don't need Extended Script, but Toolbox instead? Ok, so I have Toolbox installed, and I call it with the onload statement there. Then I include a texture, and then use the value of... what, exactly? I'm not sure. I've tried some, but they don't output anything. I lifted the "$INFO[Window(home).Property(ImageColor)]" from the post that asked the question previously, but it's probably customized to his skin, so it doesn't do anything on mine, and again, I don't know what to put in. This does work in the sense that putting the path of an image, outputs the image. I just need to know what value to put so that it shows the poster color things...
Would appreciate some guidance, it's a superb effect.
edit: OKAY. So I understand now that this is completely unrelated to this script, but I already made this post so what the heck... I tried with another script of yours, similar stuff:
Code:
<onload>RunScript(script.colorbox,info=bluronly,id='"$INFO[ListItem.Icon]"',radius=44,prefix=)</onload>
<include>Fanart</include>
<control type="image">
<include>FullscreenDimensions</include>
<fadetime>400</fadetime>
<visible>Control.IsVisible(520)</visible>
<texture background="true">$INFO[ListItem.Icon]</texture>
</control>
Tried looking at another skins code for this one, and I feel like I'm almost there. The one thing I don't get is the prefix= part, and then how to call this blurred image as a texture.