Evaluating text as code in PS JavaScript

Is there a way to evaluate text as code in JavaScript. For example, I'm writing a script that generates random noise patterns based on settings the user inputs through a dialog. There are default settings for each element of the noise generation, but I'm now including an .ini file to store settings the user might prefer as the default (similar to the Shadows/Highlights dialog settings).
This is how the .ini file is set up:
startSize=10
scaleSize=18
noiseAmt=22
loopNum=35
I'm wondering if when I read in the line using setting=file.readln(); is there a simple way to have the code evaluate that and set the variable to the value? So for the first line, it would set a variable named startSize to the value of 10.
I know I could simply put the value on a line by itself and read it in setting a variable to the .readln() return. I wanted to make this easier to manually edit should someone want to do this without opening the dialog.
Or, am I stuck with parsing through the line to set a variable to a value after the = ?
Thank you.

I found it. Sorry.
$.evalFile(); works for this.

Similar Messages

  • How do i save the source code of a javascript alert in safari?

    I am trying to save the source code of the javascript alert in safari but the menu items blank out.
    Is this even possible?
    dave

    Eventhought it is a usefull function which i did not know about it is not helping me. This is what hapens.
    I request an url and get a javascript alert back from the server. The javascript alert triggers that is i get a popup where I can only press ok. If i do not press ok i can not do anything else. the safari menu's are greyed out. if i do press ok i get redirected and i can not read the javascript page with your suggestion.
    what i want is read the source for that javascript alert so i know what it says (my filemaker database that is) but because that option is greyed out i am stuck.
    here is the link i use to get the javascript popup:
    https://www.login.alex.nl/klanten/portfolio/portefeuille-xls.asp?print=true
    the javascript says i am not loged in.
    if i get this javascript alert in firefox i can ask for the sourcecode, read it and do stuff that is log in. I just do not understand how i can change safari so it does the same thing as firefox.
    thanks again

  • PLSQL code in a javascript code

    Can i write the PLSQL code in a javascript code?
    Actually i want to pass a value into a PLSQL code. First in javascript code i have to read a value of page item :PX_ITEM, then i have to pass that value in PLSQL code.

    Can i write the PLSQL code in a javascript code?No.
    PL/SQL runs in the database on the server. JavaScript runs in the browser on the client. Never the twain shall meet.
    Passing values between them requires a page submit or AJAX call.

  • Object Code Short Text,Cause Code Short text and Problem Code Short Text..?

    Dear All,
    can any one help me in finding of Object Part Code Short text,Problem Code short text and Cause code short text fields....in which table it will be storing/function module to get this...?
    Thankx in Advance....

    hi,
    you want for which object??
    all the short text stored in the text table like
    T001t ( it starts with T and ends with T )
    cheers,
    sasi

  • Textfield text link to run a javascript

    I created a text link in a textfield by highlighting the text then right clicking and selecting hyperlink. The hyperlink panel opens up but it only allows for a website to be entered as far as I can tell. I would like to run a javascript onclick instead of opening a web page, is this possible?
    Thanks in advance!

    Thanks for the quick response George. I tried that also and it didn't work  . Security restrictions doesn't make sense though because I can use the hyperlink tool over the text and and run a javascript from it. The only problem with that method is it doesn't work with a scrollable textfield.

  • Spry Validation Text Box - Playing Nicely w/ Javascript

    Greetings-
    I'm using the Spry Validation Text Fields in a registration
    form I'm designing. I really like the validation they provide.
    However, I'm trying to get them to play nicely with a password
    validation Javascript code that gets called when the form is
    submitted:
    Form Example
    The password validation JS compares the two email fields to
    make sure they are both the same. The JS is called when the form is
    submitted.
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Begin
    function checkPw(form) {
    pw1 = form.password.value;
    pw2 = form.password_confirm.value;
    if (pw1 != pw2) {
    alert ("\nYour password confirmation failed. Please enter
    your passwords again.")
    return false;
    else return true;
    // End -->
    </script>
    However, this disables the Spry text field validations. I'm
    most certain my "OnSubmit" code causes the Spry validation to not
    execute.
    Any gurus have some ideas around this?
    Thank you.

    Your are going to love this...
    I confirmed I have the constructor same as yours.  Only difference in your code and mine is I did not have the validateOn blur in the Javascript, but rather was using the default validation on submission.  However, I dutifully added that, just to replicate your test exactly and to look at apples to apples.  The code is still throwing up the validation messages.
    Stumped, I took a break, played a video game, cleared the mind and started the process of carefully and logically working the code for about the umpteenth time in the last 24 hours.
    Given this validation is working just fine on the page where new items are created, I laid out that pages code next to the edit page code and started going through line by line... and Eureka!  No reference in my edit page head to the SpryValidationTestField.js... (**red faced, banging head on desk**)
    That's 2 for 2 with you helping me realize its not the Spry code, so it must be something else and that something else, once again, was me.  The human error element.  If I hit strike three down the road I deserve a sound verbal thrashing...
    Once again I am in your debt and you have my gratitude!
    Thank you Gramps!

  • Layer Source Text linking to external text. (no code in doc!)

    I've seen linking to text documents with code snippets in it.
    So that means the external text document must contain bits of scripting.
    I would like to link to txt documents (or csv) that do not contain code.
    Total noob users must be able to link a text to a After Effects project.
    I have a website data catcher which exports CSV values.
    It would be ideal if After Effects can hoover up the text and put certain pieces into certain source texts.
    We're talking automated sports cards here.
    Is this possible without adding code to a text dump?
    Or is this just impossible?

    The basic idea is to use something like this:
    myPath = "/c/test/txt.txt";
    $.evalFile (myPath);
    The text file does need to contain legal JavaScript code, but it could be as simple as this for a text layer:
    "this is a test"
    You generally want to wrap the $.evalFile() in a try/catch so that you can have an error string like "Not found." display if your path is bad, like this:
    myPath = "/c/badpath/txt.txt";
    try{
      $.evalFile (myPath);
    }catch(err){
      "Not found."
    Dan

  • Problem with embedding Flash Text/HTML Code

    Hey all, im new to DW and just created a html page with a
    black background and a picture. I also added a flash text called
    "Enter Forum" by using "Insert>Media>Flash Text"
    When i copy and paste the code that is generated in the
    "Code" section/tab on to my server in the index/html and go to view
    my site it is not there. I uploaded the .swf file to my server
    also, i have played around with the coding a bit to see if i was
    doing anythng wrong but nothing works. Below is the code DW renders
    to me. I simply copy and paste this code that DW renders and paste
    it in to my server's index.html (Main Page) file. I checked the emd
    src and all thats correct.
    HTML Code that DW generates me:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    body {
    background-color: #000000;
    body,td,th {
    color: #FFFFFF;
    font-size: xx-large;
    .style2 {
    color: #FF0000;
    font-weight: bold;
    .style3 {
    color: #FF0000
    .style4 {
    color: #FFFFFF;
    font-family: "Courier New", Courier, monospace;
    .style5 {
    color: #FFFFFF;
    font-family: "Courier New", Courier, monospace;
    font-size: small;
    .style6 {font-size: x-small}
    -->
    </style>
    <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    </head>
    <body>
    <p> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"><img src="
    http://www.nohornetsfanjc.com/1376.gif"
    alt="Jason Vorhees" width="400" height="400" vspace="0"
    /></p>
    <p align="center">nohornetsfanjc.com is temporarily
    offline.</p>
    <p align="center" class="style2">
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0','widt h','329','height','59','src','text1','quality','high','pluginspage','http://www.adobe.com/ shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','bgcolor','#000000','movie ','text1'
    ); //end AC code
    </script><noscript><object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"
    width="329" height="59">
    <param name="movie" value="text1.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#000000" />
    <embed src="text1.swf" quality="high" pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="329" height="59"
    bgcolor="#000000"></embed>
    </object></noscript>
    </p>
    <p align="center" class="style4"> </p>
    <p align="center" class="style5">All Rights Reserved.
    © 2005</p>
    <p align="center" class="style6"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    </body>
    </html>
    As i stated this is exactly what i paste into my index.html
    file on my server. Im using no subfolders. Is there something im
    doing wrong? Im completely new to this, so any and all help will be
    appreciated very much!
    Thanks
    Shane

    Can you post the url to show us the page on your server? If
    you copied
    everything, it could be you have too many doc types, headers
    and body tags
    in your index.html page.
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "videoeditor15" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hey all, im new to DW and just created a html page with
    a black background
    and
    > a picture. I also added a flash text called "Enter
    Forum" by using
    > "Insert>Media>Flash Text"
    >
    > When i copy and paste the code that is generated in the
    "Code"
    section/tab on
    > to my server in the index/html and go to view my site it
    is not there. I
    > uploaded the .swf file to my server also, i have played
    around with the
    coding
    > a bit to see if i was doing anythng wrong but nothing
    works. Below is the
    code
    > DW renders to me. I simply copy and paste this code that
    DW renders and
    paste
    > it in to my server's index.html (Main Page) file. I
    checked the emd src
    and all
    > thats correct.
    >
    > HTML Code that DW generates me:
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    > <title>Untitled Document</title>
    > <style type="text/css">
    > <!--
    > body {
    > background-color: #000000;
    > }
    > body,td,th {
    > color: #FFFFFF;
    > font-size: xx-large;
    > }
    > .style2 {
    > color: #FF0000;
    > font-weight: bold;
    > }
    > .style3 {
    > color: #FF0000
    > }
    > .style4 {
    > color: #FFFFFF;
    > font-family: "Courier New", Courier, monospace;
    > }
    > .style5 {
    > color: #FFFFFF;
    > font-family: "Courier New", Courier, monospace;
    > font-size: small;
    > }
    > .style6 {font-size: x-small}
    > -->
    > </style>
    > <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    > </head>
    >
    > <body>
    > <p> </p>
    > <p align="center"> </p>
    > <p align="center"> </p>
    > <p align="center"><img src="
    http://www.nohornetsfanjc.com/1376.gif"
    > alt="Jason Vorhees" width="400" height="400" vspace="0"
    /></p>
    > <p align="center">nohornetsfanjc.com is
    temporarily offline.</p>
    > <p align="center" class="style2">
    > <script type="text/javascript">
    > AC_FL_RunContent(
    >
    'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.
    cab#
    >
    version=5,0,0,0','width','329','height','59','src','text1','quality','high',
    'plu
    >
    ginspage','
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Vers
    ion=
    > ShockwaveFlash','bgcolor','#000000','movie','text1' );
    //end AC code
    > </script><noscript><object
    > classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    >
    codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.ca
    b#ve
    > rsion=5,0,0,0" width="329" height="59">
    > <param name="movie" value="text1.swf" />
    > <param name="quality" value="high" />
    > <param name="bgcolor" value="#000000" />
    > <embed src="text1.swf" quality="high"
    >
    pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Ve
    rsio
    > n=ShockwaveFlash" type="application/x-shockwave-flash"
    width="329"
    height="59"
    > bgcolor="#000000"></embed>
    > </object></noscript>
    > </p>
    > <p align="center"
    class="style4"> </p>
    > <p align="center" class="style5">All Rights
    Reserved. ?? 2005</p>
    > <p align="center"
    class="style6"> </p>
    > <p align="center"> </p>
    > <p align="center"> </p>
    > </body>
    > </html>
    >
    >
    >
    > As i stated this is exactly what i paste into my
    index.html file on my
    server.
    > Im using no subfolders. Is there something im doing
    wrong? Im completely
    new to
    > this, so any and all help will be appreciated very much!
    >
    > Thanks
    >
    > Shane
    >
    >
    >

  • Removing code from a javascript file-i.e. Photoshop Flash Web Gallery

    Hi There, I have a question about the Photoshop Flash Gallery, particularly the flashobject.js file and index.html file.  Whenever I try and open the finished Flash Gallery HTML page, I get a message that says "Please upgrade your Flash player" and "Already have Flash player installed? Click Here."  Is there a way that I can remove that and just have it go to the Flash Gallery?  I notice that it says Flash Player 6 but that is an old version.  I am not very knowledgeable in javascript so any help would be appreciated.

    This would be the least instrusive hack I can find that may get you around the problem.  In the js fle there is a function...
    function detectFlash(ver) {
    if (getFlashVersion() >= ver) {
      return true;
    } else {
      return false;
    Try changing this function to...
    function detectFlash(ver) {
    if (getFlashVersion() >= ver) {
      return true;
    } else {
      return true;
    This should eliminate making the text appear.  If not, there's another thing you can try.
    A better approach wuld be to use more up to date embedding code, though I cannot say whether the js file is written specifically for this Flash application such that it includes code that talks to the Flash file.

  • Similar Java Code but in JavaScript...

    Hi... My doubt is really simple... I have this Java Code:
    FacesContext.getCurrentInstance().addMessage(this.getIdtFechaHastaField().getClientId(FacesContext.getCurrentInstance()), new FacesMessage(FacesMessage.SEVERITY_ERROR, "Se necesita un valor", null));
    That let me show a "balloon text message" (I didn't find the words but the code should be familiar) !; Is there any JavaScript code that let me do the same ?...
    Thankx !.

    I have two inputdates and I would to achieve the following before going to the server...
    1. That they have the correct format
    2. And that the first date isn't after the second date
    So If I go the the server, with the code I posted It appears a balloon message showing a "certain message" according to the problem... So the thing is that I would like to this in the client side... But I would like to know if there is a JS Script to do that ?... Hope I was clear... Cheers

  • How do I clear a form text field during validation using JavaScript?

    I am just learning JavaScript and the Acrobat API.  I have a form created in adobe acrobat 9 standard (starting from an existing form in MS Excel).  There is a text field for a Social Security Number.  I have a custom format script and keystroke script and a custom validation script. I would like to add to the existing validation script, that if what is entered doesn't match the validation test, then clear out the field as in erase all the characters that were typed into the field.  I want this to happen no matter what.  So even if someone filled in a valid SSN number and then moved to the next field, but then went back to the SSN field and decided to change their entry and this new entry was "invalid" then clear out the field (do not revert to what was typed in the field originally, even though it was considered valid by the script).  (There is currently no default value for this field.)  Thank you inadvance for you help on this.
    Here is the current validation script:
    // only run when field not blank
    if (event.value != "")
    // RegExp for validation #########
    var re = /^(\d{3})(\d{2})(\d{4})$/
    if(re.test(event.value) == false)
    app.alert("Enter a 9-digit Social Security number with no spaces or special characters (e.g., 555555555). It will be converted to the format 555-55-5555.")
         //Here is where I've tried adding all of these lines, but none of them will clear out what is in the field
              //this.resetForm([event.target.name]);
              //event.target.value == "";
              //getField("SSN 1").value = getField("SSN 1").defaultValue;
              //getField("SSN 1").value == "";
              //event.rc = false;
    And incase these are somehow affecting it, here are the other scripts being processed on this field:
    Keystroke script:
    var input=event.value;
    var chars=input.length;
    if( event.willCommit || chars==8 )this.getField("Name 1").setFocus();
    Format script:
    var re = /^(\d{3})(\d{2})(\d{4})$/
    if(re.test(event.value) == true)
    // add "-"
    event.value = RegExp.$1 + "-" + RegExp.$2 + "-" + RegExp.$3;

    Thank you very much.  I did try that before, but I was using event.value == "";  I guess in this case I'm assigning the value of "", not making the value equal "".

  • PDF export to word not working, conversion shows text as code.

    I am working with Adobe acrobat pro, and cannot seem to export my PDf file without the text resulting in incomprehensible code. The images in the PDf convert beautifully, however.
    I have followed the directions listed on the website, and have enable ORC, but it has not helped.
    PDF file info:
    PDF Producer: Mac OSX 10/9.5 Quartz PDFContext
    PDF Version: 1.4 (Acrobat 5.x)
    File size: 1.29 MB
    Tagged PDF: No
    Fast Web View: No
    Security: None
    xmpCore properties: xmp:Creator Tool: Microsoft word
    Illustrator: StartupProfile: Print

    Could you post the PDF or a page of it so that we can try it. I actually still have AA5 on one machine, though everything else is more current. If you can also post your DOC result it would help too. You can post on Acrobat.com or dropbox and leave the link here.

  • How do I move text up - Code Included

    Hi,
    I  have a couple of questions regarding my code. Please copy and paste in a browser to see the formatting etc.
    1. First, does the code look correct?
    2. How can I get the text in orange to move up closer to the paragraph above it? I don't understand why the orange text can't go right below the paragraph?
    3. I used "<br />" to add a break or separate the lines of text. Is this correct?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    </head>
    <body>
            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In nec nibh massa. Sed id enim mauris, in ultricies odio. Donec pretium, lectus in eleifend vehicula, ligula erat dignissim lacus, vitae rhoncus tellus tortor non lorem. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Etiam mauris purus, congue ac volutpat sit amet, scelerisque a velit. Vestibulum condimentum molestie ipsum eu pharetra.</p>
            <p style="color: #333333; font-size: 14px;"><i>“Etiam mauris purus, congue ac volutpat sit amet, scelerisque a velit. Vestibulum condimentum molestie ipsum eu pharetra. Duis blandit aliquam mi, dignissim fermentum felis bibendum vitae. Nam eu nibh eros, vel fringilla lacus. Ut et mi nec diam imperdiet suscipit. Quisque sollicitudin ante placerat dui porta in elementum quam facilisis. Morbi non mauris metus.”</i>
            <p style="color: #FF3300; font-size: 14px; text-align:right"><strong><i>Vivamus non ipsum tortor</i></strong>
            <p style="color: #333333; font-size: 14px;"><i>“Nam eu nibh eros, vel fringilla lacus. Ut et mi nec diam imperdiet suscipit. Quisque sollicitudin ante placerat dui porta in elementum quam facilisis. Morbi non mauris metus. Ut euismod purus et velit dictum et fermentum mauris volutpat. Nam aliquet commodo elit ut rhoncus. Phasellus blandit, orci tristique lobortis malesuada, leo est accumsan neque, nec egestas quam eros et nunc. Phasellus et risus est, vel imperdiet risus.”</i>
            <p style="color: #FF3300; font-size: 14px; text-align:right"><strong><i>Cras viverra mi in odio congue dictum</i></strong>
    <br />
    <br />
    <br />
            <p style="color: #333333; font-size: 14px;"><i>“Aliquam adipiscing, justo sed dapibus tincidunt, ante metus molestie sapien, vitae laoreet turpis risus eget velit. Sed volutpat, risus et suscipit elementum, enim ipsum congue nunc, at mattis ante enim ut mauris. Ut sit amet est nibh, sed accumsan dolor. Sed suscipit consectetur enim non tincidunt. Morbi rhoncus luctus nibh, iaculis aliquam tortor aliquet ut. Integer fringilla commodo quam, quis tempor massa commodo non. Praesent eu orci massa.”.</i>
            <p style="color: #FF3300; font-size: 14px; text-align:right"><strong><i>Etiam pellentesque odio id turpis tempor pharetra</i></strong>
    </body>
    </html>

    1. First, does the code look correct?
    No - unnecessarily verbose.
    2. How can I get the text in orange to move up closer to the paragraph above it? I don't understand why the orange text can't go right below the paragraph?
    See below -
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    p {
    color:#333;
    font-size:14px;
    font-style:italic;
    margin-bottom:0;
    body > p {
    font-style:normal;
    p.cite {
    text-align:right;
    color:#F30;
    font-weight:strong;
    margin-top:0;
    </style>
    </head>
    <body>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In nec nibh massa. Sed id enim mauris, in ultricies odio. Donec pretium, lectus in eleifend vehicula, ligula erat dignissim lacus, vitae rhoncus tellus tortor non lorem. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Etiam mauris purus, congue ac volutpat sit amet, scelerisque a velit. Vestibulum condimentum molestie ipsum eu pharetra.</p>
    <p>"Etiam mauris purus, congue ac volutpat sit amet, scelerisque a velit. Vestibulum condimentum molestie ipsum eu pharetra. Duis blandit aliquam mi, dignissim fermentum felis bibendum vitae. Nam eu nibh eros, vel fringilla lacus. Ut et mi nec diam imperdiet suscipit. Quisque sollicitudin ante placerat dui porta in elementum quam facilisis. Morbi non mauris metus."</p>
    <p class="cite">Vivamus non ipsum tortor</p>
    <p>"Nam eu nibh eros, vel fringilla lacus. Ut et mi nec diam imperdiet suscipit. Quisque sollicitudin ante placerat dui porta in elementum quam facilisis. Morbi non mauris metus. Ut euismod purus et velit dictum et fermentum mauris volutpat. Nam aliquet commodo elit ut rhoncus. Phasellus blandit, orci tristique lobortis malesuada, leo est accumsan neque, nec egestas quam eros et nunc. Phasellus et risus est, vel imperdiet risus."</p>
    <p class="cite">Cras viverra mi in odio congue dictum</p>
    <p>"Aliquam adipiscing, justo sed dapibus tincidunt, ante metus molestie sapien, vitae laoreet turpis risus eget velit. Sed volutpat, risus et suscipit elementum, enim ipsum congue nunc, at mattis ante enim ut mauris. Ut sit amet est nibh, sed accumsan dolor. Sed suscipit consectetur enim non tincidunt. Morbi rhoncus luctus nibh, iaculis aliquam tortor aliquet ut. Integer fringilla commodo quam, quis tempor massa commodo non. Praesent eu orci massa.".</p>
    <p class="cite">Etiam pellentesque odio id turpis tempor pharetra</p>
    </body>
    </html>
    3. I used "<br />" to add a break or separate the lines of text. Is this correct?
    It's valid but not optimal.  Just adjust the top/bottom margins on adjacent paragraphs to manage this kind of thing.

  • Texts of Code Infoobject

    Hi gurus,
    I´m using BW integrated with CRM. I have activated the datasource 0CRM_SALES_ACT_1 from Business Content and it´s working well. Now, I need to load the text of the infoObeject 0CRM_RSN_CO (Long description:"Activity Reason (Code)"; Short description:Reason (Code)), this infoobject has like referenced characteristic to 0CAT_CODE (Desciption: Code). So, I need the datasource in order to load the texts of 0CAT_CODE. Do anyone know the name of the datasource for this?
    Best regards

    Hi Leonel,
    Check this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/bc/5cae39fe0d8f5ee10000000a11402f/frameset.htm
    Bye
    Dinesh

  • [JS] Is it possible to create a 'jquery plugin' or other code abbreviations for JavaScript/Indesign?

    Hi someone or everyone,
    Upon comming in contact with jquery I instantly became aware of the secret behind it's popularity. It 'shortened' bits of code, functions and other, into easily managed text that makes sense almost at first glance. Is this a thing that can be done with indesign?

    So you basically do this:
    #include "../extendables.jsx"
    And that will allow you to include a function library. From there you can build a jquery library for js/id.

Maybe you are looking for

  • Help, why when updating software do i get the error message the network connection timed out?

    it happens on both my i phone 3gs and my wifes i phone 4

  • MAPPING USING FLAT FILE SOURCE MODULE

    I created a mapping using a flat file as source and a dimension as target, I've already configure both modules and their locations. When I try to deploy this mapping in the deploy manager, it generates the script for the control file and when I hit t

  • Performance issue in 'Selelect statement with for all entries'

    Hi,   The following SELECT statement is taking too much time.          SELECT * FROM /rb04/yc5_mver          INTO TABLE g_it_mver          FOR ALL ENTRIES IN l_it_inva          WHERE matnr EQ l_it_inva-matnr  AND                       werks EQ l_it_i

  • Re: BAD CUSTOMER SERVICE

    I'm sorry you are having difficulty. An agent with access to your account will reach out to you directly by email, private message in the Forums and/or the billing telephone number on your Verizon account for more information or to help you resolve y

  • SQ01 Sap Query - additional fields doesn't appear

    Hi everybody, i've created a SAP Query with transaction SQ01 but one of my additional fields doesn't appear when i execute my Query. My query shows the G/L account number and the field status Group (table SKB1) I just need to display equally the text