العربية
مثال على رمز المؤثرات الخاصة لصفحة الويب، باستخدام Javascript لإنشاء اختصارات لسطح المكتب.
<script language="JavaScript"> function toDesktop(sUrl,sName){ حاول { var WshShell = new ActiveXObject("WScript.Shell"); var oUrlLink = WshShell.CreateShortcut(WshShell.SpecialFolders("Desktop") + "\ " + sName + ".url"); oUrlLink.TargetPath = sUrl; oUrlLink.Save(); } Catch(e) { تنبيه("العملية غير مسموح بها على مستوى أمان IE الحالي!"); } } </ script> <input name = "btn" type = "button" id = "btn" value = "أكاديمية بناء المواقع" onClick = "toDesktop ('http://www.downcodes.com/'،'أكاديمية بناء المواقع' )"> <input name ="btn" type = "button" id = "btn" value = "محرك الأقراص C" onClick = "toDesktop('file://C:','محرك الأقراص C')">