Indesign Java Script running error

Hi 
I am new in indesign scripting
I want to create indesign Application using java script and without using ExtendScript ToolKit
In this case how create app (the application object).
if i use ExtendScript ToolKit then there is no need to create application object. app is bydefault
But i do not want to use of ExtendScript ToolKit .
I want to create simple java script using
<script type="text/javascript">
//body
</script>
when i run my java script (.js) file then it create indesign Application (instance).
For example on mac in Apple Script when i run my apple script
tell application "Adobe InDesign CS5.5"
set myDocument to make document with properties
end tell
in apple script editor which is inbuild with mac, Indesign Application start(create) sucessfully.
There is no need any ExtendScript ToolKit type tool to run (start) indesign application.
only script line  tell application "Adobe InDesign CS5.5"   create application instance.
In VBScript we create application object using this :
VBScript
Set myInDesign = CreateObject("InDesign.Application")
In Java Script how create Indesign Application  Object.
I try to create Indesign Application object but not sucess.
<!DOCTYPE HTML>
<html>
<head>
<title>Testing JavaScript</title>
</head>
<body>
<script type="text/javascript">
var app = CreateObject("InDesign.Application");
var myDocument = app.documents.add();
var myTextFrame = myDocument.pages.item(0).textFrames.add();
myTextFrame.geometricBounds = ["6p", "6p", "24p", "24p"];
myTextFrame.contents = "Hello World!";
</script>
</body>
</html>
How create Indesign application Object using JavaScript ?

Thanks Mark for reply
I put my script at Trusted location C:\\Documents and Settings\\Administrator\\My Documents\\Adobe Scripts\\NewSript.jsx
Now I want to execute my script using below method but it not execute and return message "No documents open".
#include "indesign.h"
INDESIGN::_Application oApplication;   
if(oApplication.CreateDispatch(L"InDesign.Application") ==0)  // it start Indesign Application
        // Dispatch is not created
CString ScriptPath =L"C:\\Documents and Settings\\Administrator\\My Documents\\Adobe Scripts\\NewSript.jsx";
oApplication.DoScript(COleVariant(ScriptPath),long(1246973031),covOpti onal,long(1699967573),ScriptPath);
It prompt message "No document open". While I double click on NewScript.jsx it run sucessfully.
General syntex of  oApplication.DoScript() is
any doScript (script: varies[, language: ScriptLanguage=ScriptLanguage.UNKNOWN][, withArguments: Array of any][, undoMode: UndoModes=UndoModes.SCRIPT_REQUEST][, undoName: string=Script])
Executes the script in the specified language as a single transaction.
I use long(1246973031) for The java script language.
I do not understand where is problem.
my .jsx file data is
var myDocument = app.activeDocument;
var myTextFrame = myDocument.pages.item(0).textFrames.add();
myTextFrame.geometricBounds = ["6p", "25p", "30p", "30p"];
myTextFrame.contents = "Adobe Indesign !"
Thanks

