Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Jamessf69

Pages: 1
1
The only thing that is guiding the "slideshow" And defaulting to the entire background?
What if one wanted to change the size and placement of this?
Can this "folder and rotation be accessed separately? If so How?

I'm not sure what you're asking. Currently MB supports only as background images of TM for rotating local pictures (1st & 2nd method). The 3rd method of using soundtrack picture folder is sort of a hacked way as it wasn't designed for that purpose. If you're interested in a more practical and useful approach, support this wish: https://getmusicbee.com/forum/index.php?topic=23190.0

Yes, you answered it. That the "rotationfolder" setting, is a fixed background thing only. And that it only has a folder location setting to display local images.

I can use the Gallery parameter to create a slideshow at any size and anywhere in TM using the tag parameter.

For Example: This creates a nice little Artist show next to my album cover art.
Code
<element type="Gallery" x="260" yAnchor="Panel.Bottom" y="-250" width="128" height="128" min="128" max="128" aspectRatio="zoomstretch" brightness="1.0" bdr="255,10,10,10" interval="10" tags="artist" ></element> 

And of course I support that wish
And thank you for all the wisdom you impart  :D

2
I followed the instructions here to the letter, and still got the Briefly showing correct image from the folder then it automatically switched back to gathering images from the internet again.

That's because you didn't follow the instructions properly. I said you should remove the gallery element.

tags="Landscape"   -- removed

And all works like a charm now.
Don't know why this worked, and if it will work on every system, but it sure did work for me.

That has the same effect as removing the gallery element as now it shows nothing with tags attribute removed, becoming transparent. What you see is background images (your local pictures), not gallery images.

Ok I see that now, it was confusing as I saw the code assuming that it was part of the solution, and just didn't see that you said to remove it.

Now, this removed, is the :

<settings backgroundImage="Default Landscape.jpg" />
<settings rotationFolder="Landscapes2" />

The only thing that is guiding the "slideshow" And defaulting to the entire background?
What if one wanted to change the size and placement of this?
Can this "folder and rotation be accessed separately? If so How?

Thanks for the clarification by-the-way

James

3
I know this is a very old post, but I do not see anything similar or as good of an explanation so I'll add a bit here.

I followed the instructions here to the letter, and still got the Briefly showing correct image from the folder then it automatically switched back to gathering images from the internet again.

Well with a lot of head-scratching and hand wringing, I for some reason thought to remove the "tag" code.

ORIG.CODE
<element type="Gallery" x="1" y="1" widthDock="Panel" width="-2" heightDock="Panel" height="-2" aspectRatio="stretch" interval="60" tags="Landscape" ></element>

ALT>CODE
<element type="Gallery" x="1" y="1" widthDock="Panel" width="-2" heightDock="Panel" height="-2" aspectRatio="stretch" interval="60" ></element>

tags="Landscape"   -- removed

And all works like a charm now.
Don't know why this worked, and if it will work on every system, but it sure did work for me.

James

4
TheaterMode / Re: Theater mode Customization
« on: April 07, 2019, 04:05:29 PM »
This old Theatre Mode displays the current time of day of 10:40 PM

using this xml...

<element type="Time" xAnchor="#InfoBar.Right" x="-138" yAnchor="Panel.Bottom" y="-50" width="120" align="Right" font="Dosis" style="Bold" size="14" fg="120,128,0,0" ></element>

...But running the same code today, albeit 6 years old, the AM / PM element does not show after the hr:min
For me, it conforms to whatever format I have my windows time display "Short Time" set to.  If I change that and restart MB, it uses the changed setting.  If I change it back and restart MB, it uses the old setting.

For your "Second" question..


Thanks! Yeah I got the time onscreen, with similar code. But good to know that it takes on the "format" of your system. But it would be nice to be able to "force" it to use a 24hour closk, or to have the added "extras" of seconds, or blinking ":" colon

5
TheaterMode / Theater mode Customization
« on: April 07, 2019, 02:09:45 AM »
Howdy all.
If you give me enough rope I'll hang myself  LOL
Anytime I can easily code and "skin" a good program I'm there.
So I'm working on a clean but feature laden TM customization.

I Finally figured out how to run a local slideshow with Mbee.
And dunno if it's a fluke or not, but I removed the "tag" code and it finally worked and runs great.
Landscapes2 folder in the SharedArtwork folder.

<settings backgroundImage="Default Landscape.jpg" />
<settings rotationFolder="Landscapes2" />
<!--  <settings rotationPeriod="10" /> -->
<settings rotationPeriod="EndOfTrack" />
<!-- TAG "Landscape" was removed from the next line and all finally worked -->
<element type="Gallery" x="1" y="1" widthDock="Panel" width="-2" heightDock="Panel" height="-2" aspectRatio="zoomstretch" interval="60" ></element>

Now that I got that working, is there ANY way to "fade/Crossfade" A/B fade the images? I have them change at the end of a track so it's not AS jarring, but the quick cut of images isn't the best.

Secondly... I have implemented the "time" element in my "skin"
Are there any parameters that I can use. I.E. 24hour, Seconds?

Thirdly... Can type use the alpha? I can't seem to get a transparent Font?

And lastly.... The Playerbar..... What other "extras" can be used, and can there be more than one "extras"?

Thanks for any help.

James

Pages: 1