Premise [download] IP_Images

Motorola Premise
C

chucklyons

Guest
index.php
File Name: IP_Images
File Submitter: chucklyons
File Submitted: 20 Feb 2013
File Category: Premise
Author: Chuck Lyons
Contact: PM

One of my original attempts at modifying Premise graphics was manifested in the 'iphone' images. I've long since moved away from those...Thankfully. I'm not a graphics guy, despite 123's claim, but i think the look and feel is the 'sizzle' that sells...
 
These are transparent .pngs for a lot of the images I use for filling out my Premise MB UI, as you can see in the screenshots in other posts.
 
These are not a complete replacement for classimages! However,l I think I hit a lot of the primarily used ones. If you have some image needs, let me know. I change things frequently, so adding some new images isn't a big deal...
 
These will NOT get picked up by Premise automatically as default images. You will have to set each one individually using the TagEx to locate the image.
 
Also, I modified the MB  MediaZoneEx and MediaShortcutEx after        
 
Code:
 ' Did not find a JPG so use whatever image is associated with the media object            set oImage = this.mbGetImage(oMedia)            set oImageProperty = oMedia.FindClassProperty("Image")
 
 
by adding the the following:
 
Code:
            'added this to enable custom display of images using the displayname field e.g. <img src="/images/ip/Stereo.png">Stereo ---NOTE: requires displayname length code change!! cl
            set oImageDisplayName = oMedia.FindclassProperty("Displayname")
            if not oImageDisplayName is nothing then
                sImage = oMedia.displayname
                else
            'end of custom display code switch - cl
 
This enables the loading of the custom images for folders, such as Movies, CDs, etc., by using the Media DisplayName (e.g. <img src ="/images/ip/Movies.png">Movies"). This allows the bypassing of the default image (Mediafolder) and allows more specific folder definition.
 
It may also require changing the display name length in the Global minibrowserfunctions. (and in the JQM version, landscape isn't such an issue..
            

Click here to download this file
 

Similar threads

C
Replies
2
Views
1K
chucklyons
C
C
Replies
21
Views
4K
chucklyons
C
C
Replies
2
Views
1K
chucklyons
C
C
Replies
0
Views
659
chucklyons
C
Back
Top