ReasonRemoteMapHelper Thread

Want to talk about music hardware or software that doesn't include Reason?
Post Reply
User avatar
visheshl
Posts: 1235
Joined: 27 Sep 2019

11 Jan 2023

Hi guys,
I have updated my remote mapping utility to version 3.

https://sites.google.com/view/reasonmapgen/home

(Open desktop site, if opening on mobile devices)
A tutorial is now added.
And the tool is now good enough to generate simple mappings.
I will add more line generators if someone needs. Let me know if you need me to add a particular line generator.

(Mods : this is not a duplicate thread, the earlier thread was me asking for testers. If you want you can delete that thread. But please keep this thread here)
Last edited by visheshl on 11 Jan 2023, edited 1 time in total.

MrMeeseeks
Posts: 55
Joined: 06 May 2017

11 Jan 2023

Hi this seems to not work unless you are google workspace subscriber? Unless I am missing something



User avatar
mjxl
Posts: 600
Joined: 23 Nov 2018

20 Jan 2023

I get an empty page on both links, console logs an error regarding "authuser"

User avatar
visheshl
Posts: 1235
Joined: 27 Sep 2019

20 Jan 2023

Download this...open it in a browser
ReasonRemoteUtility-Version3.2.zip
Had to remove it from the website for some reason.

If there's enough interest in this and Reason Studios do not have a problem, i can upload it to the website.


User avatar
mjxl
Posts: 600
Joined: 23 Nov 2018

20 Jan 2023

Some problems in the html file:

Code: Select all

<section-div> // technically doesn't exist, it's either <section> or <div>

<DOCTYPE html> // missing (start of file)

</html> // is missing at end of file

<form> // doesn't close :P
It then works though !

User avatar
visheshl
Posts: 1235
Joined: 27 Sep 2019

20 Jan 2023

mjxl wrote:
20 Jan 2023
Some problems in the html file:

Code: Select all

<section-div> // technically doesn't exist, it's either <section> or <div>

<DOCTYPE html> // missing (start of file)

</html> // is missing at end of file

<form> // doesn't close :P
It then works though !
Html allows custom tags, most modern browsers support it.
I'll add doctype if its that important.
Can't believe /html tag is missing will check.
I have it online now on

https://www.reasonremotehelper.com/

See if the site opens and tell me which browser you're using, because i have tested it and it works perfectly fine...

User avatar
mjxl
Posts: 600
Joined: 23 Nov 2018

20 Jan 2023

It works now \o /

Custom tags work yeah, but they should be used by creating customElements.

Code: Select all

customElements.define('section-div', sectionDiv) // where sectionDiv is a class that implements a custom element
Also here's a few snippets to simplify some of your code a bit ;)

Upon reading a text file, we can handle the output like this:

Code: Select all

// let's say "content" is the content of Remote Info text file
const lines = content.split('\n');
const [developer, device] = lines[2].split('\t'); // get "Propellerhead" as developer, "se.propellerhead.Europa" as device

const parameters = lines.slice(5);
const outputParameters = parameters.map(param => `Map	"Control"	${param.split('\t')[0]}`)
// creates a list of parameters, like for example "Map	Control	Volume"
I'm actually working on some code handling the txt files too so :P

User avatar
visheshl
Posts: 1235
Joined: 27 Sep 2019

20 Jan 2023

Ok, im not an expert, i wanted a tool to help me build remotemaps for myself, so i put it together with duct tape 😁

Btw you can now add custom lines with ease.
It solves the main problem that you cannot see tab,space or newline characters when making your map with a txt editor.

https://www.reasonremotehelper.com/


Post Reply
  • Information
  • Who is online

    Users browsing this forum: No registered users and 5 guests