I love the RCF+ gadget but we just recently started using Dameware Utilities
www.dameware.com and really like using it more than RDC. I was wondering if there would be a way of keeping all of the great stuff but have a gadget that uses the Dameware Mini Remote Control. I found where someone else wrote a small gadget that basically just inputs whatever you type into the dameware application. My hope is that I can have your gadget's functionality but start up Dameware instead of RDC.
The download link is
http://cid-7aeeab3b816bdb39.skydrive.live.com/self.aspx/Public/DamewareGadget.gadget which was found on the forums here:
http://forums.dameware.com/viewtopic.php?f=6&t=138&p=422&hilit=gadget#p422The code the other person used is:
<html>
<head>
<title>DameWare Gadget</title>
<style>
body {
width:130;
height:60;
background: url('background.png');
margin: 8px;
}
</style>
<script>
var shell = new ActiveXObject('WScript.shell');
function key() {
if (event.keyCode == 13) {
shell.Run('"C:/Program Files/DameWare Development/DameWare NT Utilities/dwrcc.exe" -m:' + host.value);
}
}
</script>
</head>
<body>
<div id="cntnt" style="font-family: Tahoma; font-size: 10pt; color: white">Dameware:</br>
<input type=text name="host" size=14 onkeypress="key()"></input>
</body>
</html>