Shoutbox

Images - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: Images (/showthread.php?tid=68584)

Images by Spunky on 11-17-2006 at 11:57 PM

I was just wondering where I could find a list of the images built in to Plus so that I could use one or two in my script (or better yet, if someone could explain to me how, if it is even possible, to use your own images).

I don't mean using the Image component, but rather images for use with buttons etc.


RE: Images by phalanxii on 11-18-2006 at 12:47 AM

Use Resource Tuner to open "MsgPlusLiveRes.dll" in the main Messenger Plus! Live folder. When you open it, find the "PNG" tree. All of the images in the folder are embedded in Messenger Plus! Live.

To use them in a button or something, use the filename without the "IMG_" prefix (case-insensitive). For example, given an image called "IMG_BUDDY-BLOCKED", use:

code:
<Image><Name>buddy-blocked</Name></Image>
Be sure to note that large images won't necessarily be visible in things like buttons.

A list of available images:
code:
about-gfdd
about-logo
about-nico
boldbtn
buddy-away
buddy-blocked
buddy-busy
buddy-floatingnickname
buddy-mediachange
buddy-musicchange
buddy-namechange
buddy-offline
buddy-online
buddy-psmchange
c01
c011
c0a
c0b
colormodebtn
colorselect
config-accept
config-email
config-encryption
config-eventview
config-floating
config-lock
config-logging
config-logo-bg
config-logo-only
config-logo-right-bg
config-personalisedstatus
config-quicktext
config-sounds
config-tabs
config-transparency
contactcleanup-block
contactcleanup-message
contactlistcleanup-tab
contactlistcleanup-tab2
conversations-logging
cz01
cz011
cz0a
cz0b
emailicon-17
formatpanelicon
g00
g00cz
g00line
g01
g011
g0a
g0b
icon-arrow
icon-chat
icon-down
icon-event
icon-floppy
icon-play
icon-refresh
icon-speaker
icon-transparency
icon-up
icon-update
icon-warning
italicbtn
m01
m011
m0a
m0b
message-small
notification-little
notification-main
panel-general
panel-quicktexts
panel-scripts
panel-sounds
plusicon-16
plusicon-17
plusicon-23
preferences-arrow
preferences-conversation-autoaccept
preferences-conversation-logencryption
preferences-conversation
preferences-customize
preferences-email
preferences-eventlog
preferences-floppy
preferences-keys
preferences-language
preferences-lock
preferences-logo-bottom
preferences-logo-text
preferences-logo-top
preferences-logoright-bottom
preferences-logoright-top
preferences-messenger-multiple
preferences-personalisedstatus
preferences-points
preferences-quick-icon
preferences-quicktext
preferences-side-convos
preferences-side-customize
preferences-side-general
preferences-side-messenger
preferences-tabbedchats-options
preferences-tabbedchats
preferences-unlock
sounds-add
sounds-add2
sounds-check
sounds-check2
sounds-delete
sounds-delete2
sounds-directory
sounds-edit
sounds-edit2
sounds-finished
sounds-import
sounds-info
sounds-invert
sounds-invert2
sounds-main
sounds-play-little
sounds-play
sounds-play2
sounds-rec-little
sounds-rec
sounds-speaker-little
sounds-volume
soundspanel_games
soundspanel_movies
soundspanel_music
soundspanel_sfx
soundspanel_voice
strikebtn
title-contactinfo
title-contactlistcleanup
title-contactsondesktop
title-conversation-logging
title-importexport
title-messenger-lock
title-scripts
underlinedbtn
windowbkg
I think this is what you want... ^o) I've attached a RAR archive with all the images if you want to see them.

As for using your own images, I think you need a folder called "Images" in your script folder, and reference the image as the filename (for example, "Images\my-image.png"):
code:
<Image><Name>my-image</Name></Image>

RE: Images by deAd on 11-18-2006 at 12:56 AM

For your own images, Plus looks by default in the Images folder relative to your script's directory, but if you specify it in the path plus will ignore that.


RE: Images by Spunky on 11-18-2006 at 01:06 AM

Thanks guys! Using a couple of plus images just for little "toolbar" buttons... Gonna need my own on some BIG buttons though :D