Javascript help for pagecount

H All,
I am trying to write a javascript to show the address if the page count on the form is less than 10 pages . the form grows dynamically based on the .xml data
my address field has javascript
xfa.resolveNode("Correspondance.#subform.Client_Addrp1").rawValue = xfa.resolveNode("Correspondance.#subform[4].Client_addr_Name").rawValue + "\n" +  xfa.resolveNode("Correspondance.#subform[4].Client_addr1").rawValue + "\n" + xfa.resolveNode("Correspondance.#subform[4].Client_addr2").rawValue + "\n" + xfa.resolveNode("Correspondance.#subform[4].Client_addr_City").rawValue + " " + xfa.resolveNode("Correspondance.#subform[4].Client_addr_State").rawValue + " " + xfa.resolveNode("Correspondance.#subform[4].Client_addr_zip").rawValue;
but i also want to show the address on the page if the page count is less than 10 pages, can somebody help me to incorporate the pagecount logic on the address field.
Thanks in advance.
Cwilliam

Thanks srini, it worked ..thank u very much..
also if possible can you please tell me the difference between
xfa.host.numpages and xfa.layout.pageCount()
i have tried if(xfa.host.numpages <10)
{ }, it did not work though..
Thanks again
cwilliam

Similar Messages

  • Javascript help for newbie

    Hi,
    I have a 18x12 booklet form PDF (each PDF page consists of 2 9x12 images) that I need to split into single 9x12 pages.
    Found 2 scripts on the net to split pages in Acrobat and the other one to reorder the split pages. (after splitting the pages one ends up with page 1, page 24, page 2, page 23, etc.) Need to reorder the pages and found the Reorder script below.
    But it doesn't work in Acrobat 9 - I'm getting an illegal character error in line 20. (seems to be this line? nStart: i * 4 – 3).
    I don't even get a menu item called Reorder Pages under Documents.
    Help?
    Script:
    ReorderDocument = app.trustedFunction(function()
    // create a new document
    app.beginPriv();
    var newDoc = app.newDoc();
    app.endPriv();
    // reorder pages in booklet order into new document in sequential order
    var i = 0;
    var n = this.numPages;
    for (var i = 1; i <= n / 4; i++)
    newDoc.insertPages( {
    nPage: newDoc.numPages-1,
    cPath: this.path,
    nStart: i * 4 – 3,
    nEnd: i * 4 – 2
    newDoc.insertPages( {
    nPage: newDoc.numPages – 1,
    cPath: this.path,
    nStart: n – 1
    for (var i = 1; i 1)
    newDoc.deletePages(0); // this gets rid of the page that was created with the newDoc call.
    // add the menu item
    app.addMenuItem({
    cName: "reorderPagesJS", // this is the internal name used for this menu item
    cUser: "Reorder Pages", // this is the label that is used to display the menu item
    cParent: "Document", // this is the parent menu. The file menu would use "File"
    cExec: "ReorderDocument()", // this is the JavaScript code to execute when this menu item is selected
    cEnable: "event.rc = (event.target != null);", // when should this menu item be active?
    nPos: 1

    Hold on - just found another webpage with different code. This one seems to work now. Posting it here in case somebody else needs it: this script is to reshuffle pages are having split a booklet form PDF into separate pages:
    ReorderDocument = app.trustedFunction(function()
    // create a new document
    app.beginPriv();
    var newDoc = app.newDoc();
    app.endPriv();
    // reorder pages in booklet order into new document in sequential order
    var i = 0;
    var n = this.numPages;
    for (var i = 1; i <= n / 4; i++)
    newDoc.insertPages( {
    nPage: newDoc.numPages-1,
    cPath: this.path,
    nStart: i * 4 - 3,
    nEnd: i * 4 - 2
    newDoc.insertPages( {
    nPage: newDoc.numPages - 1,
    cPath: this.path,
    nStart: n - 1
    for (var i = 1; i <= n / 4 - 1; i++)
    newDoc.insertPages( {
    nPage: newDoc.numPages - 1,
    cPath: this.path,
    nStart: n - i * 4
    newDoc.insertPages( {
    nPage: newDoc.numPages - 1,
    cPath: this.path,
    nStart: n - i * 4 - 1
    newDoc.insertPages( {
    nPage: newDoc.numPages - 1,
    cPath: this.path,
    nStart: 0
    if (newDoc.numPages > 1)
    newDoc.deletePages(0); // this gets rid of the page that was created with the newDoc call.
    // add the menu item
    app.addMenuItem({
    cName: "reorderPagesJS", // this is the internal name used for this menu item
    cUser: "Reorder Pages", // this is the label that is used to display the menu item
    cParent: "Document", // this is the parent menu. The file menu would use “File”
    cExec: "ReorderDocument()", // this is the JavaScript code to execute when this menu item is selected
    cEnable: "event.rc = (event.target != null);", // when should this menu item be active?
    nPos: 1

  • Javascript help for date.

    I am starting to create a website and would like to include
    the current date on my site. I searched around on the internet and
    came across this code but it doesn't seem to show up when I include
    it in the code of the webpage.
    <script type="text/javascript">
    var d=new Date()
    var weekday=new
    Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
    var monthname=new
    Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
    document.write(weekday[d.getDay()] + " ")
    document.write(monthname[d.getMonth()] + " ")
    document.write(d.getDate()] + ", ")
    document.write(d.getFullYear())
    </script>
    Is this code incorrect? Or am I not using character spacing
    correctly? I have been looking for additional javascript to use but
    I thought that I should try this forum for assistance. Any help
    would be greatly appreciated. Thanks in advance.

    And the URL is:
    http://blog.kaosweaver.com/index.php?entry=entry071010-093431
    (sorry)
    Paul Davis
    http://www.kaosweaver.com/
    Visit us for dozens of useful Dreamweaver Extensions.
    http://www.communitymx.com/
    Partner at Community MX - Extend your knowledge
    JaneGarner wrote:
    > Bregent, I agree that there is better content to have on
    a website, but I am
    > very new to web design and am trying to learn different
    things. I am interested
    > in learning the javascript to have the date, but not
    sure if I will include it
    > when I design my website. And the date would be the date
    that the visitor views
    > my website, not the current date of the server.
    >
    > E Michael Brandt, yes the script is all on one line and
    it is in the body of
    > the page
    >
    > I did attach the code but this is just a test page to
    work with the date.
    >
    > <!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=iso-8859-1" />
    > <title>TestPage</title>
    > </head>
    >
    > <body><script type="text/javascript">
    > var d=new Date()
    > var weekday=new
    >
    Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
    > var monthname=new
    >
    Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
    > document.write(weekday[d.getDay()] + " ")
    > document.write(monthname[d.getMonth()] + " ")
    > document.write(d.getDate()] + ", ")
    > document.write(d.getFullYear())
    > </script>
    > </body>
    > </html>
    >

  • JavaScript help for newb

    I have used JavaScript before, but not within Apex. I have several calculated fields that I need to be able to update after user input (I think the onChange() function will work just fine). I have browsed through over a dozen threads on using JavaScript, but I seem to be missing the one little piece that will make this all click.
    All I need to do is some very basic form manipulation, ie field1 x field2 = field 3, etc. Can someone please point me at a very simple example that shows:
    a) the JavaScript function code for referencing field values
    b) where to put said code (I think it is HTML Header in Page Definition, but confirmation or correction would be appreciated.)
    c) how to reference said code on a field. (where to put it in field definition)
    In case you want to see what I am doing, I have posted the form :
    http://apex.oracle.com/pls/otn/f?p=21392:10:426232455000914
    (use the Dashboard tab)

    Hi,
    You could do something like:
    function calc()
    var field1 = document.getElementById("field1");
    var field1value = parseFloat(field1.value);
    if (isNaN(field1value)) {field1value = 0);
    var field2 = document.getElementById("field2");
    var field2value = parseFloat(field2.value);
    if (isNaN(field2value)) {field2value = 0);
    var field3 = dcoument.getElementById("field3");
    field3.value = (Math.round(field1value * field2value*100)/100);
    This will retrieve the text values for field1 and field2, convert them to floats (if the values cannot be converted, the if tests will set them to zero), multiply the two values, round them to 2 decimal places and put the result into field3.
    Put this in a script tag anywhere on the page. I tend to put javascript functions in a separate region either in the "After Header" or "Before Footer" region position.
    I would then use the onblur event on field1 and field2 to call the script. You can add this in the "HTML Form Element Attributes" setting for the field definitions:
    onblur="calc()"
    I couldn't get into your OTN site as you didn't specify the username/password to use!
    Regards
    Andy

  • Need help in decoding javascript tag for HTML5 output.

    Hello all,
    I am working on a project in Adobe captivate 7 64 bit which consists of around 500 slides with most of the slides being text and image. The problem I am facing is very unusual which I guess I am the first one to experience (as per my search on google and forums). So, after I publish my project the output works fine in html (local and online) BUT when I run index.html (i.e., HTML5 output) the course does not run and screen is blank.
    After spending a week on searching online and using the trail and error strategy I was able to find out that it was the URL text "F:\usrnew\purchase" placed in the the middle of the course which caused the whole damage. However the url was removed and the project was submitted.
    After spending some extra time I found out that the letter "\u" which is a javascript tag was causing the problem for the HTML5 output. I don't really know much about javascripting but found out that the tag can be decoded using some programming strategy. Now this is where my knowledge comes to a standby and needs a lift from you guys.
    Any ideas, help, knowledge sharing would be very helpful for me and all those who might face this issue in future.
    Looking forward for your views.
    Kind Regards,
    Mirza

    Voila! The issue is resolved.
    Solution: Change the single slash "\" to a double slash "\\".
    Cheers,
    Mirza

  • On file open: "This document contains JavaScript code for a widget that no longer exists."

    I had an existing, functional datepicker in a web page.
    Recently I downloaded the UI Datepicker in the Widget Browser and installed it in DW CS5. Now every time I load the file that calls the datepicker that I added myself, a warning opens with the following text:
    This document contains JavaScript code for a widget that no longer exists. If you don't remove the code, the browser might display JavaScript errors when loading the page. Would you like Dreamweaver to find all instances of this code for you?
    Widget: $("#reservDateBegin").datepicker();
    Widget: $("#reservDateEnd").datepicker();
    Clicking "Yes" opens the file and shows the search box at the bottom of the window with [current document] in File and $("#reservDateEnd").datepicker(); in Matched Text. Clicking "No" just opens the file.
    The error is wrong, since installing the widget is what caused the error in the first place!
    How can I get DW to stop showing this message?
    Thanks for any help.

    I do understand you're trying to be helpful. I was just hoping providing the relevant code snippets would be sufficient so I didn't have to take the time to provide a "cleaned" version of the files and upload those to a public-safe location.
    Zabeth69 wrote: If you don't understand what 'code at the bottom of the page' means, you have not used one of those systems. I don't know what causes the error code to come up (besides removing a Spry widget, I mean). So if it doesn't apply to you, ignore it.
    This is exactly my point: I haven't used any of the DW "systems". I've always manually coded in DW, so I can't have removed a Spry widget in the first place. It wasn't until I installed the Widget using the Widget Browser that I started getting the error (I don't mean adding the datepicker widget to the code using the DW Insert menu - I mean installing the Widget into DW itself). Ignoring such an erroneous/incorrect error seems kind of silly, since every time I open the file I get the error message.
    Anyway, as requested, the following are links to the contactUsCleaned.php page, and the php included headerCleaned.php file. Since these use php includes to complete the rendered HTML, they won't look right in the browser, but as you know viewing the source will show the relevant html, javascript, and jquery code. I didn't see any way to upload the files in this forum, which, due to the php code, would be preferable to see exactly what my code looks like...
    http://www.eventidewebdesign.com/public/contactUsCleaned.php
    http://www.eventidewebdesign.com/public/headerCleaned.php
    The footer.php file the contactUs page includes is simply a set of HTML links to the pages on the site, copyright info, and the Google Analytics script. There is no other code in the footer.php file.

  • Calendar help for Date i/p field in SRM 5.0 shopping cart

    Hi All,
    I am working on SRM 5.0..I have a requirement for the addition of custom field ie. lease termination date field on SRM shopping cart screen and having a calendar help for this date input field.
    Has anyone tried to add calendar help for an input date field in the ITS service??What all additions have to be done for this(style,images etc)...Does any one has any idea?Please help.
    Thanks & Regards,
    K rav.

    Disha can you please send me these images.
    IMAGES/CALENDAR/ICO12_CALENDAR.GIF
    IMAGES/CALENDAR/LEFT1.GIF
    IMAGES/CALENDAR/LEFT2.GIF
    IMAGES/CALENDAR/RIGHT1.GIF
    IMAGES/CALENDAR/RIGHT2.GIF
    my email id: [email protected]
    and should i store these images in mime repository? Also I have the below code to be attached in template for calendar function give by Zakhar..do you know where exactly in the template do you insert this code? and do you insert it in the standard template itself. My field will appear in shopping cart line item level (CUF field) so what will be the template number??
    <input type=text
              id="`ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE.name`"
              name="`ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE.name`"
              value="`ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE.value`"
              onBlur="BBP_ITS_EXTW_CloseCalendar()" maxlength="10" size="10">
         <a id="a_ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE" name="a_ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE"
             href="javascript:BBP_ITS_EXTW_OpenCalendarDomRel(window.document.BBPForm.elements['`<b>zappsspr_incl_item_csf_avl-zzspr_dkk_date.name</b>`'], 'a_ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE')">
      <img src="/sap/public/bc/its/mimes/bbpglobal/99/images/calendar/ico12_calendar.gif" border="0"></a>
    Thanks,
    Krupa

  • Javascript help - Hide/Show a page item

    Environment:
    APEX 3.1.00.09 running on AIX 5.3
    Sample application on apex.oracle.com:
    Workspace: GALWAY
    UserID: gwicke
    Password: gwicke
    To see where my issues are:
    1- Start on page 3
    2- In the Agency drop down select 'J & B Marketing'
    3- In the Contract drop down select the only contract that appears
    4- Click on 'Edit Existing Contract'
    5- Note the page item 'LY Closings' has the value 261
    6- Click on the link (really a tab in my theme) at the top labeled 'Cost Detail'
    7- The 'Estimate Justification' is the page item to be displayed/hidden as noted below.
    8- The 'Homes Per Year' under the 'YEAR1' column is the user input page item
    9- The P2_BUILDER_CLOSINGS (value 261 noted above) is the page item to be used in the comparison
    I need to do a couple of things with a potentially hidden page item:
    1- Every time the page loads I need to check to see if the page item (P8_ESTIMATE_JUSTIFICATION) is not null and if it is indeed not null, make it displayed.
    2- When the user enters a value in another page item (P8_HOMES_PER_YEAR1), call a function to see if that value is more than 120% of another page item (P2_BUILDER_CLOSINGS) and if so make the above page item displayed (P8_ESTIMATE_JUSTIFICATION).
    I have the javascript function created (showHideEstimateJustification) and in the HTML Header of the page. The function is being called currently with an onChange check on the page item entered by the user as noted above (P8_HOMES_PER_YEAR1).
    Issues:
    1- I need to force a SUBMIT after the user enters the value for P8_HOMES_PER_YEAR1 so it is available in session state and hence to the javascript function (other ideas welcome!)
    2- I am currently using the x.style.display = 'inline' versus 'none' to hide/show the page item, where x is derived from var x = document.getElementById(P8_ESTIMATE_JUSTIFICATION) Is there a better way????
    Any help is greatly appreciated.
    -gary (a.k.a. Javascript newbie)

    Hi,
    Only your messages use the session state. The code would use the entered value, but you would need to change:
    var homes = parseInt(document.getElementById('P8_HOMES_PER_YEAR1'));to
    var homes = parseInt(document.getElementById('P8_HOMES_PER_YEAR1').value);so that "homes" becomes the numeric version of the value of the item
    Normally, for the label, you would just enter an ID="xxx" into the HTML Table Cell Attributes for the label which you can then use in your javascript. For some reason this doesn't seem to want to work in this page.
    What you could do is find all the labels and then check which is the right one before showing/hiding it. Something along the lines of:
    var xx = document.getElementsByTagName("LABEL");
    var zz;
    var label;
    for (zz = 0; zz < xx.length; zz++)
    if (xx[zz].htmlFor == 'P8_ESTIMATE_JUSTIFICTION")
      label = xx[zz];
    xx[zz].style.display = 'none';
    {code}
    Andy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • BSP: F4 Help For a custom field...

    Hi All,
    I need to display search help for a custom field in one of my custom view.
    Search Help for the custom field is already implemented.. but how can i use it in BSP View!.
    In the standard CRM_IC application i couldn't find any similar search help scenario, coz it is calling some standard methods like ShowF4KeyAndValueHelp3,
    ICWCShowF4HelpExtern by passing the structure and field name!.
    I think these standard methods will work only with the fields which have value help table at the data element level. As the custom field that i m using does not have any value help i cant go for this method i guess!.
    Any Help/Hint?..
    Thank You,
    sudeep v d.

    Hello Sudeep,
    Here are some more helpful links .Please refer them .
    Re: Inputfield value for a tableView from a help window
    /people/thomas.jung3/blog/2005/08/22/bsp-value-input-help-popups-version-30
    F4 help using javascript
    Please let me know the feedback.
    Warm Regards,
    Rakesh Kumar Verma

  • Getting error when updating the JavaScript API for Office and manifest schema files in your Visual Studio project from version 1.0 to 1.1

    Hi,
    I`m getting error message like "None of the apps in your project can be activated in the target. The manifest file of one or more apps contain API sets or Office applications that are not supported by
    the target Office client. To debug those apps, update manifest files to exclude any unsupported API sets or Office applications, and then start the project again. Alternatively, you can debug your apps by using Office 365 as a target." when when
    updating the JavaScript API for Office and manifest schema files in your Visual Studio project from version 1.0 to 1.1 in manifest file though i have added host elements.
    any help in this regard is highly appreciated
    Thanks,
    Santosh Sutar  

    Hi Satosh Sutar,
    Based on the description, you got the error message when you update the apps from version 1.0 to 1.1.
    From the error message, it seems the menifest include some settings no allowed in the new version. Would you mind sharing more detail about how you update the project?
    And here is an article about updating apps for Office and menifest schema files in the project for your reference:
    How to: Update the JavaScript API for Office and manifest schema files in your Visual Studio project from version 1.0 to 1.1
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Folder level Javascript disabled for a user

    Hi Gurus,
    I created a folder level JS, it works fine on all computer here exept on one. On one computer, the javascript's in the pdf are working but the function called in the folder level script is not executed. (when it works on all the others). The script is in the right folder and the pdf works on other computers. Do I have to enable something in the preferences of acrobat reader 9.1. I checked the settings for JS in edit/preference and they are the same as for the others.
    Thanks for your help guys.

    All the script does it to generate a mail with the mailto function. The Preferences-JavaScript are set as on my pc. So it must be something else. If I email the pdf to my pc, it works, so the pdf form is fine, the script is the same as on my pc.
    --- En date de : Mer 2.9.09, try67 <[email protected]> a écrit :
    De: try67 <[email protected]>
    Objet: Folder level Javascript disabled for a user
    À: "antony clark" <[email protected]>
    Date: Mercredi 2 Septembre 2009, 13h35
    That's why I recommended to make a
    test script, to make sure folder-level
    scripts are working on this machine.
    There's no setting to specifically allow folder-level
    scripts. If they are
    properly placed and JS is enabled then they will launch.
    However, if your script inserts menu items you should make
    sure that this
    option is checked under Preferences-JavaScript, the second
    check-box from
    the top. You should probably check all 4 boxes, just in
    case.
    >

  • InDesign JavaScript "help" file

    I have used Jongware's InDesign JavaScript help files and have really found them essential. I am grateful for his efforts to make these available.
    I am primarily a FrameMaker user and Adobe is going to provide ExtendScript support for the next version of FrameMaker. The FrameMaker object model is shown in the ExtendScript Toolkit CS5 Object Model Viewer. I would like to do something similar to what Jongware did in extracting the data to a series of HTML files. I am having difficulty figuring out where this data is stored. I can't find an XML file that contains the data. I am mainly posting this here because I haven't been able to contact Jongware directly. Thanks in advance for any help.
    Rick

    Oops :-) Yeah to avoid sp@m I don't really want to post my mail addresses on public sites.
    I sent you a P.M., I'm hugely interested in what you are planning!

  • Expose or not the JavaScript code for the public?

    Hi friends
    I´m planning to develop some public JavaScript scripts for Illustrator, Photoshop and InDesign.
    I perceived ESToolkit has a command that´s able to transform the code into a JavaScript Binary file. This is used if you want to share your script but do not want to expose and allow others to read or change your code. What do you think about it? Do you use it?
    My first idea was to share my public scripts as a normal JSX file..code exposed..anyone could modify. When you share your scripts, do you care about exposing your code? Or it´s a good idea to share using this Binary file?
    What do you advice?
    Thank you for the tips
    Gustavo.

    Hi Gustavo,
    I had in the past this doubt too, and I did send some binary scripts to some people and teams 2 years ago.
    After a an 3/4 months with intense usage - on windows7 - some of the binary scripts just started giving errors to the people and when I received them back I didn't find why. Aparently they were like the originals but the system wasn't reading them the same way.
    The solution was to save them again e send again to the team/people.
    After a while the same. I did gave up sending binary files.
    I think the open-source for me works well and I just don't give public access to all my scripts but to only a bunch of snippets that can be included on open-source code.
    I would be necessary to spend lots of time transposing my inner scripts and adapting to the public. That's not my work. I work for my team.
    But there is also a 'must': to share my script improvements help the adobe community going further where many people thought it would be almost impossible.
    The lack of boundaries is the reason for open-souce code and the immagination is its limit.
    In case you want to use binary files the same, my advice would be to put only one central script in binary with all tha major functions on it. Then the others scripts (not binary) should be needing this central binary one to get the returns of the functions just loding them with $.evalFile("*.jsxbin").

  • [CS5/JS] Ann: Javascript Help files updated

    Hi everyone. The new user-friendly Javascript Help files have been updated with a CS5 version. Download link on its homepage: http://www.jongware.com/idjshelp.html
    Only in Windows CHM-format for the moment (does anyone at all use the HTML version? If not ... well ... I dunno...).
    I spotted a few additions and changes in the Help file -- apart from support for the new commands, obviously -- such as proper Superclass referencing, and a few objects with Class properties, which apparently are something else than Instance properties. Hey, don't ask me. I only converted the file.
    Among the more interesting new objects:
    * "PlaceGun" -- finally, a way to 'load' the gun with text created solely by scripting?
    * "BeforeCreate", "AfterCreate" (and a few more similar): trap the event for (possibly) every object you can place into ID!
    * A new Scripting Preference: measurementUnit. Apparently, this is "the measurement unit used during script processing" and, ya-hey!, we scripters don't have to awkwardly read, save, change, and restore, the measurement units anymore!

    Minor cosmetic updates to the CHM version:
    * The bullet was shown as a decoded UTF-8 value on Robin Lu's Mac CHM viewer. Changed from its Unicode value to "&bull;" (quite the trick, as Saxon firmly objects to HTML stuff like that!). There may be more 'mangled' characters remaining, dunno if it's worth the trouble hunting them down one by one tho'.
    * Contrary to what I stated before, the Help does contain a few examples -- in the JavaScript Base Classes section. Rather terse, so for the experienced scripter they are hardly relevant; but perhaps newbies can put them to good use. They are marked by a pretty-in-pink background.
    * The list of parents in the Hierarchy view was not sorted alphabetically -- fixed. (I've finally started using XSLT 2.0 functions. Yay!)
    * Lists of multiple object datatypes were not sorted alphabetically -- fixed, by sorting them on the comma and the word "or". However, some of the more incomprehensible descriptions now got just a bit more incomprehensible ...
    E.g., common in "resize" functions: "Can accept: Array of 2 Reals, AnchorPoint enumerator or Array of Arrays of 2 Reals, CoordinateSpaces enumerators, AnchorPoint enumerators, BoundingBoxLimits enumerators or Long Integers." I have no idea how to mentally parse that, let alone have my computer do it.
    * Added more and more hyperlinks. I think most of ScriptUI's internal links to "Button", "Window", etc. which also have a 'regular' UI counterpart finally point to ScriptUI's own objects. Hard to check, really.
    * Also added hyperlinks for the common objects "Boolean", "String", "Number", and "Array" -- just to be complete!
    * The total number of internal hyperlinks now tops out above 104,000! (And no, I didn't check all of them.)
    Direct link to the CHM version: http://www.jongware.com/binaries/idcs5js_chm_3.0.3.zip
    (the minor version number jump from .1 to .3 is because of a lot of testing before I got everything right -- again...)
    The HTML version follows, somehow, somewhere, some time later. (HTML users: is that full function index of any use?)
    * For some reason the page for the "Global classes" was interpreted in the CHM contents as a 'book', rather than a regular help page, and you could not navigate to there! (A search for 'inifinity' still landed you on that page.) Fixed by hand, but I wonder why this happened ...
    Oh darn it! I found out why that happened, re-wrote part of my XSLT transform to fix it and broke lots of other things. Today, I fixed that, and now I see this doesn't work anymore -- again!
    You will be expecting a 0.4 version shortly, then.

  • Will VS 2015 offer any better javascript support for intellisense compare to 2013 or 2012?

    Ive started using AngularJS and the intellisense or code completion features are kinda blah in 2012 and done appear to be much any better in 2013.  Is there hope for 2015?  
    Other developers doing alot of front end work with javascript, especially with some of the newer frameworks are using tools like Webstorm for the front-end code and leaving VS for the back-end code.  Id rather not use two different IDE's if possible.
     Luckily, for now the front end code isnt that extensive on my projects, but that is starting to change.
    eg.
    http://wildermuth.com/2014/12/13/Visual_Studio_and_WebStorm_Am_I_Mad

    Hi shiftbit,
    Thank you for posting in MSDN forum.
    Based on your issue, as far as I know that the VS2015 is offer javascript support for intellisense. For more information, please see the part of the JaveScript Editor support from the following link.
    https://www.visualstudio.com/en-us/news/vs2015-preview-vs.aspx
    https://www.visualstudio.com/en-us/news/vs2015-vs.aspx
    In addition, about this AngularJS and the intellisense, please see the following blog.
    http://blogs.msdn.com/b/scicoria/archive/2015/02/27/angularjs-intellisense-nuget-package-added.aspx
    Since this VS2015 is still a preview version instead of final released version,
    Isuggest
    that you should submit this feedback to Microsoft Connect feedback portal:
    http://connect.microsoft.com/VisualStudio/feedback/CreateFeedback.aspx,
    Microsoftengineers
    will evaluate them seriously.
    After you submit the feedback, you can post the
    link here which will be beneficial for other members with the similar issue.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • PL/SQL vs Java vs C++?

    I have developed an inventory control application in MS Access & VBA that has been instrumental in saving my company $6 million so far, with at least another 4 to 5 million over the next 18 months. We are a processing plant and part of a global group

  • Time Capsule with Windows Vista

    I have a MacBook and a Macmini that I have conected to my Time Capsule. It works perfect. Now I also want the Time Capsule to work with my PC (windows vista). I can connect the PC so I have internet wireless but I can not access the hard drive in the

  • PO confirmation through EDI

    Hi folks!! I have send a PO through EDI to my supplier, which he has received and send an order acknowledgement, but it is not updated in the PO. While the inbound parameters are also maintained. What could be the possible missing assignments or obje

  • How to...update fireworks list to dynamic list

    Hello everyone! I've created a dropdown list in fireworks with static information, but what I would like it to display is data from my mysql database. In other words make the dropdown dynamic. I've searched, but haven't been succesful in finding info

  • APPRAISAL TEMPLATE ISSUE (HR ABAP)

    I have a appraisal template which is giving me 3 blank KRA's as standard one  when template document is created from tcode PHAP_PREPARE_PA . for appraiser and appraisee template. but i want to add KRA's  to the template during the creation of the tem