|
|
| Author |
Message |
Webmaster
Joined: 29 Aug 2006
Posts: 48
|
Posted: Tue Aug 29, 2006 8:37 am Post subject: How to make Google-like Uninstall page |
|
|
| How to make Google-like Uninstall page in HTML |
|
| Back to top |
|
 |
Admin Site Admin
Joined: 22 Aug 2006
Posts: 1055
|
Posted: Tue Aug 29, 2006 9:52 am Post subject: |
|
|
You need to create HTML with the following Javascript :
<script>
var TBObj=null;
function ToolBarInit(tool)
{
TBObj=tool;
}
function Uninst()
{
if(TBObj)
{
TBObj.CallCmd("register");
TBObj.CallCmd("uninstall");
}
}
</script>
<Button onclick="Uninst();">Uninstall</button> |
|
| Back to top |
|
 |
|