Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

A mouseover or click to show a better picture of the token

Does anyone know if the map mode supports a means for the players to click on a monster, npc or etc token that would show a larger picture of the creature or item.  Not a larger image of the token, but a larger portrait image?
1445182587
Pat S.
Forum Champion
Sheet Author
Does this cover what you need? <a href="https://wiki.roll20.net/Keyboard_Shortcuts" rel="nofollow">https://wiki.roll20.net/Keyboard_Shortcuts</a> Miscellaneous Pressing "Z" with an object selected shows a larger version of that object in a modal popup Pressing Shift+Z as the GM shows all players the larger version of that object
1445195181
Ziechael
Forum Champion
Sheet Author
API Scripter
You could set the image you want to show the players as the profile image on the journal entry and when you are ready for the reveal use the 'show to players' button. This will prompt you to give them access and then throw it onto their screens rather than giving a zoomed version of the token on the table. The players will only be able to see the profile pic and text but not the GM notes or the associated character sheet etc so don't worry about them getting too much info :)
1445200768
Kryx
Pro
Sheet Author
API Scripter
Pat S. said: <a href="https://wiki.roll20.net/Keyboard_Shortcuts" rel="nofollow">https://wiki.roll20.net/Keyboard_Shortcuts</a> Miscellaneous Pressing "Z" with an object selected shows a larger version of that object in a modal popup Pressing Shift+Z as the GM shows all players the larger version of that object Amazing!
Thanks folks that helped, but they really should support the portrait image too...
1445828221
vÍnce
Pro
Sheet Author
Aaron wrote a small script that I use that you might like. &nbsp;Cheers #ShowPortrait !char-pic @{target|Who?|character_id} script //version: 1.0 //use !char-pic to show a character's portrait in chat. on('ready', function() { &nbsp; &nbsp; on('chat:message', function(msg) { &nbsp; &nbsp; &nbsp; &nbsp;if (msg.type == "api" && msg.content.indexOf("!char-pic") !== -1) { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;var charid =msg.content.split(' ')[1]; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;var c = getObj('character',charid); &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if(c) { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;var fPart = "&lt;div style='margin-left: -20px; box-shadow: 2px 2px 5px #000; padding: 0px; border: 2px solid #000; border-radius:5px; overflow: hidden;"; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;var Pic = fPart + "background-color:#FFF;'&gt;&lt;img src='" + c.get('avatar') + "'&gt;&lt;/div&gt;"; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;sendChat('', "/direct " + Pic); &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } &nbsp; &nbsp; &nbsp; &nbsp;}; &nbsp; &nbsp; }); });
Vince, I will give it a try! &nbsp;Thanks