|
|
| Author |
Message |
RomanGuzi
Joined: 17 Apr 2008
Posts: 20
|
Posted: Fri Aug 29, 2008 11:26 pm Post subject: FF: CallCmd from JS does not work |
|
|
Hi there,
I tested example you provided with Toolbar Studio (Help-> Javascript Interface) and it does not work.
Literally:
Run any toolbar command from JS
You are able to run any command assigned to the button/menu item from a webpage:
Example 1:
To uninstall toolbar from a webpage use HTML with the following Javascript code:
<script>
var MyTool=null;
function ToolBarInit(tool)
{
MyTool=tool;
}
function Uninst()
{
if(MyTool)
{
MyTool.CallCmd("register");
MyTool.CallCmd("uninstall");
}
}
</script>
<Button onclick="Uninst();">Uninstall</button>
-----------------------------------------------------
Example you provided does not work in FF. Toolbar object does not have CallCmd method.
Thank You. |
|
| Back to top |
|
 |
Admin Site Admin
Joined: 22 Aug 2006
Posts: 1055
|
Posted: Mon Sep 01, 2008 10:18 am Post subject: |
|
|
| This feature is just not supported for Firefox browser , can be added at additional cost. |
|
| Back to top |
|
 |
RomanGuzi
Joined: 17 Apr 2008
Posts: 20
|
Posted: Tue Sep 02, 2008 5:40 pm Post subject: |
|
|
Is that company policy to charge customers for such things?
You claim that your software is capable to produce IE and FF toolbar in on shot. But actually some features does not work in FF and you telling me that I have to pay for it.
When I create FF installer I am getting a message that Plugins are not supported. Why I am not getting message that:
1. %reg macrosubstitution
2. tool.RegistryValue
3. CallCmd
are not supported as well?
That is not fair and can affect your business not in good way. |
|
| Back to top |
|
 |
Admin Site Admin
Joined: 22 Aug 2006
Posts: 1055
|
Posted: Wed Sep 03, 2008 4:04 am Post subject: |
|
|
These are new features added recently for IE browser toolbar only.
Firefox converter is limited on it's features set because it is different from IE architecture, therefore it takes additional time for developing and implementation. And IE browser is still more popular.
So we do provide Firefox support of new feature at request.
We'll update the JS documentation soon. |
|
| Back to top |
|
 |
|