My bad ! ;.)
Announcement
Collapse
No announcement yet.
How ?
Collapse
X
-
No problem. One cannot remember all posts in a thread as long as this.Ariszló @ WinCustomize & DeviantArt
Comment
-
Hello..
Sure, you're right but there were times where I would have queried the thread/forum rather than asking.
I'm pretty sure this one has never been covered, by me I mean ;.) : is there a way to open a window, playlist/media libray at a given position ? For the 1st opening, I mean, as of course one could move a window to another place after and let winamp remember it's new place.
Comment
-
There's a thing I don't understand : I have files in a folder for which I haved 2 cover arts.
When I assign one covert art to a particular file, all others reflects also the change when they should use the other covert art.
I've tried the load covert art button, the change button, I've also deleted the actual cover art and used the right one with no luck even if I save the media list state.
What's wrong ?
Comment
-
Originally Posted by parisienne17 View Postis there a way to open a window, playlist/media libray at a given position ? For the 1st opening, I mean...
Originally Posted by parisienne17 View PostI have files in a folder for which I haved 2 cover arts. ... What's wrong ?Ariszló @ WinCustomize & DeviantArt
Comment
-
Yes. You can do it in maki with the getLeft, getTop and setXmlParam functions as in albumartvis.m.Ariszló @ WinCustomize & DeviantArt
Comment
-
Trying to achieve this skin with what's left of eyesight, is the modification of switchpopup right ?
https://www.mediafire.com/file/jdkr9...chpopup.m/file
Comment
-
-
compiling ok, besides a typo (visualikation rather than visualisation).
Thanks for the avatar : an old photoshop work based on a nick knight photography
http://1.bp.blogspot.com/_TqQehjep1h...rea_Visual.jpg.
Now, on to segmenting player-normal-group.xml.
Comment
-
Hi,
I have issues implementing menu choices for layouts.
In skinPHP Code:<include file="xml/player.xml"/>
in player
PHP Code:<include file="player-elements.xml"/>
<script id="switchpopup" file="scripts/switchpopup.maki"/>
<container id="main" name="Main window" default_x="0" default_y="0" default_visible="1">
<include file="player-normal.xml"/>
PHP Code:<include file="player-normal-group.xml" />
<include file="player-AlbumArt-group.xml" />
<button
id="Switch Layouts"
action="SWITCH" param="AlbumArt"
x="10" y="100"
image="ShowHideCover"
hoverImage="ShowHideCover-hover"
downImage="ShowHideCover"
tooltip="Switch to next mode (right-click for more choices)"
rectrgn="1"
/>
What am I doing wrong ?
Comment
-
The container tag should include all your layouts and the switchpopup script should come last before </container>.
PHP Code:<include file="player-elements.xml"/>
<container id="main" name="Main window" default_x="0" default_y="0" default_visible="1">
<include file="player-normal.xml"/>
<include file="player-other-layout-1.xml"/>
<include file="player-other-layout-2.xml"/>
<include file="player-other-layout-etc.xml"/>
<script id="switchpopup" file="scripts/switchpopup.maki"/>
</container>
Ariszló @ WinCustomize & DeviantArt
Comment
Comment