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 .
×

[Help] Viewing character sheets

In response to this old thread:&nbsp; <a href="https://app.roll20.net/forum/post/1702754/slug%7D" rel="nofollow">https://app.roll20.net/forum/post/1702754/slug%7D</a> Would it be possible to create attributes based on playerids? And then create tab attributes per player (or even per player allowed to edit that sheet) and give each player a personal tab?
1454289604
Lithl
Pro
Sheet Author
API Scripter
You could chuck an entire sheet into a repeating section, and you could probably use sheet workers to created tabbed behavior (because of the way repeating sections work, you wouldn't be able to make pure-CSS tabs that exist in many sheets). However , everybody looking at the sheet would always see the same tab, so trying this as a means to have multiple people with their own "part" of a sheet seems impractical. If Player A is looking at his tab and Player B tries to switch to his tab, Player A's view would switch to Player B's tab. This might be something reasonable for the GM to keep track of things for multiple characters in one window, but you could also just have multiple character sheet dialogs open with about the same amount of effort on the GM, and a ton less effort on the sheet creator.
1454338948
chris b.
Pro
Sheet Author
API Scripter
Even with sheetworkers I haven't found a way to use javascript to hide/unhide sections, since we don't have access to the actual elements. We only have access to the values of each input field. I am starting to just write macros to whisper to me the field I want at the time. There really are only a few I need, it's easier than the whole sheet. And also I tend to write ones that print out everyone rather than me picking a bunch of stuff.
Too bad, thanks guys.
1454385165

Edited 1454385176
Lithl
Pro
Sheet Author
API Scripter
chris b. said: Even with sheetworkers I haven't found a way to use javascript to hide/unhide sections, since we don't have access to the actual elements. We only have access to the values of each input field. The same way you hide/unhide sections without sheet workers: set the value of a radio or checkbox using the script, and then hide/unhide based on the value of that input using CSS.