build the user interface of dialogue

Hi all

I'm building my first UI with javascript and Indesign.

Unfortunately, I do not understand how to align the static text with the label editext label...

My goal is to align the labelBitmap, limitBitmap. The result should look like this: "limit 1200 dpi bitmap image" on the 1 line.

Can someone help me?

Thanks for your reply.

I use the following code:

function createDialog() {}

var MonTableau = [];

var myListBoxBounds is [0, 0, 564, 160];.

If (app.extractLabel ("KasIgnoredFolders")! = "") {}

myArray = app.extractLabel("KasIgnoredFolders").split(",");

}

var Dlg is new window ('dialogue', 'reduction of images');.

DLG.orientation = "column";

dlg.alignChildren = 'top';

dlg.btnPnl = dlg.add ('panel', undefined, 'images ignored');

dlg.btnPnl.orientation = "column";

dlg.btnPnl.helpTip = "added an image if you do not want that it be taken into account by this script";

dlg.btnPnl.listBox = dlg.btnPnl.add ('listbox', undefined, myArray, {multiselect: true});

dlg.btnPnl.listBox.bounds = myListBoxBounds;

dlg.btnPnl.grp = dlg.btnPnl.add ('group');

dlg.btnPnl.grp.orientation = "row";

dlg.btnPnl.grp.addBtn = dlg.btnPnl.grp.add ('button', undefined, 'add an image');

dlg.btnPnl.grp.addBtn.helpTip = 'add an image to the list;

dlg.btnPnl.grp.removeBtn = dlg.btnPnl.grp.add ('button', undefined, "remove image");

dlg.btnPnl.grp.removeBtn.helpTip = 'delete the image selected in the list. "

dlg.btnPnl.grp.remAllBtn = dlg.btnPnl.grp.add ('button', undefined, "delete all");

dlg.btnPnl.grp.remAllBtn.helpTip = "remove all the images in the list."

DLG. GRP = dlg.add ("panel", undefined, 'settings');

DLG. GRP.orientation = "row";

dlg.grp.subGrp = dlg.grp.add ('group');

dlg.grp.subGrp.radioPanel_left = dlg.grp.subGrp.add ("panel", undefined, "subsampling");

dlg.grp.subGrp.radioPanel_left.alignment = 'left ';

dlg.grp.subGrp.radioPanel_left.alignChildren = 'left ';

dlg.grp.subGrp.radioPanel_left.rad1 = dlg.grp.subGrp.radioPanel_left.add ('radiobutton', undefined, "active");

dlg.grp.subGrp.radioPanel_left.rad2 = dlg.grp.subGrp.radioPanel_left.add ('radiobutton', undefined, 'disabled');

dlg.grp.subGrp2 = dlg.grp.add ('group');

dlg.grp.subGrp2.radioPanel = dlg.grp.subGrp2.add ("panel", undefined, "oversampling");

dlg.grp.subGrp2.radioPanel.alignment = 'right ';

dlg.grp.subGrp2.radioPanel.alignChildren = 'left ';

dlg.grp.subGrp2.radioPanel.rad3 = dlg.grp.subGrp2.radioPanel.add ('radiobutton', undefined, "active");

dlg.grp.subGrp2.radioPanel.rad4 = dlg.grp.subGrp2.radioPanel.add ('radiobutton', undefined, 'disabled');

-the problem is limit text box - here -.

dlg.grp.subGrp2.radioPanel.labelBitmap = dlg.grp.subGrp2.radioPanel.add ("statictext', undefined, ' limit bitmap image");

