• We just upgraded the platform on which this website runs! Please inform @Jaxel of any issues.

Search results

  1. Jaxel

    Implemented Boolean Data(True/False) and toggle data in Stream deck

    I just added a new Stream Deck package: http://8wr.io/threads/video-tutorial-integration-with-elgato-stream-deck.4/post-33 Also, I updated the unchecked value to be 0 instead of undefined.
  2. Jaxel

    Video Tutorial - Integration with Elgato Stream Deck

    Version 1.1 Added a "Swap Fields" function. In most fighting games, people sit in their proper seats... but in some games, such as Smash Bros, characters are placed in random starting locations; which means players don't really care if they are sitting in the right seats or not. This button...
  3. Jaxel

    Implemented Boolean Data(True/False) and toggle data in Stream deck

    Done... You can now create fields for "check boxes". These are simple checked and unchecked boxes. Check boxes don't have a "database", so instead, the the database field can be used as labels for each of your check boxes. Also keep in mind that if checked, the value of the check box will be...
  4. Jaxel

    Scoreboard Assistant Android App Now Available!

    We've recently released an Android app for this website! It's really just a web-view front end for this website, but it gives direct access to your scoreboards. https://play.google.com/store/apps/details?id=com.ewr.scoreboardassistant
  5. Jaxel

    Can I embed a page in another website?

    What do you mean? Like an iFrame? DONE. I have enabled the ability to embed browser source URLs on any server.
  6. Jaxel

    Implemented Copy page

    Cut and paste is too hard? BTW, if you want to use CSS/JS in multiple pages, I recommend putting in the global package settings, instead of the individual page settings.
  7. Jaxel

    8wr.io Moves Out of Beta... But Remains Free For Now!

    http://8wr.io/threads/video-tutorial-spotify-other-external-services.10/
  8. Jaxel

    Video Tutorial - Spotify & Other External Services

    Spotify Page HTML: <div class="spotify"> <div class="background"></div> <div class="image"><img src="" /></div> <div class="info"> <div>Track: <span class="track"></span></div> <div>Album: <span class="album"></span></div> <div>Artist: <span...
  9. Jaxel

    Rejected Auto save feature

    I will look into an auto-save feature in the future.
  10. Jaxel

    Rejected Auto save feature

    Why would you need to hit save 150 times? You know you can type in exact numbers... and you can also use ctrl+s to save.
  11. Jaxel

    Rejected Auto save feature

    I don't know what you mean by "auto save" feature. What's wrong with hitting the save button?
  12. Jaxel

    8wr.io Moves Out of Beta... But Remains Free For Now!

    Just like all other versions of Scoreboard Assistant, I basically write this software for myself. Thankfully, you guys in the community get to benefit from my needs. This current version, uses a third-party service called "Google Cloud Firestore". Currently, we are running off the free version...
  13. Jaxel

    We Are Now Open For Beta Testing!

    Ya lo hice en la sección de guías y tutoriales. http://8wr.io/forums/guides-tutorials.3/
  14. Jaxel

    Implemented Access data from other pages

    On your versus page, you want to access the contents of your commentators page, correct? Well you CAN do this! On every page, the reference to your package's DB is actually passed in a variable called packageDb. On your versus page custom JS, you can access the docData of your commentators page...
  15. Jaxel

    We Are Now Open For Beta Testing!

    Reminder that this website is BETA. Things are subject to change at any time. Here is a video example of scoreboards handled through this system:
  16. Jaxel

    We Are Now Open For Beta Testing!

    Welcome to version 4 of Scoreboard Assistant (for web)! I've decided to completely open up this website for beta testing! That means at least till the end of May, everyone will be able to use all the features of this website completely for free! Just register an account and you'll be able to...
  17. Jaxel

    Video Tutorial - Integration with Elgato Stream Deck

    Version 1.0 - Initial Release
  18. Jaxel

    Video Tutorial - Embedding Images Into Sources

    Addendum: When using `||` double pipes in fields, and also using the `copy` button, you can simply append a `[#]` tag to the end of the field to only get specific parts of the replacement. For instance, with `Jaxel || USA`, setting your replacement as `{players_1[0]}` will return only `Jaxel`.
  19. Jaxel

    Video Tutorial - Embedding Images Into Sources

    This video is expansion of the previous tutorial (http://8wr.io/threads/video-tutorial-advanced-scripting-and-coding.2/). As such, I will only be listed the new code added in this video. Page HTML: <div class="countries c1" id="c1"><div class="flag"></div></div> <div class="countries c2"...