javascript documentation
Moderator: NiceLabel Support Team
javascript documentation
Is there any documentation that shows how ivolution came up with that javascript for creating and using the ActiveXObject 'PocketNicePrint.Engine.1'? (Ref: NiceForum Forum Index -> Mobile Wireless Printing -> JScript: Pocket PC print with ActiveX)
I can't find *any* other javascript samples or documentation anywhere else on this site.
I can't find *any* other javascript samples or documentation anywhere else on this site.
Regards
Hi Sashu.
Here is a sample that connects to the engine:
<script type="text/Jscript">
function test() {
try{
alert( "Starting" );
var PocketNice = new ActiveXObject("PocketNiceEngine.Engine.1");
alert( "Success" );
}
catch (e) {
alert("Error: " + e.description)
}
}
</script>
<input type="button" value="Test this!" onClick="test();">
Here is a sample that connects to the engine:
<script type="text/Jscript">
function test() {
try{
alert( "Starting" );
var PocketNice = new ActiveXObject("PocketNiceEngine.Engine.1");
alert( "Success" );
}
catch (e) {
alert("Error: " + e.description)
}
}
</script>
<input type="button" value="Test this!" onClick="test();">
NiceLabel Development
www.google.com?
http://www.oreillynet.com/pub/a/javascr ... al_js.html <-- first entry in google results

http://www.oreillynet.com/pub/a/javascr ... al_js.html <-- first entry in google results

NiceLabel Development
No, no, no...
This is the correct link with more information.
Sorry, tulipa, we are not making fun of you. But this forum is not really the correct place for Dreamweaver questions.
This is the correct link with more information.
Sorry, tulipa, we are not making fun of you. But this forum is not really the correct place for Dreamweaver questions.

Saso Fleiser
Senior Technical Product Specialist
Senior Technical Product Specialist
Re: javascript documentation
I'm just starting out learning javascript. Does anyone have any tips on starting out and resources online or programs (free) to suggest?
Last edited by tiffanly on Fri Aug 07, 2009 1:50 pm, edited 1 time in total.
Re: javascript documentation
Saso Fleiser
Senior Technical Product Specialist
Senior Technical Product Specialist
-
- Newcomer
- Posts: 1
- Joined: Sat Sep 06, 2014 1:29 pm
- Location: Chennai
- Contact:
Re: javascript documentation
Thank u saso.. your replay is useful for me..