dlg.grp.subGrp2.radioPanel.limitBitmap = dlg.grp.subGrp2.radioPanel.add ("' edittext ', undefined, '1200');

dlg.grp.subGrp2.radioPanel.limitUnitBitmap = dlg.grp.subGrp2.radioPanel.add ("statictext', undefined, 'PPP');

dlg.grp.subGrp2.radioPanel.labelRaster = dlg.grp.subGrp2.radioPanel.add ("statictext', undefined, 'limit pixelated image');

dlg.grp.subGrp2.radioPanel.limitRaster = dlg.grp.subGrp2.radioPanel.add ("' edittext ', undefined, '300');

dlg.grp.subGrp2.radioPanel.limitUnitRaster = dlg.grp.subGrp2.radioPanel.add ("statictext', undefined, 'PPP');

// ----------------------- navigation ------------------------------

dlg.okBtn = dlg.add ('button', undefined, "script to launch", {name: 'ok'});

dlg.cancelBtn = dlg.add ('button', undefined, "Cancel", {name: "Cancel"});

var myDialogResult = dlg.show ();

Ditto var = {};

return same;

}

Just put the three elements (label, value, unit) in a group orientation "row".

Also, you don't need to do

dlg.grp.subGrp = dlg.grp.add ('group');

dlg.grp.subGrp.radioPanel_left = dlg.grp.subGrp.add ("panel", undefined, "subsampling");

Simply add the group immediately, you don't need the subgroup (unless you did not show the entire user interface and there is something under the radiobutton Control Panel).

Here's your second (Control Panel) rewritten a bit more organized. ignore if it does not help.

Xavier

var rad1, rad2, rad3, rad4, bitmapValue, rasterValue;

with (dlg.regPnl = dlg.add ("panel", undefined, 'settings'))

{

orientation = "row";

with (dlg.regPnl.sousPnl = Add ("panel", undefined, "subsampling"))

{

alignment = "fill".

alignChildren = 'left ';

rad1 = Add ('radiobutton', undefined, "enabled");     rad1. Value = true;

rad2 = Add ('radiobutton', undefined, "disabled");

}

with (dlg.regPnl.surPnl = Add ("panel", undefined, "oversampling"))

{

alignment = "fill".

alignChildren = 'left ';

rad3 = Add ('radiobutton', undefined, "enabled");     rad3. Value = true;

rad4 = Add ('radiobutton', undefined, "disabled");

with (DLG.regPnl.surPnl.bitmapRow = Add ('group'))

{

orientation = "row";

alignChildren = 'left ';

spacing = 2;

Add ("statictext', undefined, ' limit bitmap image");    children [0] .characters = 18;

bitmapValue = Add ("' edittext ', undefined, '1200');    children [1] .characters = 4;

Add ("' statictext ', undefined, 'IPR');

}

with (DLG.regPnl.surPnl.rasterRow = Add ('group'))

{

orientation = "row";

alignChildren = 'left ';

spacing = 2;

Add ("statictext', undefined, 'limit pixelated image');    children [0] .characters = 18;

rasterValue = Add ("' edittext ', undefined, '300');        children [1] .characters = 4;

Add ("' statictext ', undefined, 'IPR');

}

}

}

Tags: InDesign

Similar Questions

  • How to get an array of integers to user in the User Interface

    Hi all. I'm not a very experienced user of the CVI. I have almost exclusively coding in LabVIEW but have a client who wants all of their work in the CVI.

    I've been very fruitful so far (set up a Modbus API from scratch that supports all types of connection) but am confused on how I can get the integer multiples of the user without limiting the number of integers I can get. Essentially, I need to be able to get an array of integers to the user.

    General information, I am building a user interface to test my Modbus API. There are Modbus functions to 'Write multiple registers' and 'write multiple coils. I want the user to be able to enter all the values they want to write in one command.

    What is the best way to get an array of integers through the user interface?

    The easiest way is probably to allow user input in a textbox control numbers: items can be separated by spaces, commas, or even a line break (using ctrl + Enter). You will then need to extract the string from the TextBox and analyzed for numeric values using any non-digit character as a separator: strspn (string, '0123456789'); can be used for this.

    More complex, another possibility is to use a table control to receive user input: you Dresses an empty table with a reasonable number of roews, or you need some codes to add new lines as long as the user fills all those already existing. On the other hand, it will be easier since data recovery in a simple statement, you will all return values: GetTableCellRangeVals (panelHandle, PANEL_TABLE, VAL_TABLE_COLUMN_RANGE (1), table, VAL_COLUMN_MAJOR);

  • Passage of thanks VM SATA drives? (update: a bug in the user interface web host)

    I use ESXi 6.0 for private home use and am currently building a NAS with him (on top of ESXi OpenMediaVault). However, as I am using only material quality consumer, my SATA controller does normally not for raw device mapping. I added the raw device manually in accordance with VMware KB: Raw Device Mapping for the local storage but when I try to join the top device (via the file on the local data store) a virtual machine, the user interface gives me an error message indicating that the capacity is too large for the given data store (of course, the system disk is much smaller than the data disks).

    Is there a way I can still add raw devices to virtual machines?

    Another update: upgrading the client to the web user interface host to 3731936 seems to fix this problem. I can now add virtual disks as RDMs in the web client.

  • Export PDF with beaches by using the user interface

    Hello

    Request:

    PDF export with all or Pages in line with the concept of the user interface.

    We need user interface with the concept of dialogue or the Palette.

    So far,.

    myDlg = new Window('palette', 'XXX Export Option');
    myDlg.orientation = 'column';
    myDlg.alignment = 'left';
    //add drop-down
    myDlg.DDgroup = myDlg.add('group');
    
    var DialGroup = myDlg.DDgroup = myDlg.add('group');
    DialGroup.add("statictext", undefined, "Choose Page Nos.");
    DialGroup.orientation = 'column';
    DialGroup.alignment = 'left';
    var myRBAll = DialGroup.add('radiobutton', undefined, "All "); //1
    
    
    var myRBRange = myDlg.DDgroup.add('radiobutton', undefined, "Range");   //2
    var myList = myDlg.DDgroup.add('edittext');
    myList.minimumSize.width = 150;
    myDlg.DDgroup.orientation = 'row';
    
    myDlg.show();
    
    
    with(app.pdfExportPreferences){
    pageRange = mypageRange;
    }
    
    var myPDFFilePath = File("~/Desktop/abc.pdf")
    app.activeDocument.exportFile ( ExportFormat.pdfType, myPDFFilePath, false);
    
    
    myRBAll.addEventListener('click', function(event) {
    });
    
    myRBRange.addEventListener('click', function(event) {
        myList.enableBehavior = true;
    ////~ alert("Clicked RadioButton: " + this.text + "\nValue: " + event.target.value);
    });
    
    

    Screen Shot 2015-10-13 at 13.44.01.png

    Thanks in advance

    Siraj

    Try this,

    var doc = app.activeDocument;

    var myPDFFilePath = File("~/Desktop/abc.pdf")

    If (myRBRange.value)

    {

    app.pdfExportPreferences.pageRange = myList.text;

    }

    on the other

    {

    app.pdfExportPreferences.pageRange = PageRange.ALL_PAGES;

    }

    doc.exportFile (ExportFormat.PDF_TYPE, myPDFFilePath, false);

  • Develop the user interface to CS6 Plugin - which produced required Adobe?

    According to the development of the CS6 Illustrator SDK documentation, the only way to achieve platform-independent UI is the use of the flash or flex.

    I have to develop a plugin for AI CS6 for windows and Mac. Adding native controls is restless and too much time.

    The flex mxml seems relatively simple and fast (taking into account the time of development). That's why I chose flex as the UI component for my plugin.

    1. to use flex UI, I'll need to add all of the user interface in a mxml + actionscript compiled into an Extension of the AI (zxp file).

    2. all my business logic will remain in C++ which I believe will be platform independent.

    The SDK documentation confuses me in that all Adobe products are required to develop the flex user interface extension.

    1 adobe Extension Builder 2.1 (to generate the zxp file)

    2 flash Builder 4.5 stand-alone (is different from flex builder )?

    3 CS Creative Suite SDK (what is different from the THE CS6 SDK)?

    Which are optional and that mandatory for flex UI designig of AI plugin?

    I am a developer C++ and new to flex. So please ignore any declaration of amateaur above.

    DataSet wrote:

    Another question, we cannot use MFC / UI for AI plugin Windows activeX controls? We can at least get some help with the user interface infrastructure standard darg-drop.

    CreateWindow() is real pain.

    Yes, you can use MFC, but it makes your windows plugin only.

    QT and wxWidgets have user interface designers and is cross-platform.

  • deployment of a BPM Application large Oracle with several projects of the user interface

    Hello world
    I'm working on a large application with Oracle BPM 11.1.1.5.0.

    I use JDeveoper 11.1.1.5.0 to build the application.
    The application has many tasks user with a lot of the UI (one for each task of the user).

    My problem is, whenever I make a small change in the project, I need to deploy this, which includes a master project and five or six projects UI (for now) for tasks of the user.
    As demand grows, I'm sure that this will certainly become a problem.

    So my question is if I do this the good sense? or should there be a more effective way?

    Thanks in advance

    Published by: luke on April 17, 2012 12:16 AM

    Hi Luke
    1. as a general rule, there is NO need to have a user interface project for an individual task. As initiator, approver, reviewer, LegalApprover etc etc, you have like 10 tasks (.task files). You can have just a single project of TaskForms UI and have taskDetails.jspx generated for each of these tasks. This is appropriately.

    2. any Application workflow must have only 2 deployers. Deploy resources are for real Workflow stuff that will have the main BPEL or process, BPM, human tasks etc. Basically, everything that goes into the workflow project. And another official of the deployment is that the REST of things means that the UI TaskForms project and other project support as useful projects, WebServices, EJB projects (if you have Web services). All this will be deployed as a SINGLE EAR.

    Lets take an example JDeveloper IDE point of view.
    1. application Name: SalesOrderApp
    2 workflow project name: SalesProcess (he is a a project jdeveloper project SOA or BPM Project type and has all human tasks, bpels, process bpm, rules etc.).
    3 interface user Project: SalesTaskForms (it is a form generated automatically for the first task you choose. Then for the rest of the tasks you can use this same project, to generate jspx for all others. WORK files. VIEW documents online on how to do it. I'll see if I can compile this list of URLS for you).
    3. support the EJB projects: MyEJBProject1 (some EJB project that connects to some specific to your back-end database project)
    4. support another Service EJB project: MyExtServiceProject1 (as another project EJB that uses data from an external source)
    5. some WebService project: SalesCreditCardValidationWebService (some WebService project to be deployed as. WAR file that performs a service).

    Try to apply the Concepts of SOA for each Service your application needs. Instead of putting all the EJBs and everying in one giant project, try to split their need logically commercial/sage and geenrate separate projects so that they can maintain as it is to other projects and other applications.

    Anyway, coming back, in the example above, you should have deployment just 2: 1 is the JAR file of SCA in the Workflow and another complete of the EAR file.
    (a) for the workflow project, right-click and generate a deployment profile to deploy all the workflow and NOT on the other projects of the user interface.
    (b) for each project individual genereate a profile of deployment such as MyEJBProj1, MyEJBProj2, MyWebService1, etc etc.
    (c) for TaskForms project, generate a deployment as SalesTaskForms profile. It is a WAR file.
    (d) at the level of the Application, create a new profile of deployment of the EAR type and now assemble all the projects in this EAR, with the exception of the Workflow project.

    First of all, you deploy file JAR of SCA of the Workflow. You need to redeploy this again only when you make changes to the workflow, humantasks etc etc.
    Deploy the full blown EAR file that has all the stuff (EJB JARs, TaskForm WARs, WebService wars etc.).

    At any time, you change your code taskforms or redeploy a java, ejb, EAR file.

    You should have a POT and an EAR to deploy at the end of the day. Infact this is how it should go into UAT, and production. They may not have many pots, multiple wars deployed. The reason why we have separated Workflow SCA Jar file is, because the workflow will not change frequently. And also older versions of SOA/BPM (before 11.5 FP) have a huge disadvantage. Whenever we deploy a workflow project, it will make existing processes VITIATED, unless you deploy a different version. This isn't a problem anymore for 11.5 + FP (Feature Pack applied). Therefore, be careful when you redeploy workflow project.

    Thank you
    Ravi Jegga

  • The values are not displayed in the user interface

    Hello.

    I use jdev 11.1.1.5

    I need to refersh tha table

    I had created a TPTrialBal EO with corresponding VO. I had dragged and dropped it as an adf:table

    I had also created an adf:button named build., when I click on this button, some values are inserted into the TPTrialBal I need to show the value inserted in the user interface.,.
    How can I do this.,.

    could someone help me pls

    After update of data in the table add patialTrigger to the table component.
    You can do it by doing this. In the behavior section property table contains call partial property triggers here you
    adjustable from which component partial triggers this component, you can select your command button.

  • How to design the user interface of Indesign plugin cs6?

    Design of UI to the custom help c ++ library (SDK) for pluging is a work very tedious .so when I search on the net I found that we can do to help Adobe Creative Suite Extension Builder but I don't know how to use it to develop the user interface for the plugin and how to enable the management of events in this UI. I read a lot of document about it on the net, but they have all created a lot of confusion in my mind if someone can help me to know the steps I have to follow to develop the plugin using the this or whatever technology (action script, JavaScript etc)

    If you want to develop using Creative Suite Extension builder Extensions so I think that this is not the right forum for you. Thanks for posting your specific queries on the below mentioned link hotel

    http://forums.Adobe.com/community/creativesuites/cs_sdk

    To give a brief of how to develop the interface using JS ScriptUI user allows you to develop your user interface, it's a quick and an OS-independent approach to the development of the user interface. The user interface created using JS comes next. You can see the following link for more help on ScriptUI

    http://www.kahrel.plus.com/InDesign/scriptui.html

    I did not much info about the development of the CS SDK, but I can point you to one direction more than the dev called hybrid plugins that the user interface is created in CS SDK and appropriate methods are exposed plugin C++ (improve the script object model) to be called by the code CS for too and for communication between these two modules of code.

    Hope these pointer help you get started.

    Thank you

    -Manan

  • How can I get the user interface in af:SelectManyShuttle

    Hi all

    I downloaded the screenshot of the user interface I have to build using af: selectManyShuttle in the URL below.


    http://www.freeimagehosting.NET/a5f7c


    Can you get it someone please let me know how I can achieve this or is this still possible using ADF.

    The more important thing to realize in the user interface is icon next to each list of items under certain conditions.

    Thank you
    Rajesh

    Published by: Rajesh on August 8, 2011 12:05

    As far as I know, there is NO direct support for hierarchical select several shuttles.
    But you can create a custom hierarchical select many shuttle tree/tree-tables on both sides and having some features/custom buttons to add/remove items.

    If you use tables of the tree, you should be able to place the icon.

    Thank you
    Nini

  • Offset of the user interface after update of El Capitan

    Hello. Since I upgraded my Macbook Pro late 2013 to El Capitan retina, I've known GAL of the user in function, mainly opening animation of safari and switching between desktop computers. These issues are only to make my user base, I created a test user and concluded that the test user was not the offset of the user interface. I have reinstalled the operating system, as well as talked to apple. Apple had me reset the Pram so that delete files, including:

    / Library/LaunchAgents

    ~/Library/LibraryAgents

    / Library/LaunchDaemons

    / Library/Caches

    ~/Library/caches

    and many other files like these.

    None of that helped, my UI lag is still there and fine. Also, I'm not sure if this is relevant; However, my recovery HD (available from start by pressing the alt/option key) is not an option. I'm not sure if the files I deleted with apple support caused it or reinstalling the operating system has done this. IM thinking delete files because I reinstalled the operating system using the HD recovery.

    Does anyone know how to fix the lag in the UI? I know other people have this problem, google search and this forum but no clear answer has not developed.

    Thank you

    Caulin Bloom

    Please launch the Console application in one of the following ways:

    ☞ Enter the first letters of his name in a Spotlight search. Select from the results (it should be at the top).

    ☞ In the Finder, select go utilities ▹ of menu bar or press the combination of keys shift-command-U. The application is in the folder that opens.

    ☞ Open LaunchPad and start typing the name.

    The title of the Console window should be all Messages. If it isn't, select

    SYSTEM LOG QUERIES ▹ all Messages

    in the list of logs on the left. If you don't see this list, select

    List of newspapers seen ▹ display

    in the menu at the top of the screen bar.

    Click on the clear view icon in the toolbar. Then take an action that does not work the way you expect. Select all of the lines that appear in the Console window. Copy to the Clipboard by pressing Control-C key combination. Paste into a reply to this message by pressing command + V.

    The journal contains a large amount of information, almost everything that is not relevant to solve a particular problem. When you post a journal excerpt, be selective. A few dozen lines are almost always more than enough.

    Please don't dump blindly thousands of lines in the journal in this discussion.

    Please do not post screenshots of log messages - text poster.

    Some private information, such as your name or e-mail address, can appear in the log. Anonymize before posting.

    When you post the journal excerpt, an error message may appear on the web page: "you include content in your post that is not allowed", or "the message contains invalid characters." It's a bug in the forum software. Thanks for posting the text on Pastebin, then post here a link to the page you created.

    If you have an account on Pastebin, please do not select private in exposure menu to paste on the page, because no one else that you will be able to see it.

  • WIN8 registers touch but no reaction from the user interface?

    Anyone having problems with Win8 button when your fingers are clearly registered (Windows gives this feedback from the spherical ripple effect) but the user interface under your finger does nothing? No not the button and so on.

    I live it with some Chrome for example, with the small button tab when it is near the top edge of the screen.

    If I drag the window to the center of the screen, I have no problem with getting keys recorded. Hit the button new little tab gives no trouble.

    When user interface elements are close to the edge, no reaction, even if the wave indicator appears.

    Cannot know if it is a driver or a HW problem. I use X220T.

    Example screenshot

    May be a problem with Chrome, in fact. Tried with Firefox and the new tab button is a lot easier to hit. ---> will give Chrome devs a hint

    EDIT: what you know! The new beta version has already dealt with this issue:

    https://www.Google.com/chrome/browser/beta.html

  • Flatten to a string to send arbitrary objects by messages from the user interface?

    Hi people,

    I am trying to send arbitrary data by messages from the user interface defined by the user to my labview interface. Something funny happens then: if I send the data through the message of ui, it seems I have something strange. There is only one character or nothing in the message of the user interface that reached my reminder.

    It seems that flatten channel also creates control characters that are interpreted by NI TestStand and Labview not as members of the chain, and for this reason I only get incomplete data. within the action of testand, which creates the flattened data, I put a dialog box to display the string data, and it seems that at least up to 255 (ascii) characters are used.

    Is there something like uuencode/uudecode to avoid this problem?

    Thanks in advance

    Okidoki, found.

    His «binary"produced by «Flatten the string» string Apparently I thought, the LabVIEW data type is incompatible with the API of TestStand from LabVIEW. In conclusion I would classify this as a bug (sorry people, at least there should be documentation) API for LabVIEW TestStand 2014.

    As a solution, I use flatten it in XML, which is a printable and human readable 'normal' string.

    It was trial and error, and I'm not enjoying this.

  • How to get TS::SequenceContextPtr to customize the user interface

    I want the file of the custom, user interface sequence value therefore need to take stock of the TS:equenceContextPtr, anyone know how to get this point.

    Is there a reason that UIMessages are not enough?

    Just off the top of my head, here are a few concerns with the not not using UIMessages:

    1. How the user interface is unknown when the file of the sequence is developed to set the value.  Without an event or some sort of synchronization you can do exactly that.  UIMessages not only to ensure the right information, but they help also with synchronization.

    2. The engine does not know this information, and view of execution manager knows that the information for the current execution it is linked to (which changes throughout the life of a series of tests).  Basically, recall of front end, model, and other factors may spawn short executions briefly related to the Manager view of execution.  So if you take the context of the sequence of the current run is perhaps not the right one.

    3. Writing a user interface will be couple the user interface to your specific sequence file.  At this point, you can use the network variables or global variables or global queues as well.  It might even be better options.

    The situation you describe is exactly why the UIMessages were created.  Maybe you can help me understand why you are set on the use of pointers, you already have?  There might be a better solution for your case if I'm misunderstanding you.

    Thank you

  • Why me disables the user interface click on another button, while it performs a scan?

    Hello

    When I run the user interface and click on a button that is sweeping the voltage for a period of time, I can't press any other button that sits on my Panel, lets say the Abort button that would prevent the action.

    So when I take the data and I realize that I should stop him before he finishes the scan, I can't and it's a really bad drawback.

    How can I improve this problem?

    Thank you

    Hi m.s.taba,

    It seems to me that your code runs the function leave but does not exit the loop you are, then the program stops at the end of the loop.

    To avoid this, you can:

    • use a global variable to the time your long recall and the recall of quit smoking
    • Call ProcessSytemEvents in the loop
    • reminder for the button leave defines the global variable
    • inside the loop, immediately after ProcessSystemEvents, you should test the value of the variable, and if the value you must break out of the loop
    • only after the exit of the loop, you can complete your program

  • Error variables look a tab after race change the user interface

    Hello

    I have a problem which seems to be a bit like this:

    http://forums.NI.com/T5/NI-TestStand/error-viewing-variables-tab-in-runtime-operator-interface/m-p/1...

    The VI I'm running is a step of edit of a type of step. LabVIEW checks if the property 'Step.Setup.ReadMeasName' exists, fills a listbox with her if she does. An another ListBox with all available measure names will also appear on the user interface. The user has an Add and Remove button to remove the 'ReadMeas' list box measures or add them to it of the listbox 'MeasNames '. Several names may be added/removed according to what is selected when you press the buttons. Once 'Fact' is clicked the VI writes the 'Ref' to the list box "ReadMeas" property to "Step.Setup.ReadMeasName", using a node to set the value of property that is passed the TestStand sequence context. If the property does not exist it creates.

    The only time where I have any problem is when I try to remove items from the property, after it is already initialized (i.e. non-empty). In other words, if I run the VI of teststand, put several names as in "ReadMeas" click on done, again run the VI (already added names appear in the box when the user interface is displayed, LabVIEW reads "Step.Setup.ReadMeasName"), then remove the names. IF "ThisContext.Step.Setup.ReadMeasNames" has opened in the tab 'Variables' step when you try to remove the names, I got this message in the Variables tab: 'one or more errors occurred. Please save your work and restart the application. "If I'm careful of not having expaded 'ThisContext' in the variables tab, but check the property before and after the removal of names in the list it does not work properly, and there is no error.

    This isn't a big problem because I doubt that the end user will check to see that the property has actually filled, but I still want to fix the bug if possible. I installed the patch for TestStand 2010 and the .net Framework 4.0. Someone has an idea of what might be happening here?

    Thank you

    -Josh

    Josh-

    Looks like you are running in a known issue 193751, which is documented in TestStand 2010 and 2010 SP1 known issues list. It is a problem that we intend to fix in a future version of TestStand.

    I hope this helps and I'm sorry for any inconvenience this issue may cause you.

Maybe you are looking for

  • My youtube videos don't is not loading. "year error occurred, please try again later".

    Hello Recently, I asked a says: "I click on a YouTube video, an error message shows on the screen saying:" year error occurred, please try again later. " «More» with a black background. I'm sure that all of you guys have experienced at least once. Ho

  • Cannot find what I am looking for, please give advice.

    Hi, I repair computers and I have a client with a HP G72-b27cl. The left hinge is broken and cover part of the screen (the black border around the screen, the car is perfectly fine). She wants to replace me broken parts. How can I go about getting th

  • Why my HP support assistant keep crashing?

    HP Pavilion dv7-6175us notebook pc, Windows 7 64 bit I did not major changes, no new software or hardware installed (just the usual gazillion updates for each * beep * program and operating system) I tried to uninstall and reinstall HP support assist

  • Embedding Windows Media play in LabVIEW

    Hello I ve tried to play (MPEG4 coded) using ActiveX plug-in for Windows Media Player. The problem occurs when I change the appearance of the window property. If the property "window has the title bar" is not checked, the video does not appear, but t

  • rock paper scissors game

    Hello I just want to ask can I use arduino with labview for programming in real time! My main concept is to play a game of stone called paper scissors, famous one using labview and the arduino hardware! A person will be playing this game against the