Conflict loading two LLBs

Hey,.

I'm having a problem call two separate LLBs of TestStand within the same performance. If I create a file of sequence and call other LLBs execution can operate without problem. If I create a file of sequence and call LLBs of both LLBs loading will fail and forms will give this error message:

I made sure that all the screws that have been created in each project are only appointed so that they come into conflict during loading. But I'm not aware of what other possible conflicts that may exist or a method for the diagnosis of what is at the origin of the conflict. I know that the LLBs both contain some common XNET Subvi another common Subvi, but they should be the exact same Subvi and I didn't have a conflict with the other LLBs in similar circumstances.

So, I'm not really sure where to go here to solve the problem. Any help would be greatly appreciated.

Thank you

Kevin

Hey Kevin,

This looks like a problem with namespace for me. Even if the components of VI are named differently in the LLB, it would probably still a problem. LLB does not prevent name collisions.

I recommend actually change how you distribute your components VI as. LLB is a little dated and have some drawbacks. My recommendation would be to manage your LabVIEW code as libraries in the project (.lvlib) or packaged the project libraries. The last post of this thread by user Jervin Justin actually brings up some really good points about it,

http://forums.NI.com/T5/NI-TestStand/what-are-the-advantages-of-using-LabVIEW-projects-in-TestStand/...

Based on this thread (and the information contained in this white paper on libraries of the packed project) I probably recommend a packed library project would approach for a solution to what you are looking for.

Here are some additional documents that you might find interesting:

TestStand Help: Libraries of the LabVIEW project: http://zone.ni.com/reference/en-XX/help/370052K-01/tsdeploysystem/infotopics/lvprojectlibrary/

With the help of LabVIEW with TestStand (page 7-7): http://www.ni.com/pdf/manuals/375070b.pdf

Honestly, I would try on implementing an approach to project packaged for your test from VI library as opposed to the. LLB. If this is not feasible for you, however, we can try to address the problem in a different way. Let me know.

Have a great day!

Tags: NI Software