Similar Messages

  • Why do i keep having java script application error "on HidePage called" everytime i launch, browse and close Firefox?

    why do i keep having java script application error (on HidePage called) everytime i launch, browse and close Firefox?
    == URL of affected sites ==
    http://
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4

    Hello Bo.
    It's possible that you are having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not caused by one (or more than one) of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] (don't forget to select ''Disable all add-ons'' when you start safe mode). If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and theme and [https://support.mozilla.com/en-US/kb/Troubleshooting+plugins this one] for plugins.
    If you need support for one of your add-ons, you'll have to contact its author.

  • My toolbar is missing and there is a button where it used to be that says "Please re-install the Toolbar" but when I click on it nothing happens? Also when I start Firefox I get a script running error how do I solve these issues?

    My toolbar is missing and there is a button at the top left that asks me to "Please re-install the Toolbar" but when I click on it nothing happens???
    Then when I start Mozilla I get a long delay before it launches and a script running error "A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script: chrome://tavgp/content/libs/include.js:595"
    How do I solve these issues???

    No idea - and you provide no clues
    what version of iPHoto do you have? Of the OS? is the iPhoto icon you are speaking of in the Dock?
    re-read your post and try to provide information using standard Mac terms since we can not see you or your computer and only have your worrds to let us try to help you
    Somehow my "IPhoto" icon now says "Preview".  When I click on "Preview" nothing opens up except the bar says Preview.  When I click on the Preview on the bar, a box opens up with different items, except when I click on any of them, there is nothing there.  The only thing that work is the "quit preview".  However, it is still there where my IPhoto icon should be.  I can't get into my IPhoto.  How do I get rid of this "Preview" and how did it end up taking over the IPhoto icon???
    If you go to your Applications folder and double click on iPhoto what happen?
    LN

  • Ever since I downloaded FF's v6, everytime I go to YouTube and open a video, I get an error message that says: "[Java Script Application] Error: Div is null" How do I fix this problem?

    If I go to YouTube, no matter what video I click on to watch, the error message "[Java Script Application] Error: Div is null" pops up. It started happening right after I updated to FF v6. I also have installed the latest version of Java. I submitted this question a few weeks ago, but never received a reply.
    Thanks for any help you can provide to fix this.
    Scott Cromwell
    [email protected]

    hello, can you try to replicate this behaviour when you launch firefox in safe mode once? if not, maybe an addon is interfering here...
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

  • Hello Friends, I am new in InDesign Java Script

    Hello Friends,
    I am new in InDesign Java Script. I want to edit the page's master text Frame Object through Java Script. Any Idea regarding this will help me a lot.
    thanks in advance

    Have you read any of the documentation? It doesn't seem so :-)
    Vivek Singh, the documentation is a great tool for understanding object model. Once you got the main concept of hierarchy between objects, accessing objects is quite a child game.
    I am not meaning scripting is easy but have a look on the documentation, it's a essential starting point. I bought too the Peter Karhel's guide
    http://oreilly.com/catalog/9780596528171/index.html
    it's really cheap regarding to the quality of the learning.
    Welcome in this world.
    BTW, masterspreads is a property of document. So you should work with something like :
    app.activeDocument.masterSpreads[0].xxx
    Loic

  • Whenever I use facebook I'm getting this error message [Java Script Application] Error: options is undefined whenever I click on a link. What can I do to fix this problem? Easy step by step instructions please.

    When I use facebook, I keep getting this message [Java Script Application] Error: options is undefined whenever I try to return something, click on a link, or message, open a game, etc. ... I have Windows 7, addons of greasemonkey and better facebook (which seems to have disappeared)
    == URL of affected sites ==
    http://www.facebook.com/reqs.php#!/?ref=home

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Whenever i open gmail it appears which says-"java script application,Error: Illegal operation on WrappedNative prototype ",how this will resolve,anyhow.object

    Question
    whenever i open gmail it appears which says-"java script application,Error: Illegal operation on WrappedNative prototype ",how this will resolve,anyhow ?

    This is usually caused by an extension that is using a name for a variable or function that has become a reserved variable name and thus can't be used anymore.<br />
    You will have to check if there is an update is available for your Firefox 29.0a2 Aurora version.
    If it works in Safe Mode and in normal mode with all extensions (Firefox/Tools > Add-ons > Extensions) disabled then try to find which extension is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "Firefox > Exit" (Windows: Firefox/File > Exit; Mac: Firefox > Quit Firefox; Linux: Firefox/File > Quit)
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Why do I keep getting Java Script address error messages?

    I just installed FF on my Macbook, and am constantly getting java script address error messages popping up.

    Does the below article help resolve the messages?
    * [[Warning Unresponsive script - What it means and how to fix it]] < Click to see article

  • When accessing the form on the races instead of a form guide I get a java script void error. How do I fix this please ?

    When in the TAB Racing site at a particular race I click on Form to access the form guide for that race. Instead of the form guide I get an error message " Java Script Void " This has only started recently and not as a result of anything I have done ..... HELP !!!

    Delete the song from your library and re-download it from the Purchases section of the iTunes Store.
    http://support.apple.com/kb/PH12491

  • Java script 404 error

    As soon as I on wi if it opens page with java404 error and did not allow me to login my isp and if if close this page and try to go to safari to login it disconnects wi fi, in previous iOS I have never came across such problem

    Java and Java Script are different things. If you need Java Script, go to Settings>Safari>Java Script>On.

  • This java script run Microsoft Ie. but it can't run with Mozilla browser.

    this script run url with Microsoft Internet Explorer. But can't Mozilla Firefox Browser
    How can run it in Mozilla Firefox
    here is java script code.
    <f:verbatim>
    <script type="text/javascript">
    function karakterSayisiniSinirla(inMetinOge, inBildirimOge, inAdet)
    if (inMetinOge.value.length &gt; inAdet) {
    inMetinOge.value = inMetinOge.value.substring(0, inAdet);
    else {
    inBildirimOge.value = inAdet - inMetinOge.value.length;
    </script>
    </f:verbatim>

    i put this script in afh header
    <?xml version='1.0' encoding='windows-1254'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:af="http://xmlns.oracle.com/adf/faces"
    xmlns:afh="http://xmlns.oracle.com/adf/faces/html"
    xmlns:cust="http://xmlns.oracle.com/adf/faces/customizable">
    <jsp:output omit-xml-declaration="true" doctype-root-element="HTML"
    doctype-system="http://www.w3.org/TR/html4/loose.dtd"
    doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
    <jsp:directive.page contentType="text/html;charset=windows-1254"/>
    <f:view>
    <afh:html binding="#{backing_gercekkisi.html1}" id="html1">
    <afh:head title="gercekkisi" binding="#{backing_gercekkisi.head1}"
    id="head1">
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1254"/>
    <style type="text/css">
    body {
    background-color: #e7e7e7;
    </style>
    <script type="text/javascript">
    function karakterSayisiniSinirla(inMetinOge, inBildirimOge, inAdet)
    if (inMetinOge.value.length &gt; inAdet) {
    inMetinOge.value = inMetinOge.value.substring(0, inAdet);
    else {
    inBildirimOge.value = inAdet - inMetinOge.value.length;
    </script>
    </afh:head>
    and then i call this script like this
    <af:inputText value="#{bindings.SorunAciklama.inputValue}"
    label="İstenen Bilgi veya Belgeler :"
    required="#{bindings.SorunAciklama.mandatory}"
    columns="40"
    binding="#{backing_gercekkisi.inputText7}"
    id="inputText7" rows="5"
    tip="(Ayrılan alana en fazla 2000 karakter uzunluğunda metin girebilirsiniz)"
    onchange="karakterSayisiniSinirla(this, document.getElementById('kalan'), 2000)"
    onkeydown="karakterSayisiniSinirla(this, document.getElementById('kalan'), 2000)"
    onkeyup="karakterSayisiniSinirla(this, document.getElementById('kalan'), 2000)">
    <af:validator binding="#{bindings.SorunAciklama.validator}"/>
    </af:inputText>
    <af:panelHorizontal halign="center">
    <f:verbatim>
    <p>
    <font size="2" color="#0000ff">
    Kalan:
    </font>
    <input type="text" name="kalan" value="2000" size="4"
    readonly="readonly"/>
    </p>
    </f:verbatim>
    </af:panelHorizontal>
    but this script can't in Mozilla.

  • HT2476 Java - why does Java script run and interupt Scrabble on Pogo -

    I spend more time trying to get the Java script off the Scrabble game - how come it takes over and how do I get rid of it??

    Java or JavaScript? <br />
    http://kb.mozillazine.org/JavaScript_is_not_Java
    http://kb.mozillazine.org/Java <br />
    http://kb.mozillazine.org/JavaScript

  • Java Script popup error

    Hi Guys ,
    I am getting the following error when i try to popup a OA Page from another OA page
    using js
    from Jdev the error is
    Error
    Unexpected URL parameters have been detected and will be ignored.
    When i move to the server this is the error
    You are trying to access a page which is no longer active .. searched all the previous threads
    and have set all the required profile options
    destination URI of the link
    javascript:var a = window.open('OA.jsp?page=/js/oracle/apps/cie/js/server/page2&retainAM=y','a','height=500,width=900,status=yes,toolbar=no,menubar=no,location=no');a.focus();
    FND_VALIDATION_LEVEL                     None
    FND Function Validation level               None
    Framework Validation level               None
    Framework Compatibility                11.5.10
    But still the same error
    Another Strange thing
    Initially the FND Function Validation level was Error which i changed it to None after the change
    i am not able to open the seeded pages also (XML Publisher Pages) then when i change it back to error
    i am able to open the seeded pages
    Help appriciated
    Thanks
    Tom...

    Tom,
    In ur first reply u said "from Jdev the error is ..." , from that i get u are undergoing this error in jdev, rite? Just try this after deploying in server. I am asking this because in one recent previous thread u said that even standard oadialogpage is not working on ur jdev.
    I feel something missing in core js libs in jdev patch ur using.Just try to deploy in server and run.I guess ur on 11.5.10?rite?
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • I updated firefox and now I get jave java script application error all the time, please help

    so now I am on IE and do not want to be there.

    And that error message said ....?
    '''{Ctrl + Shft + J}''' to open the Error Console, then locate that particular error message, and right click that message - select '''''Copy''''' - then paste that message into the Post a Reply box here so we can see that message.

  • Java script giving error

    Dear All,
    I am trying to a do a simple thing but nothing happens.
    Requirement :
    In my interactive form when I click on the check box i want a table to be invisible else it should be "visible" by default.
    The code which i have used on the click event is :
    if ( chb_acc.rawValue == "1" )
    then
    tbl_acc.presence = "hidden" ;
    endif
    When I click on the checkbox nothing happens.This is the exact code so please do let me know if I have missed out on anything.
    Regards,
    Geet

    hello geet ,
      you are not using the right code .
    If you are using Javaacript as scripting language ,then
    if  (CheckBox1.rawValue     == 1)
    Table1.presence     = "invisible" ;
    else
    Table1.presence = "visible" ;
    if  you are using Formcalc then code should be -
    if  (CheckBox1.rawValue     == 1)
    then
    Table1.presence     = "invisible"
    else
    Table1.presence = "visible"
    endif
    here , table1 and checkbox1 should be object names.
    hope this helps .
    thanks,
    sahiba

Maybe you are looking for