problems with several hr2000 + external trigger mode

I hope someone can me halp on this problem:

I need to acquire spectra with two hr2000 + and a nirques256 with labview external trigger mode.

The external trigger mode is done by another pc and also the train of pulpse generator.

If a trigger after I'm going to generate a 100 impulse every 20ms for each device through a dedicted Council.

If I only work with ghosts at times things works fine and the system is very stable, BUT if I work with two or three spectres by now I have a really strange (maybe for me) problem with the timeout.

This is due to an incorrect number of pulses:

If I work with two device then I need to produce pulses of 200 each 20ms but my spectrometers provide data every 40ms, but I need to equip every 20ms

If I work with threedevice and then I need to produce pulses of 300 each 20ms but my spectrometers to obtain data each 60ms but I need to equip every 20ms

Thus, in this way, I lose the synchronization of the three councils.

An options may be to use a dedicated pc for each device

I acquire the signal via usb and the problem is maybe duo to the bus

I think maybe the problem is duo to the vi block! Maybe I can use single istance at times when I call the procedure

Thank you

I just solved the problem: it was a problem with reentrancy

Default LabVIEW use not reentrant execution

Tags: NI Software

Similar Questions

  • SQL loader, problem with the POSITION & EXTERNAL

    Hi gurus of the Oracle.

    I have problem with position and external.

    I have the data file with the data of 1 million records

    data delimiter is to and eventually closed by «»

    some lines are not loaded due to errors of data, i.e. data contains some «»

    now, we decided to use the position & external. am unable to write the control file.

    any help would be much appreciated

    The table name is person_memo, 4 columns

    ID_PERSONVARCHAR2 (9 bytes)
    TX_MEMOVARCHAR2 (1000 bytes)
    ID_USERVARCHAR2 (20 bytes)
    TM_STAMPTIMESTAMP (6)

    my control file is

    DOWNLOAD THE DATA

    ADD THE PERSON_MEMO TABLE

    FIELDS TERMINATED BY ' |'

    SURROUNDED OF POSSIBLY "" "

    TRAILING NULLCOLS

    (

    ID_PERSON POSITION (1) "CUT (: ID_PERSON).

    , TX_MEMO POSITION (10) TANK (1000) "CUT (: TX_MEMO).

    , POSITION (1012) ID_USER "TRIM (: ID_USER).

    , TM_STAMP POSITION (1031) EXTERNAL (26) ' DECODE (: TM_STAMP, NULL, NULL, TO_TIMESTAMP (: TM_STAMP, ' YYYY-MM-DD - HH24.MI.)). SS. "(FF')).

    )

    specimen of data file

    "04725813" | "aka"Little Will"" "|" " 095TDEAN «|» 2013-02-21 - 11.13.44.632000

    "05599076" | "" FIRST NAME - ADDED A 'T' AS ON THE REG MAP | ' 016DDEAL ' |. ' 2014-04-11 - 10.06.35.598000

    Thanks and greetings

    REDA

    In your control file, EXTERNAL (26) must be INTEGER EXTERNAL (26).

    Unfortunately, this forum destroyed the spacing, so I can't say whether or not your data are positionnelles.  If it is positional, you can then use positions, but you need start and end positions.  The positions that you posted have nothing to do with the data you've posted.  If you use positions, you can eliminate the delimiters and the beginning and the end of citations using these positions.

    If your data are not positionnelles and you have quotes in your data in quotes, but you don't have the pipe delimiters in your data, then you can only use the delimiters and trim the quotes start and final data.

    I have demonstrated the two methods below, using test1.ctl for the positional method and test2.ctl for the defined method.

    Scott@orcl12c > host type test.dat

    "04725813" | "aka"Little Will"" | "" 095TDEAN «|» 2013-02-21 - 11.13.44.632000

    "05599076" | "" FIRST NAME - ADDED A 'T' AS ON THE REG MAP | ' 016DDEAL ' |. ' 2014-04-11 - 10.06.35.598000

    Scott@orcl12c > type host test1.ctl

    DOWNLOAD THE DATA

    ADD THE PERSON_MEMO TABLE

    FIELDS TERMINATED BY ' |'

    TRAILING NULLCOLS

    (ID_PERSON POSITION (02:10))

    , TX_MEMO POSITION (14:59)

    POSITION ID_USER (63:82)

    , TM_STAMP POSITION (85:110) EXTERNAL INTEGER (26) ' DECODE (: TM_STAMP, NULL, NULL,).

    TO_TIMESTAMP (: TM_STAMP, ' YYYY-MM-DD - HH24.MI.) SS. "(FF')).

    )

    Scott@orcl12c > type host test2.ctl

    DOWNLOAD THE DATA

    ADD THE PERSON_MEMO TABLE

    FIELDS TERMINATED BY ' |'

    TRAILING NULLCOLS

    (ID_PERSON "TRIM ("------"" FROM: ID_PERSON ")")

    , TX_MEMO CHAR (1000) "TRIM ("------"" FROM: TX_MEMO ").

    , ID_USER "TRIM ("------"" FROM: ID_USER ").

    , TM_STAMP INTEGER EXTERNAL (26) ' DECODE (: TM_STAMP, NULL, NULL,).

    TO_TIMESTAMP (: TM_STAMP, ' YYYY-MM-DD - HH24.MI.) SS. "(FF')).

    )

    Scott@orcl12c > create table person_memo

    2 (ID_PERSON VARCHAR2 (9 bytes)

    3, TX_MEMO VARCHAR2 (1000 bytes)

    4, ID_USER VARCHAR2 (20 bytes)

    5, TM_STAMP TIMESTAMP (6))

    6.

    Table created.

    Scott@orcl12c > host sqlldr scott/tiger control = test1.ctl data = test.dat log = test1.log

    SQL * Loader: release 12.1.0.1.0 - Production Thursday, May 15, 10:53:11-2014

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

    Path used: classics

    Commit the point reached - the number of logical records 2

    Table PERSON_MEMO:

    2 rows loaded successfully.

    Check the log file:

    test1.log

    For more information on the charge.

    Scott@orcl12c > select * from person_memo

    2.

    ID_PERSON

    ---------

    TX_MEMO

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

    ID_USER

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

    TM_STAMP

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

    04725813

    aka "Little Will"

    095TDEAN

    21 FEBRUARY 13 11.13.44.632000 AM

    05599076

    FIRST NAME - ADDED A 'T' AS ON THE REG MAP

    016DDEAL

    11 APRIL 14 10.06.35.598000 AM

    2 selected lines.

    Scott@orcl12c > truncate table person_memo

    2.

    Table truncated.

    Scott@orcl12c > host sqlldr scott/tiger control = test2.ctl data = test.dat log = test2.log

    SQL * Loader: release 12.1.0.1.0 - Production Thursday, May 15, 10:53:11-2014

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

    Path used: classics

    Commit the point reached - the number of logical records 2

    Table PERSON_MEMO:

    2 rows loaded successfully.

    Check the log file:

    test2.log

    For more information on the charge.

    Scott@orcl12c > select * from person_memo

    2.

    ID_PERSON

    ---------

    TX_MEMO

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

    ID_USER

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

    TM_STAMP

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

    04725813

    aka "Little Will"

    095TDEAN

    21 FEBRUARY 13 11.13.44.632000 AM

    05599076

    FIRST NAME - ADDED A 'T' AS ON THE REG MAP

    016DDEAL

    11 APRIL 14 10.06.35.598000 AM

    2 selected lines.

  • problem with several graph XY axes

    Hallo,

    I'm tracing different variables in the same plot with several axes. I have the following problem (see attachment)

    the y axis secondary on the right side of the plot has a large area of him and one of the other secondary axis falls right above others. I tried it in the two labview 8.2 and 8.5 with the same results.

    any ideas?

    Thank you in advance,

    Thodoros

    Try the following movements:

    Right-click-> popup menu-> advanced-> reset scale layout

  • I have a problem with ITunes running in compatibility mode for Windows XP on a Windows 7 computer.

    As noted above. My iTunes is configured for Windown XP compatibility. The iTunes store does not open. How can I go back to Windows 7 compatilbility. I deleted and reloaded iTunes twice without any change.

    Original title: I have Windows 7. Somehow iTunes is configured for Windows XP compatibility. How to return to Windows 7?

    Hi, Robert Grossman,.

    Thanks for posting your question in the Microsoft Community Forums.

    ITunes is used to transfer music on your IPod and play music on the computer. You have a problem with the ITunes running in Windows XP compatibility mode. It can be difficult when something that is important to you does not work as expected. It's pretty simple and we're here to help you solve the problem. We work as a team and get this sorted out.

    Please answer these questions-

    (1) where do you see that ITunes is running in Windows XP mode?

    (2) that you get an error message or error code?

    (3) what exactly happens when you try to open the ITunes store?

    (4) have you made changes on the computer before the show?

    I would like more information about the issue.

    Method 1-

    I Uninstall and reinstall ITunes from here.

    Let us know if you have other questions about Windows. We will be happy to help you. We at Microsoft, strive for excellence and provide our customers with the best support.

    Thank you.

  • Problem with report PDF - external (Apache FOP) - APEX 5.0 + ADR 3.0 + Tomcat 7

    Hello

    I have a problem with the pdf reports.

    I tried to make the steps of Apache FOP missing Oracle Apex installable for 5.0 and 5.0.1 APEX APEX

    It's something wrong with my settings 'external (Apache FOP)'.

    When I download the report I .pdf file.

    I can't open this file with the reader of pdf, but Notepad ++ open it.

    In the first line is: "ORA-20001: the print engine could not be reached because the URL is incorrect or a proxy URL must be specified."

    I have:

    • APEX 5.0 (c:\apex)
    • ADR 3.0.1 (c:\OracleREST-
      • files apex.xml, apex_al.xml, apex_pu.xml and apex_rt.xml are in C:\OracleREST\pathtoconfig\apex\conf,
      • defaults.XML, fop.xml are C:\OracleREST\pathtoconfig\apex)
    • Apache Tomcat 7.0.64 (C:\apache-tomcat-7.0.64)
    • Apache FOP 2.0 (C:\ApacheFOP\fop-2.0) - I don't now how to bind with APEX, ADR and Tomcat

    My fop2pdf.jar file is located in C:\apache-tomcat-7.0.64\webapps\apex\WEB-INF\lib

    If I use ADR as print server is OK, but I need to use non-English characters.

    Can you help me? Please

    AGM

    P.S. I'm sorry for my English, I hope you understand me

    Hi AgaSz,

    AgaSz wrote:

    I have a problem with the pdf reports.

    I tried to make the steps of Apache FOP missing Oracle Apex installable for 5.0 and 5.0.1 APEX APEX

    It's something wrong with my settings 'external (Apache FOP)'.

    When I download the report I .pdf file.

    I can't open this file with the reader of pdf, but Notepad ++ open it.

    In the first line is: "ORA-20001: the print engine could not be reached because the URL is incorrect or a proxy URL must be specified."

    You use DB Oracle 11g or later? If so, you must enable Network Services to use the configured Print Services.

    Reference: The last point mentioned here: PDF of print on demand Express 3.1 and above

    My fop2pdf.jar file is located in C:\apache-tomcat-7.0.64\webapps\apex\WEB-INF\lib

    If I use ADR as print server is OK, but I need to use non-English characters.

    You should not use "External Apache FOP", but you can "Oracle REST Data Services" as an option "print server". But, you should open the ords.war file and replace the Apache FOP associated jar files so that it supports non-English characters.

    You crossed the aforementioned following threads in the thread:

    Recently, I met the following threads:

    3. ASK : if I agree that Apache FOP comes with ADR supports the Base-14 fonts and it's more issue ADR as Oracle APEX, but it will help you qualify for Oracle APEX + ADR as users of at least the next version ADR print server comes with Apache FOP 1.1 and the xmlgraphics - commons-1.5.jar. This will help the people setting up fonts and support for complex Scripts for example, Arabic, Hebrew, hindi and Southeast Asian scripts using Apache FOP comes with ADR as "print server".

    Kind regards

    Kiran

  • GREP to find the end of the name of the author of history (problems with several lines)

    Screen shot 2010-08-10 at 11.11.37 AM.png

    I don't get these documents and I can understand how to use GREP to search for each source name/quote author. I have problems with the above example. I think it's because of paragraph returns, possibly something to do with the comma. I've fiddled around for an hour, tent multi and expressions of the one line and still can not understand.

    It's what works for the most part:

    (? < = \r)\s*[–][-\u\l]+(?=\Z)

    Screen shot 2010-08-10 at 11.32.42 AM.png

    If you can count on having the line beginning with an en dash (possibly after an unused space), this should do it:

    ^\s*~=.+\Z

    The ^ indicates start of a line, while (?)<=\r) relies="" on="" a="" hard="" return:="" ^="" will="" also="" match="" start="" of="" story,="" and="" all="" sorts="" of="" hard="" page/column="">

    Do not "anticipate" \Z; Since it is also an indicator of the place, like ^ and $, there can never be "selected" in the traditional sense of the term. (Which is the reason why allowing you a \r postanalyse, because * will * be selected if not).

    Your example of Homer Simpson was rejected because of the hard return and the comma - or were in your list of approved characters.

    I think opt for the period more ('get all') should work, but it is not - by default - search returns. This is where the modifier of Single-Line can help you. A brief description of the single-line Mode is that it allows the period correspond to a return as well. the history is considered one long line, with possibly a few \r codes that are not treated as special programs.

    It will work for GREP search only:

    ( ? s)^\s*~=.+\Z

    but not for the GREP styles. A GREP style still works only for a single paragraph; You can have a \r code anywhere in the expression. Oddly enough, TI work if you draw a soft line break in this last line - the strange thing is, the style GREP also needs (? s), so, apparently, at this level the soft line break is also considered a line break.
    Furthermore, your example of Homer Simpson has an additional line below, and causing trouble because there is no \Z just after what you want to find. Allowing returns will add that last line in your search, which may not be what you want either. Replace the hard return by a soft will also solve part.
  • Problems with WD drive external HARD with MBP 15' retina

    Hello

    I bought a WD My passport 3 TB about 6 months ago. After awhile it started to act funny: sometimes I plugged the HARD drive, but it did not show up in the office (after trying it a few times, it worked normally) and some files has been corrupted. I passed the test of WD drive utilities and quick test has been authorized, but 'test Drive Complete' failed.

    After the problem has persisted (and laptop computer find drive HARD became harder and harder) I bought an another WD 2 TB HDD to backup data before returning the 3 TB of warranty drive.

    I copied all the info in the new HARD drive, but I find that, although it works 'well' (the computer always finds the drive and never got corrupted files) the new drive passes the "Test of complete transmission" WD drive either utility. Although possible, I suspect that the new drive is not faulty as well.

    Is there a problem with the whole WD drive utilities, or the WD drives don't work really well with the MBP?

    Is there a reliable way to verify the disk HARD WD on Mac?

    Thank you!

    Can you run first aid on the drive and see if something comes along?

  • Problem with T400 and external monitor (1920 x 1200 resolution)

    Hello

    My laptop:

    ThinkPad T400 2767-C99 * (graphics: ATI Mobility Radeon HD 3470 256 MB / X4500MHD (Switchable Graphics)), OS is Windows XP

    I just installed the latest video driver from lenovo page (which also installs "ATI catalyst")

    Externale monitor:

    I just bought a Samsung SyncMaster 2443FW, 24 "TFT monitor with a maximum resolution of 1920 x 1200

    Problem:

    Monitor works fine with my new T400s and my old Acer laptop. However, with my T400 (described above), I can't do the monitor uses the 1920 x 1200 resolution. However, all the other ugly resolutions so I need it to work with 1920 x 120

    -If I change the resolution of right on the desktop of Windows XP (and then properties-online settings) and set the screen on 1920 x 1200 resolution, then my monitor used only a lower meanless (1440 x 900) and effect of scrolling as I move my pointer on the screen

    -If I use the ATI catalyst software to set the resolution, I can only chose smaller resolutions (he not go 1920 x 1200)

    Questions

    Is it a hardware (maybe the graphics card does not support 1920 x 1200) or a software problem (maybe a problem with the driver) or just a matter of adjustment?

    What can I do?

    Help would be much appreciated!

    * Original description: 2767-2JG base: T9550(2.66GHz), 4 GB of RAM, HD 250 GB at 5400 RPM, 14.1 LCD in 1440 x 900, 256 MB ATI Radeon 3470HD, CD-RW/DVD-RW, Intel 802.11agn wireless, Bluetooth, Modem, 1 GB ether, UltraNav, chip dry, RPF, camera, 9 c Li - ion, BACK license

    Problem solved:

    I was using my old monitor vga cable that doesn't use 14 pins (worked fine with my T400s and Acer laptop - but not with the T400).

    => When I switched to cable 15-pin that came with the monitor, the problem was gone!

  • Problems with several .exe slow down my computer - see in the Task Manager.

    Hi everyone - I had posted in other sections of the forum such as: http://answers.microsoft.com/en-us/windows/forum/windows_7-files/why-does-dllhostexe-com-surrogate-consumes-memory/bd7e42bb-802d-4eb9-95b2-2bb6b566996d?page=1&tm=1416087694827

    but still have no answer to my problem - I just wanted to reference I've tried many "patches" suggested, without success.

    On the question... in addition to causing me problems of dllhost.exe, I now see a list of other authors in my task which are guilty of collaboration Manager.  The interesting thing is that I put the finger on a particular instance of dllhost.exe (COM Surrogate) who is about 8 k in size - whenever I'm deleting this one (which can sometimes be difficult to find when there are multiple instances of similar size) all other instances of dllhost.exe problem simultaneously remove themselves as well.  This is only a temporary solution as the problem will resume as soon as 10 minutes later, gobble up all my CPU and memory.

    Anyway - as I said, I noticed several other spots displayed - the interesting thing is that these tasks ALSO disappear when I delete the task of dllhost.exe k 8 initiators.

    Here is the list of the other guys who gobble up my system resources:

    dllhst3g.exe

    dpnsvr.exe

    dplaysvr.exe

    dvdupgrd.exe

    Rundll32.exe

    wiaacmgr.exe

    cmmon32.exe

    Has anyone else noticed these programs causing problems?  I would like to know how to solve this problem, but since the last message in the previous topic, it still has not been resolved by Microsoft...

    I know this post is a few months old, but I stumbled across it all fighting the same problem on a laptop of family members.  McAfee or Malwarebytes was able to track it down in my experience either.

    The task Mgr showed the same process taking a ton of memory and CPU.

    To resolve this issue, it turns that Symantec posted a tool that you can leverage.  Here is the link: http://www.symantec.com/security_response/writeup.jsp?docid=2014-111020-0511-99

    I would leverage the link Symantec before using the links of Evan (above), these links are to sites with strong ads and an EXE from a developer private.

    I hope this helps.

    -Higgins

  • Problem with several adapters and Jar file included in a service.

    Hi all

    I'm new here and I am ready to work with the VMWare client sdk. I have already started and exported several adapters to implement the full functionality that I need. However, I get an error:

    Request context failed to create 'com.management.serviceprovider' in ' 1.0.0 version. org.springframework.beans.factory.BeanCreationException: error creating bean with name 'DatacenterConfig': calling the init method failed; nested exception is org.springframework.beans.factory.CannotLoadBeanClassException: cannot find class [com.adapters.Datacenter.ClusterConfigAdapterImpl] for the beans with the name 'ClusterConfigAdapterImpl' defined in URL [bundleentry://281.fwk1147580192/META-INF/spring/bundle-context.xml]. nested exception is java.lang.ClassNotFoundException: com.adapters.Datacenter.ClusterConfigAdapterImpl finds do not bundle [com.management.serviceprovider]

    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1455)

    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:519)

    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:456)

    to org.springframework.beans.factory.support.AbstractBeanFactory$ 1.getObject(AbstractBeanFactory.java:294)

    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:225)

    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:291)

    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:193)

    at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:591)

    at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918)

    to org.eclipse.gemini.blueprint.context.support.AbstractDelegatedExecutionApplicationContext.access$ 1600 (AbstractDelegatedExecutionApplicationContext.java:60)

    to org.eclipse.gemini.blueprint.context.support.AbstractDelegatedExecutionApplicationContext$ 4.run(AbstractDelegatedExecutionApplicationContext.java:325)

    ...

    This error occurs very often and it's strange because I place the cards together in a same way. Here is the OSGI layer and contaxt bundle files:

    Context Bundle:

    < name of the bean = "ClusterAdvancedAdapterImpl" class = "com.adapters.Datacenter.ClusterAdvancedAdapterImpl" >

    < constructor-arg ref = "dataServiceExtensionRegistry" / >

    < / bean >

    < osgi:service id = "DatacenterConfig" ref = "ClusterConfigAdapterImpl".

    interface = "com. VMware.vise.Data.Query.PropertyProviderAdapter"/ >

    < osgi:reference id = "dataServiceExtensionRegistry".

    interface = "com. VMware.vise.Data.Query.DataServiceExtensionRegistry"/ >

    And I really don't know why this isn't a job.

    The second problem is that I have another project with classes and I want to export it to a jar file. When I do this I also want to include this pot in the bundle, but when I change the ant file it does not work on virgo.

    Any help will be appreciated.

    Kind regards

    Stefan

    For option 2 which he question in post above, you can use the piece of code below in the Ant script in the target of the compilation at the end.

    --------

    -----

  • A problem with the composite video display mode

    Hello!

    Since this morning, the composite video display mode of my sequences is black with a blue stripes dotted line.

    Each sequence is displayed with the same problem.

    Can you help me please?

    Lily.

    Hi Lily,

    Go to the file/project settings/general and change the rendering on "Mercury Playback Engine software only" engine.

    Press OK, you will get a dialog box in which you must select 'Remove Previews'.

    Try these steps and see if it works.

    Kind regards

    Navdeep Pandey

  • Problem with Lightroom and external hard drive. Files and folders deleted.

    In the classroom (8.1 windows computers) import us images that .dng files on an external hard drive using Lightroom.

    After the Lightroom, insert us the memory card containing photos and attach an external hard drive. (formatted to ntfs)

    We create a new catalog on the external hard drive and then create a folder as the destination for the images on the external drive as well.

    After passing to the newly formed catalog in Lightroom, we import the photos from the memory card to the external hard drive.

    Photos are present in the folder 'import' on the external hard drive after the end of the import, so checking with windows Explorer.

    After the closure of LR and disconnect the external hard drive of the computer, it appears that the newly created files and imported files have disappeared.

    We tested with an external hard drive in exfat. The same problem.

    There is no problem when you copy directly in Explorer windows of memory card files to the external drive.

    The files are not hidden. Tested on mac and windows.

    If you said that the photo files are on the external hard drive when you checked using Windows Explorer during the class? Is this correct? YES
    Then you go home and the files are not on the external hard drive? YES

    Well, it is a mystery, but there is no way that Lightroom can be the culprit.

    Is it the same for the catalog file, in class, he was present on the hard disk according to the Windows Explorer, and when you get home, is no longer on the drive? YES

    Same conclusions, it is not Lightroom.

  • problem with upgrade to LR4 (change mode tools develop)

    Hello - I just upgraded LR3 to LR4 on my Windows 7 HP laptop using a CD from B & H Photo. The installation process went through without errors. However, now in develop mode, the editing tools (right of the screen) are always fill LR 3 light - for example, the recovery, and blacks are in the title of the exhibition. I rebooted the computer to see if that would help - no change.

    I guess I could uninstall LR and then reinstall LR3 and the LR4 upgrade, but it's a lot of work and it cannot solve the problem.

    Any suggestions to solve this?

    Thank you!

    pweb0806 wrote:

    In addition, what is PV2012?

    Whoa - you are green...

    In the develop module - check the Version of process in the camera - 2012 (current) change section of Calibration.

    ALT-click is just a shortcut to do the same thing, but without having to respond to a command prompt (to develop the module when an exclamation icon appears, showing an older version of process, such as 2003 or 2010. PV stands for 'Version Process'.

    2012 is the new version of process invented for Lr4 with improved controls and picture quality...

    Rob

  • Problem with loading an external swf of in an external swf...

    OK, everything was going well on a Web site project, I worked, until yesterday. I will try to explain the whole scenario first, and I'll put the code here too so anyone can try to understand what the problem is. Here is a breakdown of the site:

    1) there a MAIN SWF file that plays an intro and then stops on the last image with the Navigation buttons 'hand'.

    2) in the root folder where the MAIN SWF resides, there is another folder called "sovereign wealth funds", which contains six main external navigation pages, but also another folder called "galleries" which contains additional external SWFs for six pages in the gallery.

    3) on one of the layers of the MAIN SWF, there is a clip called 'mySWFLoadingClip' that the buttons of Navigation of the 'hand' loading and unload pages external to swf. It all works perfectly. The beginning of the problem to the next step. This is the code I used for the buttons of navigation on the MAIN SWF scenario:

    var Xpos:Number = 0.0;
    var Ypos:Number = 0.0;
    var swf:MovieClip;
    var loader: Loader = new Loader();

    var defaultSWF:URLRequest = new URLRequest("swfs/home_page_swf.swf");

    Loader.Load (defaultSWF);
    Loader.x = Xpos;
    Loader.y = Ypos;
    this.mySWFLoadingClip.addChild (loader);
    ////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////

    Function universal BTNS
    function btnClick(event:MouseEvent):void {}

    this.mySWFLoadingClip.removeChild (loader);
    var newSWFRequest:URLRequest = new URLRequest ("SWFs /" + event.target.name + ".swf");
    Loader.Load (newSWFRequest);
    Loader.x = Xpos;
    Loader.y = Ypos;
    this.mySWFLoadingClip.addChild (loader);
    }
    Listeners of BTN
    home_page_swf.addEventListener (MouseEvent.CLICK, btnClick);
    portfolio_page_swf.addEventListener (MouseEvent.CLICK, btnClick);
    services_page_swf.addEventListener (MouseEvent.CLICK, btnClick);
    about_page_swf.addEventListener (MouseEvent.CLICK, btnClick);
    team_page_swf.addEventListener (MouseEvent.CLICK, btnClick);
    contact_page_swf.addEventListener (MouseEvent.CLICK, btnClick);


    4) one of the external navigation SWF pages is called "portfolio_page_swf" and gets loaded into the moveclip of 'mySWFLoadingClip' on the MAIN SWF. This is where the problem begins. The "portfolio_page_swf" has six buttons facing an additional external swf in the file galleries. Now when I open the file "portfolio_page_swf" to test if the buttons work, they work perfect. When I click the buttons, the external swf gallery files appear as they should. But the problem is that when I open the "MAIN SWF" file to test the site, I can click on the main Navigation buttons and they work. I click the portfolio button on the time line of Hand SWF and place of 'portfolio_page_swf' on the stage as it should, but when I click the buttons located in the 'portfolio_page_swf' galleries are not displayed. The page "portfolio_page_swf" buttons work only if I open the file 'portfolio_page_swf' directly. The following code is used in the "portfolio_page_swf":

    var Xpos:Number = 0.0;
    var Ypos:Number = 0.0;
    var swf:MovieClip;
    var loader: Loader = new Loader();

    var defaultSWF:URLRequest = new URLRequest("galleries/gallery_print_swf.swf");

    Loader.Load (defaultSWF);
    Loader.x = Xpos;
    Loader.y = Ypos;
    this.mySWFLoadingClipGALLERY.addChild (loader);
    ////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////

    Function universal BTNS
    function btnClick(event:MouseEvent):void {}

    this.mySWFLoadingClipGALLERY.removeChild (loader);
    var newSWFRequest:URLRequest = new URLRequest ("galleries /" + event.target.name + ".swf");
    Loader.Load (newSWFRequest);
    Loader.x = Xpos;
    Loader.y = Ypos;
    this.mySWFLoadingClipGALLERY.addChild (loader);
    }
    Listeners of BTN
    gallery_print_swf.addEventListener (MouseEvent.CLICK, btnClick);
    gallery_packaging_swf.addEventListener (MouseEvent.CLICK, btnClick);
    gallery_web_swf.addEventListener (MouseEvent.CLICK, btnClick);
    gallery_video_swf.addEventListener (MouseEvent.CLICK, btnClick);
    gallery_others_swf.addEventListener (MouseEvent.CLICK, btnClick);
    gallery_logos_swf.addEventListener (MouseEvent.CLICK, btnClick);

    If anyone can help understand me this I would really appreciate. This is a very important project and the deadline is coming up very soon. Please help me understand how to load an external SWF on the main timeline and then charge an additional external swf within the first external swf. I'm puzzled.

    If I'm following the structure you describe, it's probably a problem of targeting.  If you load a swf into another swf I think the scenario is the same that if you load a swf in a web page...  The charging base is the document down the chain, which is your main swf if you test Flash (otherwise it would be so stable web page in a web page).  So when your portfolio is responsible in the hand, it's like living in the folder of the hand, so your swf portfolio should probably include sovereign wealth funds in targeting... as in...

    var defaultSWF:URLRequest = new URLRequest("swfs/galleries/gallery_print_swf.swf");

  • Problem with loading multiple external xml files

    I have a table named 'source', which consists of names of files external xml, the content of which I'm loading in another table called 'content '. I tried with the following text:

    ----------------------------------------------------------------------------------------
    for (i = 0; i < source.length; i ++) {}
    XML_URL = "' http://localhost/temp/ ' + source ;"
    myXMLURL = new URLRequest (XML_URL);
    myLoader = new URLLoader (myXMLURL);
    myLoader.addEventListener (Event.COMPLETE, xmlLoaded);
    }

    function xmlLoaded(evt:Event):void {}
    Content.push (myLoader.Data);
    }
    ---------------------------------------------------------------------------------------

    The problem is that in this way, I get that content of the last xml file and other items ' content ' are 'undefined '. Anyone know the solution to this problem or maybe another way to do this?

    Thanks in advance

    I tested the following with two xml files in the same folder (I would try the same thing) and put their names in the table source. Create two dummy xml for the test files.
    Here is my exact code (I've changed, I have one because it's italicized here in the forums):

    var content: Array = new Array();
    var source: Array = new Array ("media1.xml", "media2.xml");
    for (var a source) {}
    var XML_URL = ' "+ source [a];
    var myXMLURL = new URLRequest (XML_URL);
    var myLoader = new URLLoader ();
    myLoader.addEventListener (Event.COMPLETE, xmlLoaded);
    myLoader.load (myXMLURL);
    }

    function xmlLoaded(evt:Event):void {}
    Content.push (evt. Target.Data);
    if(Content.Length ==source.) Length)
    TR();
    }

    function tr() {}
    trace (content);
    }

Maybe you are looking for