Similar Questions

  • When I run a web browser immediately loaded two blank tabs. How to make the browser to load the only?

    When I run a web browser immediately loaded two blank tabs. How to make the browser to load the only?

    Have you checked the home page to make sure that if is not the vertical bar (|) symbols?

    See the following for a few suggestions:

  • I have a dell computer, it has axtra D drive for drive & utilities I have mistakanly loaded two times I remove and reinstall please help / ps its low memory, see the

    I have a dell computer, it has axtra D drive for drive & utilities I have mistakanly loaded two times I remove and reinstall please help / ps its low memory, see the

    Hello


    (1) what exactly are you trying to delete?
    (2) what exactly you are trying to re - install?
    (3) exactly where do you get this memory low message?
     
    The reader might be for backup and could have copied data on the same, thanks to which it shows a low space.

    You can contact Dell technical support for assistance by following this link:
    http://support.Dell.com/
    Hope this information is useful.
  • sqlloader to load two tables of the single data file in a single operation

    Oracle 11.2.0.3 SE - One

    Oracle Linux 5.6

    I don't know if I need a second set of eyes or if I am missing something.

    Problem: Given a file of text csv with header and detail records (identified by the first field in the file) use sql loader to load the header and detail of the tables in a single operation.

    The header record is to take, but the detail records are rejected by omitting the WHEN clause.

    More comments after reading through the exhibits:

    In view of these two tables:

    SQL > desc EDSTEST_HEADER

    Name                                      Null?    Type

    ----------------------------------------- -------- ----------------------------

    EDSTEST_HEADER_ID NOT NULL NUMBER

    REC_TYPE VARCHAR2 (10)

    SOLD_TO_ACCOUNT VARCHAR2 (50)

    SCAC_RECEIVER_ID VARCHAR2 (50)

    FORMAT_TYPE VARCHAR2 (10)

    CLIENT_NAME VARCHAR2 (100)

    CUSTOMER_PICKUP_ADDRESS VARCHAR2 (100)

    CUSTOMER_PICKUP_CITY VARCHAR2 (50)

    CUSTOMER_PICKUP_STATE VARCHAR2 (10)

    CUSTOMER_PICKUP_ZIP VARCHAR2 (50)

    INSERT_USER VARCHAR2 (50)

    DATE OF INSERT_USER_DATE

    INSERT_STATUS_CODE VARCHAR2 (10)

    SQL > desc EDSTEST_DETAIL

    Name Null?    Type

    ----------------------------------------- -------- ----------------------------

    EDSTEST_DETAIL_ID NOT NULL NUMBER

    NUMBER OF EDSTEST_HEADER_ID

    REC_TYPE VARCHAR2 (10)

    SHIP_TO_NAME VARCHAR2 (100)

    SHIP_TO_ADDRESS VARCHAR2 (100)

    SHIP_TO_CITY VARCHAR2 (50)

    SHIP_TO_STATE VARCHAR2 (10)

    SHIP_TO_ZIP VARCHAR2 (50)

    STATUS_OR_APPT_REASON_CD VARCHAR2 (10)

    EVENT_DESCRIPTION VARCHAR2 (50)

    SHIPMENT_STATUS_CD VARCHAR2 (10)

    SHIPMENT_EVENT_DATE VARCHAR2 (10)

    SHIPMENT_EVENT_TIME VARCHAR2 (10)

    EVENT_TIME_ZONE VARCHAR2 (30)

    EVENT_CITY VARCHAR2 (100)

    EVENT_STATE VARCHAR2 (50)

    EVENT_ZIP VARCHAR2 (50)

    CUSTOMER_CONFIRM VARCHAR2 (100)

    DELIVERY_CONFIRM VARCHAR2 (100)

    TRACKING_NUMBER VARCHAR2 (50)

    MAIL_REC_WEIGHT VARCHAR2 (20)

    MAIL_REC_WEIGHT_CD VARCHAR2 (10)

    MAIL_RED_QTY VARCHAR2 (10)

    INSERT_USER VARCHAR2 (50)

    DATE OF INSERT_USER_DATE

    INSERT_STATUS_CODE VARCHAR2 (10)

    In light of this data file:

    Oracle: mydb$ cat eds_edstest.dat

    HDR, 0005114090, MYORG, CSV, MY NAME OF THE COMPANY, 123 ELM ST, STUCKYVILLE, OH, 12345

    DTL, TOADSUCK, NC, 27999, NS, ARRIVED at the UNIT, X 4, 20140726, 063100, AND, TOADSUCK, NC,.3861, 27999, 12345, 23456 lbs, 1

    DTL, TOADSUCK, NC, 27999, lbs, 1 NS, SORTING COMPLETE, X 6, 20140726, 080000, AND TOADSUCK, NC,.3861, 27999, 12345, 23456

    DTL, TOADSUCK, NC, 27999, NS, PRONOUNCED, D1, 20140726, 121800, TOADSUCK, NC, 27999, 12345, 23456,.3861, lbs and 1

    Given this control sqlloader file:

    Oracle: mydb$ cat eds_edstest_combined.ctl

    Load

    INFILE ' / xfers/oracle/myapp/data/eds_edstest.dat'

    BADFILE ' / xfers/oracle/myapp/data/eds_edstest.bad'

    DISCARDFILE ' / xfers/oracle/myapp/data/eds_edstest.dsc'

    ADD

    IN THE TABLE estevens.edstest_header

    WHERE (rec_type = 'HDR')

    FIELDS TERMINATED BY ', '.

    SURROUNDED OF POSSIBLY "" "

    TRAILING NULLCOLS

    (rec_type CHAR,

    sold_to_account TANK,

    scac_receiver_id TANK,

    format_type TANK,

    client_name TANK,

    customer_pickup_address TANK,

    customer_pickup_city TANK,

    customer_pickup_state TANK,

    customer_pickup_zip TANK,

    INSERT_USER "1"

    INSERT_USER_DATE sysdate,

    INSERT_STATUS_CODE CONSTANT 'I')

    IN THE TABLE estevens.edstest_detail

    WHERE (rec_type = 'PIF')

    FIELDS TERMINATED BY ', '.

    SURROUNDED OF POSSIBLY "" "

    TRAILING NULLCOLS

    (rec_type CHAR,

    ship_to_name TANK,

    ship_to_address TANK,

    ship_to_city TANK,

    ship_to_state TANK,

    ship_to_zip TANK,

    status_or_appt_reason_cd TANK,

    event_description TANK,

    shipment_status_cd TANK,

    shipment_event_date TANK,

    shipment_event_time TANK,

    event_time_zone TANK,

    event_city TANK,

    Event_State TANK,

    event_zip TANK,

    customer_confirm TANK,

    delivery_confirm TANK,

    tracking_number TANK,

    mail_rec_weight TANK,

    mail_rec_weight_cd TANK,

    mail_red_qty TANK,

    INSERT_USER "1"

    INSERT_USER_DATE sysdate,

    INSERT_STATUS_CODE CONSTANT 'I')

    -END CONTROL FILE

    And the time of execution of transactions:

    SQL * Loader: release 11.2.0.3.0 - Production the kill Jul 29 07:50:04 2014

    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

    Control file: /xfers/oracle/myapp/control/eds_edstest_combined.ctl

    Data file: /xfers/oracle/myapp/data/eds_edstest.dat

    Bad leadership: /xfers/oracle/myapp/data/eds_edstest.bad

    Delete the file: /xfers/oracle/myapp/data/eds_edstest.dsc

    (Allow all releases)

    Number of loading: ALL

    Number of jump: 0

    Authorized errors: 50

    Link table: 10000 lines, maximum of 256000 bytes

    Continuation of the debate: none is specified

    Path used: classics

    Silent options: your COMMENTS

    Table ESTEVENS. EDSTEST_HEADER, loaded when REC_TYPE = 0 X 484452 (character "HDR") add the option in effect for this table: APPEND TRAILING NULLCOLS option in effect

    Column Position Len term Encl. Datatype name

    ------------------------------ ---------- ----- ---- ---- ---------------------

    FIRST REC_TYPE *, O ("") CHARACTER

    SOLD_TO_ACCOUNT NEXT *, O ("") CHARACTER

    SCAC_RECEIVER_ID NEXT *, O ("") CHARACTER

    FORMAT_TYPE NEXT *, O ("") CHARACTER

    CLIENT_NAME NEXT *, O ("") CHARACTER

    CUSTOMER_PICKUP_ADDRESS NEXT *, O ("") CHARACTER

    CUSTOMER_PICKUP_CITY NEXT *, O ("") CHARACTER

    CUSTOMER_PICKUP_STATE NEXT *, O ("") CHARACTER

    CUSTOMER_PICKUP_ZIP NEXT *, O ("") CHARACTER

    INSERT_USER NEXT *, O ("") CHARACTER

    The SQL string for the column: "1."

    INSERT_USER_DATE SYSDATE

    CONSTANT INSERT_STATUS_CODE

    The value is 'I '.

    Table ESTEVENS. EDSTEST_DETAIL, loaded when REC_TYPE = 0X44544c ('PIF' character) in effect for this table insert option: APPEND TRAILING NULLCOLS option in effect

    Column Position Len term Encl. Datatype name

    ------------------------------ ---------- ----- ---- ---- ---------------------

    REC_TYPE NEXT *, O ("") CHARACTER

    SHIP_TO_NAME NEXT *, O ("") CHARACTER

    SHIP_TO_ADDRESS NEXT *, O ("") CHARACTER

    SHIP_TO_CITY NEXT *, O ("") CHARACTER

    SHIP_TO_STATE NEXT *, O ("") CHARACTER

    SHIP_TO_ZIP NEXT *, O ("") CHARACTER

    STATUS_OR_APPT_REASON_CD NEXT *, O ("") CHARACTER

    EVENT_DESCRIPTION NEXT *, O ("") CHARACTER

    SHIPMENT_STATUS_CD NEXT *, O ("") CHARACTER

    SHIPMENT_EVENT_DATE NEXT *, O ("") CHARACTER

    SHIPMENT_EVENT_TIME NEXT *, O ("") CHARACTER

    EVENT_TIME_ZONE NEXT *, O ("") CHARACTER

    EVENT_CITY NEXT *, O ("") CHARACTER

    EVENT_STATE NEXT *, O ("") CHARACTER

    EVENT_ZIP NEXT *, O ("") CHARACTER

    CUSTOMER_CONFIRM NEXT *, O ("") CHARACTER

    DELIVERY_CONFIRM NEXT *, O ("") CHARACTER

    TRACKING_NUMBER NEXT *, O ("") CHARACTER

    MAIL_REC_WEIGHT NEXT *, O ("") CHARACTER

    MAIL_REC_WEIGHT_CD NEXT *, O ("") CHARACTER

    MAIL_RED_QTY NEXT *, O ("") CHARACTER

    INSERT_USER NEXT *, O ("") CHARACTER

    The SQL string for the column: "1."

    INSERT_USER_DATE SYSDATE

    CONSTANT INSERT_STATUS_CODE

    The value is 'I '.

    value used for the parameter LINES increased from 10000 to 30 sheet 2: discarded - failed all WHEN clauses.

    Sheet 3: Discarded - failed all WHEN clauses.

    Folder 4: Discarded - failed all WHEN clauses.

    Table ESTEVENS. EDSTEST_HEADER:

    1 row loaded successfully.

    0 rows not loaded due to data errors.

    3 rows not loading because all WHEN clauses were failed.

    0 rows not populated because all fields are null.

    Table ESTEVENS. EDSTEST_DETAIL:

    0 rows successfully loaded.

    0 rows not loaded due to data errors.

    4 rows not loading because all WHEN clauses were failed.

    0 rows not populated because all fields are null.

    The space allocated to bind table: 247800 byte (30 lines)

    Bytes of read buffer: 1048576

    Total logical records ignored: 0

    Total logical records read: 4

    Total rejected logical records: 0

    Logical records discarded total: 3

    Run started the kill Jul 29 07:50:04 2014

    Run finished on Tue Jul 29 07:50:04 2014

    Time was: 00:00:00.07

    Time processor was: 00:00:00.01

    It works on linux, and the file data calculated from a Windows system to the time we get to it, but it's in the * nix format - with a simple x '0A' as the line terminator.

    If, in the control file, I comment on the block of INSERTION for the header table, retail inserts very well.

    If, in the control file, (return to the initial charge, two tables) I change the line

    INFILE ' / xfers/oracle/myapp/data/eds_edstest.dat'

    To read

    INFILE ' / xfers/oracle/myapp/data/eds_edstest.dat' "str" | "» \n' »

    The saved result becomes

    Table ESTEVENS. EDSTEST_HEADER:

    1 row loaded successfully.

    0 rows not loaded due to data errors.

    0 rows not loading because all WHEN clauses were failed.

    0 rows not populated because all fields are null.

    Table ESTEVENS. EDSTEST_DETAIL:

    0 rows successfully loaded.

    0 rows not loaded due to data errors.

    1 row not loaded because all WHEN clauses were failed.

    0 rows not populated because all fields are null.

    I try to help the developer on this, and it resists change to use external tables. Even if I can overcome that, I now have a puzzle I want to solve, just to add to my knowledge.  Plus, I have some concerns at this stage that whatever it is that miss me here could also come into play if I convert external tables.

    Ed,

    Are you sure that put you the post in the right place?  It should be located in the first definition of the following field each time after the first when clause clause.  Put after the first when the clause is optional.  When I use the following with what you have provided, it loads 1 record in the table header and 3 records in the Details table.  Did you actually do or tell your developer to do and wish that he understood and put it in the right place?

    Load

    INFILE 'eds_edstest.dat '.

    BADFILE "eds_edstest.bad."

    DISCARDFILE 'eds_edstest.dsc '.

    ADD

    IN THE TABLE edstest_header

    WHERE (rec_type = 'HDR')

    FIELDS TERMINATED BY ', '.

    SURROUNDED OF POSSIBLY "" "

    TRAILING NULLCOLS

    (rec_type CHAR,

    sold_to_account TANK,

    scac_receiver_id TANK,

    format_type TANK,

    client_name TANK,

    customer_pickup_address TANK,

    customer_pickup_city TANK,

    customer_pickup_state TANK,

    customer_pickup_zip TANK,

    INSERT_USER "1"

    INSERT_USER_DATE sysdate,

    INSERT_STATUS_CODE CONSTANT 'I')

    IN THE TABLE edstest_detail

    WHERE (rec_type = 'PIF')

    FIELDS TERMINATED BY ', '.

    SURROUNDED OF POSSIBLY "" "

    TRAILING NULLCOLS

    (rec_type POSITION (1) TANK,

    ship_to_name TANK,

    ship_to_address TANK,

    ship_to_city TANK,

    ship_to_state TANK,

    ship_to_zip TANK,

    status_or_appt_reason_cd TANK,

    event_description TANK,

    shipment_status_cd TANK,

    shipment_event_date TANK,

    shipment_event_time TANK,

    event_time_zone TANK,

    event_city TANK,

    Event_State TANK,

    event_zip TANK,

    customer_confirm TANK,

    delivery_confirm TANK,

    tracking_number TANK,

    mail_rec_weight TANK,

    mail_rec_weight_cd TANK,

    mail_red_qty TANK,

    INSERT_USER "1"

    INSERT_USER_DATE sysdate,

    INSERT_STATUS_CODE CONSTANT 'I')

  • Two sites of finance not only loading login pages

    Before the latest updates Firefox loaded two Web sites without problems. Now site Colonial First State does not display a login page and the readings I have to update my browser. The Commonwealth Bank site lets connect me but will not open any account information. The Commonwealth bank helpdesk told me to use Google Chrome. I did and it works very well with both sites.

    Hello

    Try Firefox Safe mode to see if the problem goes away. Safe mode is a troubleshooting mode, which disables most of the modules.

    (If you use it, switch to the default theme).

    • You can open Firefox 4.0 + in Safe Mode holding the key SHIFT key when you open the desktop Firefox or shortcut in the start menu.
    • Or open the Help menu and click on the restart with the disabled... modules menu item while Firefox is running.

    Once you get the pop-up, simply select "" boot mode safe. "

    If the issue is not present in Firefox Safe Mode, your problem is probably caused by an extension, and you need to understand that one. To do this, please follow article Troubleshooting extensions, themes and problems of hardware acceleration to resolve common Firefox problems .

    To exit safe mode of Firefox, simply close Firefox and wait a few seconds before you open Firefox for normal use again.

    When find you what is causing your problems, please let us know. It might help others who have the same problem.

    Thank you.

  • Can I use two NI PCI-232/4 cards in a PC without conflict?

    I currently have a system with an NI PCI-232/4 card, all the ports used.

    Trying to decide between getting a second card or the upgrade of the current map to one with more ports. If possible, I would just add a second card but I want to assure you that there will be a conflict using two of the same card.

    Hi dcjoey,

    You can use two cards of the same type on the same computer, the system should have no problem telling them apart. 232 new ports will have unique numbers like 232 ports on your first card PCI-232 and your built in COM port. For example if you have 2 devices PCI-232/4 and one built in the COM port, you should see COM 1 (built in), COM 2, 3 COM, COM 4, COM 5 (first map), COM 6, COM 7, COM 8 COM 9 (second map).

    Let us know if you need more information.

    Thank you

    Scott M.

  • Bing is loading before my home page. How can I get rid of Bing?

    Just today, Bing started to load when I started FireFox before my home page. I looked around Bing on my computer and can't find it. What I did today to ask you... Well I load two programs... which I have since deleted. Still stuck with Bing. I have checked the Add-ons and extensions, looked for something new in the list of programs on the control panel...
    I'm stuck here people... Help!... Please, I beg you.

    The same Junk page appear when you open a new window (Ctrl + n) or click on the Home icon or press Alt + start of the keyboard?

    If so:

    • If your home page setting is correct, one of your extensions may be overriding your setting. Open the page modules using either:

      • CTRL + SHIFT + a
      • "3-bar" menu button (or tools) > Add-ons

    In the left column, click Extensions. Then, when in doubt, turn off, or if evil obvoiusly, remove. Often, a link will appear above at least an extension disabled to restart Firefox. You can complete your work on the tab and click one of the links in the last step.

    If not:

    If the problem only occurs when you use your Firefox shortcut icon /, it could be hacked. Right click > properties > Shortcut tab. The 'target' for 32-bit Windows 7 should be it (no more, no less):

    "C:\Program Files\Mozilla Firefox\firefox.exe"
    

    If anything else follows, try to remove it.

  • "IP address conflict" - Ethernet connection

    I have 2 computers connected via ethernet to my router. My computer got no problems. But my brother's computer is connected but has a very limited speed (even if I log out of mine). It is said that he got a "IP address conflict. (we are both using Win7)

    Someone else has experienced this problem and has a solution?
    Recently, we have replaced our old router and modem broadband.

    Hi Eivind,

    An IP address conflict occurs when two computers on a LAN (local area network) or the Internet were assigned to the same IP. IP conflicts between two computers normally make one or unusable both for network operations.

    Method 1: You can try to reset the stack TCP/IP go to this article and either click on "Fix it for me" or follow the instructions to fix it yourself:
    http://support.Microsoft.com/kb/299357

    Method 2:

    Using the troubleshooter from network in Windows 7
    http://Windows.Microsoft.com/en-us/Windows7/using-the-network-troubleshooter-in-Windows-7

    Method 3: Temporarily disable the security software and firewall settings and check if the Internet connection drops.

    Note: Antivirus software can help protect your computer against viruses and other security threats. In most cases, you should not disable your antivirus software. If you need to disable temporarily to install other software, you must reactivate as soon as you are finished. If you are connected to the Internet or a network, while your antivirus software is disabled, your computer is vulnerable to attacks.
     
    For more information:

    Wireless and wired network problems

    http://Windows.Microsoft.com/en-us/Windows/network-connection-problem-help#network-problems=Windows-7&V1H=win8tab1&V2H=win7tab1&V3H=winvistatab1&v4h=winxptab1

    Let us know if you have other questions about Windows in the future. We will be happy to help you.

  • I have a Hp touchsmart 600-1050 and I also have 3 other laptops running of the internet itself, but I get a message IP address conflict.

    I have a Hp touchsmart 600-1050 and I also have 3 other laptops running of the internet itself, but I get a message IP address conflict, why? & How can I fix this problem, thanks Aldo Zapata

    An IP address conflict occurs when two computers on a LAN (local area network) or the Internet were assigned to the same IP. IP conflicts between two computers normally make one or unusable both for network operations.

    Try below methods

    1. for networks where the addresses are fixed (statically assigned) IP, ensure that each local host is configured with a unique IP address.

    2. If your computer has an address assigned dynamically, releasing and renew its IP address can bypass IP address conflicts.

    Run the following commands in the command prompt:

    ipconfig/release

    ipconfig / renew

  • migration of data store has failed - now there are two vm - one power off?

    I was migrating a vm fw at different stores of data when a failure has occurred. They may have been cancelled or it may have been the fact that our vcenter server has restarted. I don't know if this would have caused this problem.

    In any case, now, two of the VM series two - power and the other copies are turned off. One that is off is the data store b and the virtual machine is the one data store. The strange thing is, shows of b (power off vm) data store which is where the files are located while the virtual machine is on a. When I browse a datastore I cannot find all files... It just hangs. I googled but am stuck.

    See the screenshots for more details. Thanks in advance!

    Edit: finally to load two data warehouses. They both show identical files: vmdk, vmfx, vmsd etc. for the two virtual machines on two data stores. It's weird!

    Edit 2: or vm, on or off, power to the high/off or migrate or remove from the inventory. Both are 'ping' and one that is good though.

    I figured this out. I have ssh was the host of the virtual machine is on (the two virtual machines were on the same hosts). Down to power, I ran the following command "esxcli vm kill process - type = soft - world id = xxxxx."

    That he got the vm to stop. The virtual machine of the same name already powered off then showed as "orphans". I removed the orphan vm of the inventory, the other vm started automatically acknowledgement of receipt, then I deleted the orphan vm of the 2nd data store.

  • Has anyone tried to load 5 ESXi on a HP Z620?

    If someone tried to load any version of ESXi on HP Z620?

    This is a new workstation that is supposed to be an upgrade of the previous Z600, but it has several improvements, so I was wondering if it is supported, because it would make for a less costly solution than to have to buy a Proliant server...

    Yes, I finally got one of these workstations and they ROCK, as they have USB 3.0 and a bunch of other options, but unless you work for Pixar or somebody Runnin' software for modeling 3D FULL-ON then it's exaggerated for a regular work...

    Anyway, I didn't just install Windows Server so I decided to try VMware ESXi on this machine, so I could use it as a development server, and I can still RDP in my own work space.

    So maybe this will help others, but the HP Z620 works with:

    ESXi 5.0

    5.1 ESXi

    I loaded two versions and they work very well, so feel SAFE a purchase as you possibly can it discharge as a makeshift virtual host...

    I'll try to get my hands on a next muhahaha, Z800, and Z820...

  • Loading 2 alias of a member in a cube ASO by rule in essbase file

    Hi all
    I have a request from ASO. We are members of dimension using dimension build rule filesto load.
    Currently I am only alias default load using reference of parent-child. (Parent0 Child0 alias0)

    My problem is that I want to load two aliases. (1.default, 2.Default1). How is that possible?
    What should be the structure of my flat file for loading the metadata?


    Thanks in advance...

    In a rule of load, you describe what table alias must be used. If you want to load more than one alias, then I suggest a format such as

    Parent, child, alias aliases1, Alias2

    You would have two first rules would ignore alias 2 during construction of the dimension and the second he would ignore Alias 1 load. Each would be the table of the correct alias to load. (ISO the global settings of the Dimension tab build properties dialogue box).

  • Charger changes the pixel value after loading as bitmap

    Hi all

    My goal is to load two images and compare its color pixel-by-pixel information. For this I used "flash.display.Loader' class to load the images, and once the load finished I catalogued the content loaded bitmap object (loaderObj.content as Bitmap). Finally, I'll get the bitmapdata of the bitmap of the two images and compare the pixels.

    Now the problem is the color of the original image information and the loaded bitmap is slightly different. For example, the color value of the pixels of the image attached image1.jpg is 0xDDDDDD for full 1366 x 768. And for the image even when it is loaded as bitmap color value of pixels are different from the original value (for a few pixels only, not all pixels are different).

    I gave you the source code and sample images.

    Please can someone help me how to solve this problem?

    <? XML version = "1.0" encoding = "utf-8"? >

    " < = xmlns:fx s:WindowedApplication ' http://ns.Adobe.com/MXML/2009 "

    xmlns:s = "library://ns.adobe.com/flex/spark".

    xmlns:MX = "library://ns.adobe.com/flex/mx".

    width = "1376" height = "800."

    ShowStatusBar is kept = "false" >

    < fx:Declarations >

    <! - Place non-visual elements (e.g., services, items of value) here - >

    < / fx:Declarations >

    < fx:Script >

    <! [CDATA]

    private function loadBtn_ClickHandler (): void {}

    var file:File = new queue (File.desktopDirectory.nativePath);

    file.addEventListener (Event.SELECT, onFileSelectionHandler);

    file.browseForOpen ('open image', [new FileFilter ("Images", "*.gif, *.jpg; *.JPEG; *.png")]);

    }

    private void onFileSelectionHandler(ev:Event):void {}

    var loadedFilePath:String = (ev.target as a file) .nativePath;

    loadImageAsBitmap (loadedFilePath);

    }

    / * Load the bitmap image using the loader * /.

    private void loadImageAsBitmap(url:String):void {}

    var loader: Loader = new Loader();

    load the content as a bitmap

    loader.contentLoaderInfo.addEventListener (Event.COMPLETE, onContentLoadComplete);

    loader.contentLoaderInfo.addEventListener (IOErrorEvent.IO_ERROR, onContentLoadFail);

    Loader.Load (new URLRequest (url));

    }

    private void onContentLoadComplete(ev:Event):void {}

    var loaderInfo:LoaderInfo = ev.target as LoaderInfo;

    var bitmap: Bitmap = loaderInfo.content as Bitmap;

    printPixelValue (bitmap.bitmapData);

    container_ID. AddChild (bitmap);

    }

    private void onContentLoadFail(ioe:IOErrorEvent):void {}

    trace ("Image Load Failed");

    }

    private void printPixelValue(bmData:BitmapData):void {}

    var initPixelValue:Number = - 1;

    for (var countI:int = 0; countI < bmData.height; countI ++) {}

    var countI:int = 1;

    for (var countJ:int = 0; countJ < bmData.width; countJ ++) {}

    var pixelValue:Number = bmData.getPixel32 (countJ, countI);

    If (pixelValue! = initPixelValue) {}

    initPixelValue = pixelValue;

    Print pixel value for a single line

    trace ("value of Pixel to" + countI + "x" + countJ + "is:" + pixelValue);

    }

    }

    trace ("value of Pixel to" + countI + "x" + countJ + "is:" + pixelValue);

    //}

    }

    []] >

    < / fx:Script >

    < s:Button id = "loadBtn_ID" label = "Load!" click = "loadBtn_ClickHandler ()" "

    x = '5' y = "5" height = "20" / >

    < mx:UIComponent id = 'container_ID' x '5' = y = "30" width = "1366" height = "768" / >

    < / s:WindowedApplication >

    Sample image:

    main.jpg

    Thank you all,

    Update the sdk to 4.6.0 fixed the problem

  • IE incorrect xml loading

    IE incorrect xml loading

    Hello

    I built a Web site that contains two galleries flash on two separate pages.
    Each of yesteryear .swf is supposed to call a separate xml, text, and images from loading.
    The galleries work perfect when using Firefox-windows, mac-Firefox and Safari on my machine (macbook) and local
    Galleries do not work under IE-windows, the problem being that it loads two galleries with the same xml file. (http://www.rvvrd.com/xml/data.xml)

    http://www.rvvrd.com/vixens.html
    http://www.rvvrd.com/XML/data.XML

    http://www.rvvrd.com/thelawnew.html
    http://www.rvvrd.com/law.XML

    Any help is appreciated

    Thanks in advance

    It is virtually impossible to for what you say to occur.

    Browsers are really quite stupid things, they do only that told them... now sometimes they're told is interpreted differently... but good enough browsers simply do what they're told.

    So if you do something different from other browsers, first look to see he is told to do things differently, called a conditional statement IE.

    So look for:


    If NO IE, do.

    So yes, you use a conditional statement of IE.

    The problem with the second link is:


    She is told to load:

    value = "externalmedia/TheLaw.swf"

    Both browsers do just what they were told to do.

    And this isn't the .xml file that they load bad is the .swf file that is then loaded in their own country to load the .xml belonging to an individual .swf file

    In order to get rid of the conditional statement, ALL the