Line tool script needed

Hi,
In my job  word manuscript is coded as SL40mm for 40 mm rule, SL60mm for 60 mm rule it appears through out the page. Iam converting that one in underline option in Indesign with some spaces. In order to avoid the above step. I need a script with 40mm or 60mm etc.,  line tool which runover that mention area [SL40mm, SL60mm]. Please suggest me any idea. Is there any script for this.

Hi rajesh2373,
post your requirements snapshot to understand easily. and also post your js code what you have tried.
thx,
csm_phil

Similar Messages

  • Extra line in script needed, when looked ad with Safari,or not?

    hello to you all,
    I'm new here and I know nothing about Safari... that's why I'm here.
    Ok my questions:
    I'm building web-site for a small company that has to work with all browsers. I have 5 browsers on my development machine but no safari.
    When I use 2 forms in a document, 1 normal and 1 hidden both with a name and id, than it all works in IE, but for firefox, netscape and opera I have to put an extra line into my javascript. " infoForm = parent.document.infoForm " otherwise I get a error-message. How handles Safari these things... do I have to ad a line to my switch (using navigator appName) like "case "Safari"; infoFrom = parent.document.infoForm: break;" or is safari behaving like IE and is it gone a work without this extra line, so I can put in the switch " case "Safari"; break; ". Is Safari identifying itself as Safari or differed?
    I hope one you can help me.
    thanks in advance.
    regards,
    Douwe

    Hi,
        Just check what does the value &RKEY& is holding, whether is it displaying on output, and what what location, see that no blank lines before the DEFINE statement.
    or just copy the whole statements from DEFINE upto Y7&RKEY&, to just above the item variables and see the output. Just comment the down lones and paste them above.
    See below
    /:DEFINE &CKEY& = &TVBDPL-MATNR&
    /:PERFORM GET_KENSA IN PROGRAM ZJPV0167
    /:USING &CKEY&
    /:CHANGING &RKEY&
    /:ENDPERFORM
    Y7,,&IL_ITEM_DEL(3)&,,&TVBDPL-ARKTX&,,&QKEY&,,&MEHI&,,
    =<A1>&TVBDPL-LFIMG(CT10.0)&,,&ITEM_BACKORDER(CT10.0)&,,    
    Y7&RKEY&  "--> is this continuoes of above line? if so remove the Y7 and add =
    Regards
    Bala Krishna
    Edited by: Bala Krishna on Aug 12, 2009 3:08 PM

  • What tool I need to download to execute SQL scripts inOracle? please Help!

    I'm a SQL Server developer trying to pratice SQL scriptinging in ORACLE environment. Can any subject matter expert let me know exactly which tool I need to download to experiment with SQL scripting? It's kind of confusing as ORACLE has so many components. If I'm correct, SQL Plus might be the tool and PL/SQL is the ORACLE version of SQL language/scripting. I know that i can download 180 days of evaluation version software. Can someone tell me the exact link of the oracle tool where I can execute my SQL scripts?
    Thank you so much in advanced.
    Thanks
    Syed Islam

    Try Oracle Express Edition (XE)
    Completely free.
    You can use SQL*Plus, but coming from Windows/SQL world, you'll definitely enjoy using SQL Developer as well. That's a separate download. You'll have a worksheet, visual query builder, object navigator/browser, etc - much like you see in SSMS.

  • Problem in placing line tool position

    Hi, Can any one solve this problem.
    I have created script for line tool but it not running in particular place. I will explain in detail.
    Job Ms
    I/P: America is a [SL 10] country.
    Error in output: America is a country .................   (or)  ................. America is a country  (or)  America  ................. is a country (Rule is Placing somewere else i need correct position)
    Original output should be like this
    Error in output: America is a  ................. country
    I need a 10 mm underline instead of [SL 10]
    It should replace [SL 10] and put a 10 mm rule in that position.
    In my script rule is creating but the rule is placing some were else. Please solve this problem. Ihave created library also for [SL10]. 
    Here is my script coding
    app.findTextPreferences=null;
    app.changeTextPreferences=null;
    app.findChangeTextOptions.caseSensitive=false;
    app.findChangeTextOptions.includeHiddenLayers=true;
    app.findChangeTextOptions.includeLockedLayersForFind=true;
    app.findChangeTextOptions.includeLockedStoriesForFind=true;
    mydoc=app.activeDocument;
    app.findTextPreferences.findWhat="[SL 10]"
    myFounds=mydoc.findText();
    var myLib=app.libraries.item(0);
    var myassets=myLib.assets.item("SL10");
    for(i=0;i<myFounds.length;i++)
        myFound=myFounds[i];
        myFound.remove();
        myAnchorrule=myassets.placeAsset(myFound.insertionPoints[0])[0];
        //myAnchorrule.appliedObjectStyle=mydoc.objectStyles.item("SL");

    Hi csm_phil,
    Iam sorry last week iam out of station this script is working well but still some problem occurs.
    The problem is how to find SL20, Sl30, Sl40, Sl50 in same manuscript.
    mydoc=app.activeDocument;
    var myLib=app.libraries.item(0);
    var myassets=myLib.assets.item("SL10");
    app.findTextPreferences=null;
    app.changeTextPreferences=null;
    app.findChangeTextOptions.caseSensitive=false;
    app.findChangeTextOptions.includeHiddenLayers=true;
    app.findChangeTextOptions.includeLockedLayersForFind=true;
    app.findChangeTextOptions.includeLockedStoriesForFind=true;
    app.findTextPreferences.findWhat="[SL 10]";
    myFounds=mydoc.findText();
    for(i=myFounds.length-1;i>=0; i--)
        myFound=myFounds[i];
        myAnchorrule=myassets.placeAsset(myFound.insertionPoints[0])[0];
        myFound.remove();
    var myassets=myLib.assets.item("SL20");
    app.findTextPreferences=null;
    app.changeTextPreferences=null;
    app.findChangeTextOptions.caseSensitive=false;
    app.findChangeTextOptions.includeHiddenLayers=true;
    app.findChangeTextOptions.includeLockedLayersForFind=true;
    app.findChangeTextOptions.includeLockedStoriesForFind=true;
    app.findTextPreferences.findWhat="[SL 20]";
    myFounds=mydoc.findText();
    for(i=myFounds.length-1;i>=0; i--)
        myFound=myFounds[i];
        myAnchorrule=myassets.placeAsset(myFound.insertionPoints[0])[0];
        myFound.remove();
    var myLib=app.libraries.item(0);
    var myassets=myLib.assets.item("SL30");
    app.findTextPreferences=null;
    app.changeTextPreferences=null;
    app.findChangeTextOptions.caseSensitive=false;
    app.findChangeTextOptions.includeHiddenLayers=true;
    app.findChangeTextOptions.includeLockedLayersForFind=true;
    app.findChangeTextOptions.includeLockedStoriesForFind=true;
    app.findTextPreferences.findWhat="[SL 30]";
    myFounds=mydoc.findText();
    for(i=myFounds.length-1;i>=0; i--)
        myFound=myFounds[i];
        myAnchorrule=myassets.placeAsset(myFound.insertionPoints[0])[0];
        myFound.remove();
    This script is working for sl 10 only please check and confirm

  • Oracle Http server 11g, change ports with command-line tool

    I have installed the WLS11g webtier's Oracle Http server 11g. I installed the OH 11g only.
    The OH is runing fine with ports: non-ssl 7779 and ssl 4444
    I want to change the ssl port to 443 such that we can have the url without showing the port as https://hostname.domain/
    I have looked up the documnet http://download.oracle.com/docs/cd/E15523_01/core.1111/e10105/ports.htm#CIHJIFHB for "managing port".
    it states "You can change the port numbers for some Oracle Fusion Middleware components, using Fusion Middleware Control, Oracle WebLogic Server Administration Console, or *the command line*."
    Because I only installed the OH, I have no the Fusion Middleware control , admin console available for making the port change. And I cannot find out how to the command line tool to make the change.
    I followed the steps in section 5.3.2.1 Enabling Oracle HTTP Server to Run as Root for Ports Set to Less Than 1024 (UNIX Only) http://download.oracle.com/docs/cd/E15523_01/core.1111/e10105/ports.htm#CIHJEEJH
    And I did edit ssl.conf for port change to 443 ---- this is not documented in the document. I think because Oracle wants you to use the console to make the change.
    OH is not working after I made the change.
    Does anyone know how to use the commend line tool for making the port changes for OH11g?
    Thanks

    Hi,
    if u want to achieve it using JMX then u can try :
    http://middlewaremagic.com/weblogic/?p=613
    Using Command Line Option WLST you can do it in ONLINE Mode...like:
    Step1). Please run the ". ./setWLSEnv.sh" script to set the CLASSPATH & PATH in the shell prompt.
    <b><font color=red>NOTE:</font></b> Run the “setWLSEnv.sh” by adding two DOTs separated by a single space …..before the actual script like following : (use ‘cd’ command to move inside the <BEA_HOME>/wlserver_10.3/server/bin) then run the following command….
    *. ./setWLSEnv.sh*
    Note: the first DOT represents that set the Environment in the current Shell, AND the second ./ represents execute the script from the current directory.
    Step2). Now in the same Shell Prompt please run the WLST Utility like following:
    <b><font color=maroon>
    java weblogic.WLST
    wls:/offline> connect()
    Please enter your username [weblogic] : weblogic
    Please enter your password [weblogic] : weblogic
    Please enter your server URL [t3://localhost:7001] : t3://localhost:7001
    Connecting to t3://localhost:7001 with userid weblogic ...
    edit()
    startEdit()
    cd ('Servers/AdminServer')
    cmo.setListenPort(9999)
    save()
    activate()
    </font></b>
    Now you NEED NOT to restart your Server to reflact these Changes....
    The Above JMX Code is also able to do it in Runtime only on the Fly.
    Thanks
    Jay SenSharma
    http://middlewaremagic.com/weblogic (Middleware Magic Is Here)

  • How to uninstall the command line tools?

    I installed the command line tools in Xcode 4.5 from the preferences : downloads : command line tools.
    If i want to uninstall this component, what should I do?
    PS:
    I saw an answer in the Apple Support Communities about how to uninstall the Xcode 4.3 and later versions.
    This is the original: " If You want to uninstall completely XCode go to launchpad and push Xcode icon for two
    seconds, so click on the upper left checkbox.".
    I don't know what means "push Xcode icon for two seconds, so click on the upper left checkbox".

    There is no easy way to uninstall the command line tools. The following article has a script to uninstall them:
    You Don’t Need The Xcode “Command Line Tools”
    Read the comments in the article. I have not tested the script, but this is the first result when searching Google for "xcode 4.5 uninstall command line tools".

  • Lookup for WINS command line tool

    Hi ,
    Can anyone help me in finding a way to get a lookup tool or script to check WINS records.
    I have used nblookup but this only gives HostName to IP.
    I want it from IP to HostName from WINS.
    I have tried using nbtstat -A x.x.x.x also , but this is not fetching records from WINS. (not accurate)
    Sai Krishna

    Hi,
    According to your description, my understanding is that you need a command line tool to look up records from WINS.
    The command line nbtstat –A <IP address> , will returns the NetBIOS name table and MAC address corresponding to the IP address you typed, but the WINS does not queried during this process, the two
    nodes use NbtNs to request and respond the NetBIOS name between them.
    You may use netsh wins command to query names from WINS which you specified:
    >Netsh
    >WINS
    >Server <WINS IP address>
    >show name name=<record name> endchar=<16thCharInHex>
    This will find IP address and NetBIOS names according to the name. If you need to search name according to IP address, I suggest you use the
    display records in the WINS snap-in.
    Detailed information about netsh wins command line, reference the link below:
    http://msdn.microsoft.com/en-us/library/cc779375(v=ws.10).aspx#BKMK_53
    Regards,
    Eve Wang                                                                                                                                                  

  • Command line tool?

    What are people doing for command line tools? Say you want a shell script to clear a cache or something...?
    Thanks,
    Andrew

    For commands that are immediately available via the Coherence console, Christer's batch solution is quite useful.
    I like to follow the "eat-your-own-dog-food" approach, such that the command-line utilities are written in the same language (and preferably same codebase) as the production code (ie. same config files, same logic, etc). For 3rd Party C++ APIs, I tend to create bindings in a scripting language such as Python so that I can test out ideas/prototype and create regression tests. Once you have these type of bindings, its very easy to create a wide-range of command-line utilities, especially for automation.
    Alternatively, if your requirements are already well defined and you dont need full scripting capability, out-of-the-box Coherence 3.5+ provides an application launcher called Sanka.exe which allows you to execute your C++ classes. You'll find further info on Sanka in the C++ documentation.
    Things are much easier in the Java/.NET world as its just as easy to use the APIs directly and create console apps (Its also much easier to migrate to UI admin tools from these).

  • Changing proxy to PAC file using command line tool ?

    I've asked this before but have not had much luck getting an easy fix.
    I need to change a large number of machines over to using a pac file instead of the current settings for secure and web proxys.
    It's not possible using 10.4 CLI command networksetup but I'm wondering if anyone may have another way of doing this ? Possibly a script or something ???
    Mitch

    The command line tools with ARD do not appear to have any syntax for specifying a PAC file URL nor the syntax to specify Proxies use a PAC file.
    I suggest you look at /Library/Preferences/SystemConfiguration/preferences.plist file. This is where your PAC file settings will be saved. You may be able to programatically alter the file using "defaults write" or some other tool.
    Hope this helps!
    bill
      Mac OS X (10.4.10)   1 GHz Powerbook G4

  • Biar command line tool

    Hi,
    I created a biar file using import wizard. and now i need to migrate the content from biar file to destination CMS using BIAR COMMAND LINE TOOL.
    and
    I dont need need to migrate everything to destination CMS. so i need to write queries.
    the following is the script i used. but im unable to migrate anything with no error.can u please help me to clear my doubts:
    what exactly exportDependencies mean? i only need universe not with its dependency connection..so if i set to false im seeing nothing to migrate.
    security..even in import wizard,,it sucks most of the time...no worries as of now.
    correct my script if its wrong.
    importBiarLocation=C:\test.biar
    action=importXml
    CMS=sever name
    password=password
    Authentication=secEnterprise
    exportDependencies=False
    includeSecurity=false
    exportQuery=select * from ci_appobjects where si_kind='universe'

    Try this
    importBiarLocation=C:/test.biar
    action=importXML
    userName=UserName
    password=Password
    CMS=cmsname:6400
    authentication=secEnterprise
    exportQuery=select * from ci_appobjects where si_kind='universe'

  • Issue while creating BPEL artifacts using BPEL command line tool

    All
    I am trying to create BPEL artificats for SQL server stored procedure for SQO Server 2005 using BPEL Command line tool.
    My demo.properties is
    ProductName=Microsoft SQL Server
    DriverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver
    ConnectionString=jdbc:sqlserver://10.10.20.2:1433;databaseName=dAP
    Username:apcdb
    Password:password1
    SchemaName:dev
    ProcedureName:spiSOATesting
    ServiceName:SQLServerSPService
    DatabaseConnection:MSSQLServer
    Destination:c:/temp/sqlprocedure
    and I have create a batch file called as generate.bat and it contains following information
    java -cp D:\jdevstudio10134\integration\lib\DBAdapter.jar;D:\jdevstudio10134\integration\lib\bpm-infra.jar;D:\jdevstudio10134\integration\lib\orabpel.jar;D:\jdevstudio10134\lib\xmlparserv2.jar;D:\jdevstudio10134\lib\xschema.jar;D:\jdevstudio10134\toplink\jlib\toplink.jar;D:\jdevstudio10134\integration\lib\connector15.jar;D:\temp\sqlprocedure\JDBC\sqljdbc.jar oracle.tip.adapter.db.sp.artifacts.GenerateArtifacts %1
    and when I try to run the command at BPEL PM Developer Prompt, I am getting Procedure not found, Can one please tell, what is the cause of this error. and how does this command line tool exactly work.
    Following is the output from command prompt.
    D:\product\10.1.3.1\OracleAS_1\bpel\samples>D:\temp\sqlprocedure\generate.bat D:\temp\sqlprocedure\demo.properties
    D:\product\10.1.3.1\OracleAS_1\bpel\samples>java -cp D:\jdevstudio10134\integration\lib\DBAdapter.jar;D:\jdevstudio10134\integration\lib\bpm-infra.jar
    ;D:\jdevstudio10134\integration\lib\orabpel.jar;D:\jdevstudio10134\lib\xmlparserv2.jar;D:\jdevstudio10134\lib\xschema.jar;D:\jdevstudio10134\toplink\j
    lib\toplink.jar;D:\jdevstudio10134\integration\lib\connector15.jar;D:\temp\sqlprocedure\JDBC\sqljdbc.jar oracle.tip.adapter.db.sp.artifacts.GenerateArtifacts D:\temp\sqlprocedure\demo.properties
    Procedure not found: dAP.spiSOATesting
    Thank you

    HI
      Pricing will be carried basing on the pricing
    procedure.
    Case1: Prices will be carried out automatically if
    necessary condition records are maintained for the
    condition type.
      For this you can go to Sales Order-> Item Conditions
    In the screen you can click on command button Analysis,
    which gives you the list of condition types associated
    to the pricing procedure. By clicking on the condition
    type you can know the action that has taken place.
    Case2: Manually forcing prices for Items.
      To do this, you have to populate ORDER_CONDITIONS_IN &
    ORDER_CONDITIONS_INX. Also note to identify the item
    numbers, you manually pass the item number for each item
    in the sales order, use the same item number for
    populating conditions.
      Parameters required:
    ORDER_CONDITIONS_IN:
      ITM_NUMBER, COND_TYPE, COND_VALUE, CURRENCY
    ORDER_CONDITIONS_INX:
      ITM_NUMBER, COND_TYPE, UPDATEFLAG, COND_VALUE,CURRENCY.
       Hope the above info helps you. Do revert back if you
    need more info.
    Kind Regards
    Eswar

  • "add_mp_to_mpa" is not recognized by OEM 12C Command line tool

    Hi,
    As per Oracle® Enterprise Manager Command Line Interface 12c Release 1 (12.1) document ( http://docs.oracle.com/cd/E24628_01/em.121/e17786/cli.htm ), after the EM CLI Client is installed basic operational verbs like 'add_mp_to_mpa " can be used to create managenment plug-in archive. But when i am using this command with OEM 12C EM CLI command line tool it throws following error
    +Error: The command name "add_mp_to_mpa" is not a recognized command.+
    +Run the "help" command for a list of recognized commands.+
    +You may also need to run the "sync" command to synchronize with the current OMS+.
    I also used sync command to sync with my OMS server. The sync command ran successfully with output "Synchronized successfully" .
    When i use help command("emcli help") to see the list of command it supports, it doesn't list this ('add_mp_to_mpa ') verb.
    Please tell me how can i use this particular verb to create my own management plug-in archive(.jar file) in 12 C.
    -Tripati

    "add_mp_to_mpa" verb is no longer an emcli verb in EM 12c. The plug-in framework has changed EM 12c. If necessary, please see the following doc for information on packaging and deploying a plug-in.
    http://docs.oracle.com/cd/E24628_01/doc.121/e25161/package.htm#CACDJJDA
    Regards,
    - Loc

  • How are Windows Server Backup and Command Line Tools used in vCSHB installation?

    How are Windows Server Backup and Command Line Tools used during the installation of vCSHB?  Is it required in all types of deployments (PtoV, VtoV, PtoP)? Is it used to create the files that are put in the file share for the second node to use during vCSHB installation or is it only used during a vCSHB clone operation of a Physical to Physical deployment?  Are these tools not used in some deployments?

    You need Windows Server Backup installed on source and destination, and during the installation of vCSHB the installer will invoke the wbadmin (Windows Server Backup Utility) and will backup configuration and application data (application data is optimal but can decrease the sync time after installation of secondary node). On the secondary node you will need only run the vCSHB installer and everything will be restored.
    Check this blog entry for some more info about some problems in P2P deployment: http://www.vcoportal.de/2013/12/vmware-vcenter-server-heartbeat-restore-on-a-second-node-a-journey/

  • On-line Action script course?

    Can anyone recommend an on-line Action script course?
    I’m working on a project where that will require more coding then I am use to dealing with.
    So I need to raise my skill set fast. I’m not sure where to receive the best time and financial investment.
    It would be excellent if I could collaborate with a seasoned professional to learn more.
    If you know of a site or someone on-line please let me know.
    Thank you!

    Have you looked at Lynda.com?   They have a lot of excellent tutorials on Flash and everything else too.  Seems to be well worth the $$.  Otherwise learning through these forums really helps a lot!!

  • What are the commands for compiling c++ using the command line tools for xcode?

    Hi, I am taking a class in school for c++ and i would like ot be able to practice at home i found the command line tools for xcode and went ahead and installed it on my computer. now i need to know the commands and procedure to be able to compile and run c++.

    c++ testfile.cc

Maybe you are looking for

  • IPhoto Gallery - phantom albums

    I wanted to have a separate "drop box" folder for photos uploaded by friends in Gallery. So I chose a Drop Box image jpeg which I made and placed in iPhoto (so that image would act as the key photo for the folder) as a photo to Share, and created a N

  • Variable being Lost

    When I run the following script, the variable userParty is lost between the scoreCalculate function and the bottom of the script, where it should set the value of the quizVariable.party for the URLloader to function correctly. //Variables var userPar

  • Is ther an "easy way" to rename my iweb pages?

    Here is my dilema I have a iweb site hosted on go daddy so I have to update via an FTP which as you know each time to re-publish to your folder it creates a new time stamp and MOST ftp clients then reupload the entire site... Well I fould this prorgr

  • KKAK - sales document missing

    Hi After we run the KKAK (RA analysis) product cost by sales order, there are some sales order that is suppose to be shown on the report list is missing and not there, can any one let me know why it is missing or not showing up the report? Thank you

  • Special Procurement MRP View VS. Costing View

    Hi Experts, What's the difference between the 2 Special Procurement Key in the MRP veiw and the Costing View?  Should they always be the same? Thanks, Kumar