Version : DYNAMICS NAV 2009 R2 - 6.00.32012 - Not using RTC Client
Hi, I want to make a basic phone call using URL. Wether it opens the navigator or not doesn't matter.
The way I think could be possible is to call this type of URL :
tel:+33102030405
When I type this in my navigator, it opens my default phone app, so this should work.
Problem is:
This works, and I would like to adapt this to NAV.
<a href:"tel:+33102030405">TEL</a>
Any idea ?
Answers
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!
WSH_Shell Automation 'Windows Script Host Object Model'.WshShell
IF ISCLEAR(WSH_Shell) THEN
CREATE(WSH_Shell);
WSH_Shell.Run('tel:+33102030405');
Blog - rockwithnav.wordpress.com/
Twitter - https://twitter.com/RockwithNav
Facebook - https://facebook.com/rockwithnav/
Awesome ! Works like a charm ! Thx ♥
Sorry for the newbie question, where do you upload this lines?
Thanks for the help.