-
-
Save r4dian/4fbb69090212c3b75039da46d8f5c010 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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