Skip to content

Instantly share code, notes, and snippets.

Created September 18, 2017 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/89e954eb1c9141286e165d406d7a61e6 to your computer and use it in GitHub Desktop.
Save anonymous/89e954eb1c9141286e165d406d7a61e6 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>REAPER ACTIONS</title>
<style type="text/css">
body {
background-color: #fff;
color: #424242;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.action {
font-weight: bold;
padding: 1em;
border: 1px solid #424242;
float: left;
margin: 0.25em;
}
.action:hover {
cursor: pointer;
background-color: #3aa3d8;
color: #ffffff;
}
</style>
<script src="main.js"></script>
<script type="text/javascript">
wwr_start();
</script>
</head>
<body>
<div id="container">
<div id="action-list">
<!-- standard reaper action / just copy & paste this lane replacing action ID in the wwr_req() & the text -->
<div class="action" onClick="wwr_req(41142)">Show Last Touched FX Param</div>
<!--
custom action example (you don't have this, it's just an example)
SWS extentions have to be "wrapped" in a custom action because wwr_req() doesn't accept SWS ids (yet)
-->
<div class="action" onClick="wwr_req('_c4ff4a992e89804ca1be1140ca7a1d32')">Toggle Track FX Chain</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment