How to toggle all channel automation to "mute" or "volume"?

I would like to be able to enable mute automation for all chammels simultaneously, to simplify cleaning up the beginning of each song.
At the moment, I need to select each channel separately, which is very tedious when you have 50 tracks or more...
I discovered two key commands: "Toggle Automation Controlling MUTE" and "Toggle Automation Controlling VOLUME" and I assigned keys to them, but neither seems to switch the automation to their particular mode.
What is the intended usage of these key commands?

Yeah, there are six of these commands and they're a bit odd. What they do is to toggle whether Automation works for these six things:
Volume, Pan, Mute, Send Levels, Plug in Parameters and Solo
To try them out:
Assign a controller to Pan
Set Automation to Touch
Display track automation for the current track
Press Play
Mess around with the controller that you've assigned
Should work fine and the automation will be displayed.
Now, assign a key to Toggle Automation Controlling Pan
Press the newly assigned key combo
Try recording automation again and it's disabled
Never really figured a use for these commands, although it's possible that disabling the plug-in parameters might be of some use but I'm not convinced.
One of Logic's more obscure functions in my book. Oh yes, don't forget to get rid of the key command again, unless you love it with a James Brown type passion.
Pete

Similar Messages

  • Set all channels automation parameter removed in 8?

    In Logic 7 you could hold the "Control" key while changing a channel's automation parameter from volume to mute (for example) and all the channels would then display mute automation. In 8 this is no longer the case....
    How do you set global automation parameters in 8??
    Thanks

    Shweta ,
    <i>Sometimes receiver will want to execute SQL statement dynamically</i>....
    How you will get the query dynamically? Ok Let me assume, consider they are sending the query through file, then its definitely possible. But u need BPM and also not sender JDBC receiver adapter instead, receiver JDBC adapter.
    SQL Query File ->BPM>Synchronous send [Fetch data from DB]--->Response -
    >...............
    Do u think the above design will suit's ur case!!!!
    Best regards,
    raj.

  • Can someone tell me how t delete all the automation of a track in version 9

    Dear god in heaven.. can someome please tell me how I can simply "Delete all automation of current track" like in version 8??

    Track/track automation/delete all automation on selected track.

  • How to Read All Channels in one task in vc

    I want to read 6 channals' datas in VC. Now I create 6 task, and read it sperately.
    I know that it can read from one task, but how??
    DAQmxCreateTask("",&task1);
    DAQmxCreateTask("",&task2);
    DAQmxCreateTask("",&task3);
    DAQmxCreateTask("",&task4);
    DAQmxCreateTask("",&task5);
    DAQmxCreateTask("",&task6);
    DAQmxCreateAIVoltageChan(task1,"Dev1/ai0","",DAQmx​_Val_Cfg_Default,-5.0,5.0,DAQmx_Val_Volts,NULL);
    DAQmxCreateAIVoltageChan(task2,"Dev1/ai1","",DAQmx​_Val_Cfg_Default,-5.0,5.0,DAQmx_Val_Volts,NULL);
    DAQmxCreateAIVoltageChan(task3,"Dev1/ai2","",DAQmx​_Val_Cfg_Default,-5.0,5.0,DAQmx_Val_Volts,NULL);
    DAQmxCreateAIVoltageChan(task4,"Dev1/ai3","",DAQmx​_Val_Cfg_Default,-5.0,5.0,DAQmx_Val_Volts,NULL);
    DAQmxCreateAIVoltageChan(task5,"Dev1/ai4","",DAQmx​_Val_Cfg_Default,-5.0,5.0,DAQmx_Val_Volts,NULL);
    DAQmxCreateAIVoltageChan(task6,"Dev1/ai5","",DAQmx​_Val_Cfg_Default,-5.0,5.0,DAQmx_Val_Volts,NULL);
    DAQmxCfgSampClkTiming(task1,"",1000.0,DAQmx_Val_Ri​sing,DAQmx_Val_FiniteSamps,N);
    DAQmxCfgSampClkTiming(task2,"",1000.0,DAQmx_Val_Ri​sing,DAQmx_Val_FiniteSamps,N);
    DAQmxCfgSampClkTiming(task3,"",1000.0,DAQmx_Val_Ri​sing,DAQmx_Val_FiniteSamps,N);
    DAQmxCfgSampClkTiming(task4,"",1000.0,DAQmx_Val_Ri​sing,DAQmx_Val_FiniteSamps,N);
    DAQmxCfgSampClkTiming(task5,"",1000.0,DAQmx_Val_Ri​sing,DAQmx_Val_FiniteSamps,N);
    DAQmxCfgSampClkTiming(task6,"",1000.0,DAQmx_Val_Ri​sing,DAQmx_Val_FiniteSamps,N);
    DAQmxStartTask(task1);
    DAQmxStartTask(task2);
    DAQmxStartTask(task3);
    DAQmxStartTask(task4);
    DAQmxStartTask(task5);
    DAQmxStartTask(task6);
    DAQmxReadAnalogF64(task1,-1,10.0,DAQmx_Val_GroupBy​Channel,OriginData1,N,&read1,NULL);
    DAQmxReadAnalogF64(task2,-1,10.0,DAQmx_Val_GroupBy​Channel,OriginData2,N,&read2,NULL);
    DAQmxReadAnalogF64(task3,-1,10.0,DAQmx_Val_GroupBy​Channel,OriginData3,N,&read3,NULL);
    DAQmxReadAnalogF64(task4,-1,10.0,DAQmx_Val_GroupBy​Channel,OriginData4,N,&read4,NULL);
    DAQmxReadAnalogF64(task5,-1,10.0,DAQmx_Val_GroupBy​Channel,OriginData5,N,&read5,NULL);
    DAQmxReadAnalogF64(task6,-1,10.0,DAQmx_Val_GroupBy​Channel,OriginData6,N,&read6,NULL);
    DAQmxStopTask(task1);
    DAQmxStopTask(task2);
    DAQmxStopTask(task3);
    DAQmxStopTask(task4);
    DAQmxStopTask(task5);
    DAQmxStopTask(task6);
    DAQmxClearTask(task1);
    DAQmxClearTask(task2);
    DAQmxClearTask(task3);
    DAQmxClearTask(task4);
    DAQmxClearTask(task5);
    DAQmxClearTask(task6);
    thank you!

    DAQmxCreateTask("",&task1);
    DAQmxCreateAIVoltageChan(task1,"Dev1/ai0:ai5","",DAQmx_Val_Cfg_Default,-5.0,5.0,DAQmx_Val_Volt​s,NULL);
    DAQmxStartTask(task1);
    DAQmxReadAnalogNChanF64(task1,-1,10.0,DAQmx_Val_GroupByChannel,OriginD​ata1,N,&read1,NULL);//This proto changes fo DAQmxNch1sample.... I do not have it in front of me
    DAQmxStopTask(task1);
    DAQmxClearTask(task1);
    int32_t DAQReadNChan1Samp1DF64_130(uintptr_t taskID, double timeout, int32_t incomingStatus, Array1DDouble **data, LStrHandle extendedErrorInfo);// is the C version
    Jeff

  • How can I get a list of all channels of a device?

    I'm writing a software for use in a couple of our labs to be run as an executable i.e. without LabView being installed on all machines.
    Now there's also a couple of different daq hardwares in use. So I planned to have a config tool where the user can choose the appropriate - physical, not virtual - daq devices and channels like: temperature 1 measured by device 1, analog input 2.
    Therefore I'd need a list of all available daq devices (which is somewhat possible) together with a list of all channels of a particular device. Is there any way to get this?
    Unfortunately I don't want to use virtual channels since I don't want to bother the user with configuring them and btw I don't know if virtual channels work wit
    h the pure run-time module of an executable.
    Thanks!
    Daniel

    Hello Daniel,
    You can use virtual channels with executables and there is actually a way to transfer the virtual channel configurations to the target computers so your users would never need to mess with configuring virtual channels. Once you have configured virtual channels, you can save the configuration within a .daq file. You can then include that .daq file as a support file of the executable and programmatically set the configuration of the target machine. The linked document below illustrates how to accomplish this.
    How Do I Port a DAQ Configuration File With an Executable?
    http://digital.ni.com/public.nsf/websearch/CB83B101E19EF83086256A3E0054206C
    If you do not want to use virtual channels, the only other thing I can think of is to use the Get_D
    AQ_Device_Info VI or function call. You can get a device code when using this VI or call and each code is associated with a specific instrument. You would then have to know (use the device's user manual) to determine how many channels the corresponding device has. Without virtual channels, you would have to use a channel number (0,1,2,...etc) and would not be able to use a string ("temperature 1 measured by device 1").
    So, I think using virtual channels and transferring the .daq file to the target machines with the executable will be the best option. I hope this helps.
    Regards,
    Todd D.
    NI Applications Engineer

  • Rewrite rules: how to forward all mails to the specific channel?

    I have written an anti-virus plugin using the MTA SDK. Now I want to forward all the incoming messages to the channel, which is 'guarded' by my program (so my program is the channel's master).
    I've added following to the end of imta.cnf, according to MTA SDK example:
    ! kav
    x-kav master_debug logging
    x-kav-daemon
    And at the beginning of imta.cnf:
    avp.ru $U%avp.ru@x-kav-daemon$Nx-kav
    avp.ru $[email protected]
    In this configuration, any incoming mail just miss my channel completely.
    I changed it to this one:
    $* $U%avp.ru@x-kav-daemon$Nx-kav
    <2nd line removed>
    in this case, mail is sent to our channel, but has host part '$*', and the message is failed to enqueue.
    Also, it seems like this reqrite entry conflicts with ours:
    ! Rules to select local users
    $* $A$E$F$U%$H$V$[email protected]
    ultra5.avp.ru $U%$[email protected]
    avp.ru $U%$[email protected]
    As I understand, according to these rules, everything goes to @avp.ru or @ultra5.avp.ru goes to the local delivery channel ultra5.avp.ru. This is not what I want.
    So, the questions are:
    1. How to move all the messages (or just messages. which matched the specific domain) into my channel?
    2. How to configure rewrite rules, so the message can leave the channel after processing, and continue the routing?

    Still doesn't work.
    We've downloaded and installed patch 116568-52, and configured the channels:
    tcp_local aliasdetourhost tcp_scan smtp mx single_sys remotehost inner switchchannel identnonenumeric subdirs 20 maxjobs 7 pool SMTP_POOL maytlsserver maysaslserver saslswitchchannel tcp_auth missingrecipientpolicy 0
    tcp-daemon
    ! tcp_intranet
    tcp_intranet aliasdetourhost tcp_scan smtp mx single_sys subdirs 20 dequeue_removeroute maxjobs 7 pool SMTP_POOL maytlsserver allowswitchchannel saslswitchchannel tcp_auth missingrecipientpolicy 4 tcp_intranet-daemon
    tcp_scan smtp mx single_sys subdirs 20 noreverse maxjobs 7 pool SMTP_POOL dequeue_removeroute
    tcp_scan
    After sending the message, it silently goes to tcp_scan channel, and handled by channel master program. After that the message stays in tcp_scan queue forever, with HELD extension.
    Our channel master enqueues the processed message into the channel where it dequeues it, so the message seems to be looped. Here is the message:
    t;1093881341
    p;3
    *;4
    u;mailsrv
    c;tcp_scan
    s;tcp_scan.ultra5.avp.ru
    n;f
    h;<[email protected]>
    m;[email protected]
    d;20
    j;rfc822
    f;[email protected]
    @tcp_scan:[email protected]
    ..Boundary_(ID_+ko348xG8vRKcadifuDhJg)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:41 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:41 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:41 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:41 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:40 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:40 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:40 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:40 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:40 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:40 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:40 +0400 (MSD)
    Received: from localhost.localdomain ([172.16.0.35])
    by ultra5.avp.ru (Sun Java System Messaging Server 6.1 HotFix 0.01 (bu
    24 2004)) with ESMTP id <[email protected]> for test@avp.
    (ORCPT [email protected]); Mon, 30 Aug 2004 19:55:39 +0400 (MSD)
    Content-return: allowed
    Date: Mon, 30 Aug 2004 19:55:39 +0400 (MSD)
    Date-warning: Date header was inserted by ultra5.avp.ru
    From: [email protected]
    Subject: sent on Mon Aug 30 19:58:29 2004
    To: Undisclosed recipients: ;
    Message-id: <[email protected]>
    ..Boundary_(ID_+ko348xG8vRKcadifuDhJg)
    How to avoid this loop? Should our master enqueue the processed messages into another channel? If yes, what channel should we enqueue to? If no, how to avoid this loop?

  • How can I get an invidivual Virtual Channel name without having to pick through an array of all channels?

    I see "Get DAQ Channel Names.VI" and "Get Channel Information.VI" but I just want to get the name of just channel 0, or just channel 1. Is using an array of all channel names the only way I can do this?
    I have Labview 6.1.
    THANKS!!!
    Lauren

    Lauren,
    Yes, currently that is the best way to go about accomplishing that. I attached a little VI that demonstrates a very basic way of finding the first virtual channel that uses device channel 1.
    Ames
    Applications Engineering
    National Instruments
    Attachments:
    Find_First_Channel_1_Virtual_Channel_Name.vi ‏27 KB

  • How to list all organization channels?

    Hi there,
    What code should I use to list in a JSP Channel all channels existent in an organization?
    The idea is make a dinamic list of channels names.
    Atention: is not the available channels of a container, is all desktop channels and containers of the organization.
    Thanks for any help,
    Minassa.

    Hi LVB,
    Unfortunately, there is no property node I can find which will return the Global channels created within the Project. However, since we can return the Global Channels from MAX, the only way to work around this problem would be to save the Global Channels from the Project into MAX. To do this you could use the DAQmx Save Global Channel VI, but you will have to manually assign a global channel you wish to save as this will not save all the channels in your project for you. I'm sorry I could not find any better solution.
    S_Hong
    National Instruments
    Applications Engineer

  • How to read frequency channel & voltage channels at the same time with different rates?

    I am using a DAQCARD 6036E with a SCXI-1000 chassis.  I have a SCXI-1100 & a SCXI-1126 modules, along with a SCXI-1124 AO module for voltage output.  I am acquiring several voltage input channels with the SCXI-1100 & one frequency channel (frequency signal upto 12000Hz) with the SCXI-1126.  I want to configure all the channels in the Measurement & Automation so that I can use the Scale function to setup all the channels.  I am using a higher acquisition rate for the frequency channel than the voltage channels.  I had the block diagram as attached.  When I run the vi, I had the resource problem.  The err. msg. is: the specified resource is reserved..  Any suggestions as how to acquire a frequency signal & several voltage signals with this system setup using the DAQ-mx?
    Attachments:
    Document.rtf ‏4727 KB

    Since a common ADC is shared with all your SCXI analog input channels , you will have to sample all channels in a scan list at same sampling rate.
    However, you can set up frequency and voltage virtual channels using different instances of "create DAQmx Virtual channel" function in the same task as shown in attached pic, set scan rate and read them using a single DAQmx read
    Attachments:
    vi.PNG ‏6 KB

  • Apple Script: How to deactivate single channels of a layer?

    Hi there,
    can someone probably tell me how to deactivate specific channels of a layer?
    Example: Photoshop file with two layers, say CMYK. I want to deactivate CMY of the first layer, so that only K can be seen.
    Unfortunately I didn’t find any information in the PS scripting guide nor in the scripting reference.
    Thanks for any help on this.
    andy

    Paul, is correct you can't even do this in the app through the GUI. You would either need to duplicate your top layer loop through the channels that you don't want selecting all and clearing then going back to the composite or you could add an adjustment layer above the top grouped and use this by toggling its visibility (this is the way I would go). Paul 'AppleScript'? you've made me smile this morning what's come over you…
    Added some code from scriptlistener…
    tell application "Adobe Photoshop CS2"
    activate
    set Doc_Ref to the current document
    tell Doc_Ref
    if mode = CMYK then
    set current layer to layer 1
    -- delay 2
    do javascript "Just_Black(); function Just_Black() {function cTID(s) { return app.charIDToTypeID(s); }; function sTID(s) { return app.stringIDToTypeID(s); }; var desc01 = new ActionDescriptor(); var ref4 = new ActionReference(); ref4.putClass( cTID('AdjL') ); desc01.putReference( cTID('null'), ref4 ); var desc02 = new ActionDescriptor(); desc02.putBoolean( cTID('Grup'), true ); var desc03 = new ActionDescriptor(); var list5 = new ActionList(); var desc04 = new ActionDescriptor(); var ref5 = new ActionReference(); ref5.putEnumerated( cTID('Chnl'), cTID('Chnl'), cTID('Cyn ') ); desc04.putReference( cTID('Chnl'), ref5 ); var list6 = new ActionList(); var desc05 = new ActionDescriptor(); desc05.putDouble( cTID('Hrzn'), 0.000000 ); desc05.putDouble( cTID('Vrtc'), 255.000000 ); list6.putObject( cTID('Pnt '), desc05 ); var desc06 = new ActionDescriptor(); desc06.putDouble( cTID('Hrzn'), 255.000000 ); desc06.putDouble( cTID('Vrtc'), 255.000000 ); list6.putObject( cTID('Pnt '), desc06 ); desc04.putList( cTID('Crv '), list6 ); list5.putObject( cTID('CrvA'), desc04 ); var desc07 = new ActionDescriptor(); var ref6 = new ActionReference(); ref6.putEnumerated( cTID('Chnl'), cTID('Chnl'), cTID('Mgnt') ); desc07.putReference( cTID('Chnl'), ref6 ); var list7 = new ActionList(); var desc08 = new ActionDescriptor(); desc08.putDouble( cTID('Hrzn'), 0.000000 ); desc08.putDouble( cTID('Vrtc'), 255.000000 ); list7.putObject( cTID('Pnt '), desc08 ); var desc09 = new ActionDescriptor(); desc09.putDouble( cTID('Hrzn'), 255.000000 ); desc09.putDouble( cTID('Vrtc'), 255.000000 ); list7.putObject( cTID('Pnt '), desc09 ); desc07.putList( cTID('Crv '), list7 ); list5.putObject( cTID('CrvA'), desc07 ); var desc10 = new ActionDescriptor(); var ref7 = new ActionReference(); ref7.putEnumerated( cTID('Chnl'), cTID('Chnl'), cTID('Yllw') ); desc10.putReference( cTID('Chnl'), ref7 ); var list8 = new ActionList(); var desc11 = new ActionDescriptor(); desc11.putDouble( cTID('Hrzn'), 0.000000 ); desc11.putDouble( cTID('Vrtc'), 255.000000 ); list8.putObject( cTID('Pnt '), desc11 ); var desc12 = new ActionDescriptor();desc12.putDouble( cTID('Hrzn'), 255.000000 ); desc12.putDouble( cTID('Vrtc'), 255.000000 ); list8.putObject( cTID('Pnt '), desc12 ); desc10.putList( cTID('Crv '), list8 ); list5.putObject( cTID('CrvA'), desc10 ); desc03.putList( cTID('Adjs'), list5 ); desc02.putObject( cTID('Type'), cTID('Crvs'), desc03 ); desc01.putObject( cTID('Usng'), cTID('AdjL'), desc02 ); executeAction( cTID('Mk  '), desc01, DialogModes.NO );}" show debugger on runtime error
    end if
    end tell
    end tell

  • How to toggle checkbox control in template-d​riven Excel spreadshee​t?

    I am developing a report generation routine for a DAQ LabVIEW application
    running a small public water system. Every month critical operating data
    must be organized and reported to the state health department. They provide
    an Excel template for these forms, which I am populating from LabVIEW.
    After giving up on the MS document express VIs (they are apparently incompatible
    with a multi-sheet template unless you are only populating the default current
    sheet of the template, a restriction I only figured out after hours of "jiggling"
    and rooting in the bowels of the block diagrams), I have managed to populate
    almost everything in the form using the basic report generation and Excel-specific
    VIs.
    However, the one item in the spreadsheet I have not figured out how to write are
    the checkbox controls embedded in the template. These checkboxes do not appear to
    control anything; they just provide a convenient way in the state form to record an
    answer for each of a short list of questions.
    Anyone know how to toggle, or better, check/uncheck these from LabVIEW? I can modify
    the template if necessary to provide names or other hooks for these objects; I just
    haven't a clue what to actually do.
    I am developing the VI in LV 7.1 DS-PCE, so I have all of the latest add-on goodies
    at my disposal.
    Bob

    When it is not clear where best to start with automating a feature of Excel in LabVIEW, using Excel macros can be very helpful. If you record a macro and toggle the state of your checkbox's you will be able to more closely examine how Excel automates this action.
    After the macro is recorded you can edit the macro to see which ActiveX function calls you would have to use from LabVIEW to accomplish the same task. Alternatively, you can record the macro, and automate the playback from inside LabVIEW. The two links below will give you more information on how to implement one of these options.
    Example Program: Run Excel Macro from LabVIEW
    Using ActiveX to Copy an Excel Range to a LabVIEW Table
    Scott Y.
    NI

  • Fr me it's all'r nothin' - Handling all channels as a unit

    Premiere Elements 8.
    A) Tasks:
    1. Clear everything between 01:00 and 02:00 on all channels.
    2. Delete everything between 01:00 and 02:00 on all channels (i.e. clear + close gaps).
    B) Task:
    Given a PE8 project, create a new project and import the former as a single clip.
    How would one go about carrying out the above tasks?

    From what you wrote in another thread, i understand that it's easier done in the Pro edition, where you can host several subprojects in a single project. Is this correct?
    Not exactly, as I will try to explain.
    First, a little history lesson:
    In earlier versions of PrE, there was both the File>Export and also the Share tab. In PrE 8, it appears that everything was moved to the Share tab, but they forgot to remove the Export from the File drop-down. Now, going back, there was a bit of overlap between the two, so I understand why Adobe moved Export into Share. The term, Share, doesn't roll off my tongue, but I can see the positive marketing aspects of that. Anyway, in PrE 8, all exporting is under the Share tab, and the various sub-menus and drop-downs.
    Jump over to PrPro. In earlier versions of PrPro, there was the File>Export with several selections in the fly-out menu. Movie and Adobe Media Encoder (AME) were two. Again, there was a touch of overlap, but the two were under the same File>Export location. As of CS4, the File>Export>Movie went away, and everything goes through AME. Now, AME is a stand-alone program, though CAN be called from within PrPro. What this did was allow for one to load up the AME with several Sequences (those mini-Projects that I spoke of). One can then Export via AME several Sequences, while still working in PrPro - both batch processing, and a method to free up PrPro for more work. In the past, when you Exported, the program was otherwise unusable.
    In the past, one could only Export one of those Sequences at a time. Not so now that AME has been broken out and is a stand-alone. Most old-time users went ballistic, as they could not find there old Export options, and also resented having to use a stand-alone program, even if they could load and call it from within PrPro. Most of that clamor has subsided, but not completely.
    For me, the idea of Sequences is one close to my heart. I edit in them, as though they were "chapters," or "scenes." I Import them into Encore (my authoring program) as individual Timelines. I work with them as Chapters there. Until CS4, I had to Export the Video for Sequence 01, then the Audio for that Sequence. I'd move to Sequence 02 and do the same thing. Each Sequence would be handled the same way. Now, with CS4, I can load up all Sequences (actually twice), set the first instance to Export Video-only and the second instance to Export Audio-only, for ALL Sequences. I start the queue and turn my back. I can do all sorts of work, even in PrPro, while AME chugs away.
    Now, there are several file types, and CODEC's on my machine, that will Export/Share directly out of PrE, that will not Export from PrPro. Things like DivX can be directly handled out of PrE, but not out of PrPro. Differences. There are others that are available in PrPro, but not in PrE, like DLT tape, etc.
    I'd judge the speed of Export to be very similar between the two programs. The main difference is that PrPro CS4 can Export a bunch of stuff at one time and can also do it while one edits, but it takes a couple keystrokes to load it up, determine what is to be done, and then start the queue. PrE needs focus to Export/Share, but can do it with one click (after the settings are established).
    It's not really about quicker, or better, just differences. Sorry that I wasn't totally clear on this.
    There are other differences, in that PrE can also author a DVD-Video and do so easily, with some semi-automation. PrPro CS4 cannot. One must use Encore, or similar, and then all of the authoring is done by hand. There is no semi-automation, though with that extra work come vast power. Again, there is no better, just quick and neat from one program, or slower, great and with almost infinite power, using two programs.
    We get a lot of users, who are new to Encore on that forum, but have used programs like PrE. They cannot believe that there is no automation and that a user must do it all by hand. Most, however, are soon seduced by the power. It's just not what they were used to.
    Hope that this clears things up a bit,
    Hunt

  • How To Flip Audio Channels? (KT3 Ultra2 Onboard Audio)

    Installed Winxp and the Sp1 update, then the 4.43 via 4in1's.  Then I installed the onboard audio driver downloaded off this site for my board.  When I click the RIGHT SPEAKER in the audio setup, sound comes out the LEFT speaker, and visa versa.  I know the speakers are not backwards, as they have not moved in over a year (and have went through two computers now).
    Anyone know how to switch the channels over so they are right?
    Kyle

    When working with Audio in most NLE's, i.e. Premiere Elements, or Pro, there are basically three areas that can affect how the Audio is handled on one's system. First, there is the Sound settings in Windows (from Control Panel). Next, the Audio card/chip probably/possibly has a console to make settings at the card/chip level. Last, and these are really two locations, but I'm only counting them as one since they are both in the NLE - Edit>Preferences>Audio & Audio Hardware. This is where Steve is referring to. Check all settings, and I'd suggest doing so in the order that I listed them above: OS, Audio card, then Premiere. A Mute, or by-pass in the first two, can override the settings in Premiere, and you may have its setting correct, but still not be able to effectively use your hardware.
    The exact settings chosen will depend on the exact hardware that is properly installed. Without knowing all of your hardware and other settings elsewhere, one cannot give you a definitive answer. Ideally, in the settings drop-downs, you *should* see your hardware listed. Look closely, as these can be a bit cryptic.
    If you are still unable to get your hardware working properly, a fourth place to look would be Control Panel>System>Hardware>Device Manager for your Audio hardware. Check that Device Manager sees your hardware, and that it is working properly.
    If all is set up properly, but still not working, report back with exact specs on your system, including all of your Audio hardware. There are possibly some more steps that can be taken. I will not mention them now, as they *should not* be needed. If you do need further assistance, please list every option in all of the drop-down lists from Premiere, so we can know what your choices are.
    Good luck,
    Hunt

  • How can I read channels from different SCXI modules simultaneu​sly?

    Hello.
    I have a system that consists in:
    - Three E-series DAQ boards (PCI-6034, PCI-6052 & PCI-MIO-16E)
    - One SCXI chassis (SCXI 1001)
    - 4 SCXI modules for voltage measurement connected to PCI MIO 16E
    - One SCXI module for strain gauges connected to PCI 6034
    - One SCXI module for accelerometers connected to PCI 6052
    I have to develop a software application that reads all the channels at the same time or at least in the same program cycle. I have tried to create only one DAQmx task containing all the channels, although they belong to different DAQ boards (and SCXI modules, of course), but it seems to be impossible to use channels from different devices in the same task.
    So I have created three different DAQmx tasks, one for each device and its channels. I have used one "DAQmx Start Task" VI for each task at the beggining of the loop in order to use them independently, reading their channels inside the loop in every program cycle.
    When I have run the program I have get the following error:
    "ERROR -200619 ocurred at DAQmx Start Task.vi
    Chassis cannot be used for more than one scanning operation at the same time.
    Do only one scanning operation or combine multiple scanning operations into a single operation."
    What is the problem? How can I combine these multiple scanning operations? What can I do to read all channels at the same time?
    Thanks.

    Hello pablomendana,
    it's ok that you got an error when trying to use more than one device on the same task. According to the setup you have, I agree that 3 tasks should be put in place.
    The key question I have is... Have you configured manually at MAX the SG and accel. modules to be in Parallel mode?
    I would not expect the error you get if they are in parallel mode (in which you could even read directly from the DAQ board, using DAQ device channels instead of SCXI channels).
    Unfortunately, I haven't been able to setup a system similar to yours, but I would like to know more details on what you've tried so far.
    Also, I recommend you that if still need help on setting up the system, use NI's SSP program to get support from your local NI Application Engineering organization, as this will be faster than the forum.
    Regards,
    Jorge M.

  • How to use multiple channels to sample one signal

    I would like to use all channels on an AI-110 to sample the same signal in order to increase my sampling rate.  (I have spare channels, not spare $$.)  In hardware the channels are read sequentially so in theory I should be able to do this, but I'm having trouble reconstituting the signal.  If I use FP Reads the timestamps seem to indicate the time of the read, not the time of the A/D conversion, so I can't tell which sample was taken last.  FP-Advise on change seems ill-suited as well since consecutive samples may be the same on a certain channel, but the signal may have varied in the mean time on the other channels.
    Any ideas how this might be done otherwise?  The VI will run embedded on a cFP-2020 controller with LabViewRT v. 6.1.1.
    Thanks,
    Anton

    Anton,
    I understand what you are trying to do and do not think it can be done with a single module.  The timestamp on the FP-Read is all about when the vi returned the data and not when the A/D conversion occured.  I just don't think that the A/D converter can keep track of the conversion time. 
    If you had multiple AI-110 modules, you could in theory connect your signal to individual channels on multiple modules and then sequence through the modules.  The problem here would be the ground loops.

Maybe you are looking for

  • Help with encapsulation and a specific case of design

    Hello all. I have been playing with Java (my first real language and first OOP language) for a couple months now. Right now I am trying to write my first real application, but I want to design it right and I am smashing my head against the wall with

  • Macbook air 13" screen goes black while using iTunes

    I have an early 2014 13" Macbook Air with a 1.4 GHz Intel Core i5 processor, and I'm using OS X Yosemite 10.10.1. When I'm using iTunes, specifically when I'm watching a movie or TV show, the screen will randomly go black, but not like it turned off.

  • Is there a way to find out how much time an Upgrade took with DBUA?

    Hello! I've performed a successful upgrade from 10g to 11g using dbua. The thing is that I made that upgrade last friday, I know when it started but I can't manage to find any log that tells me when It was finished exactly. I tried to search in the .

  • ATI troubles...

    Ok, so here's the situation: I installed modular xorg, got fed up of lack of 3D (I've got a radeon 9800SE that doesn't have support built into xorg) so I did pacman -Rs xorg-server, then installed xorg 6.8.2 . I've had my GPU working fine with this v

  • WARNING: Flash Archive IDs do not match (possible corrupt archive)

    I'm running into problems when trying to use a newly patched Solaris 10 system's flash image via my Solaris 9 Jumpstart server. I'm able to use other flash's (Solaris 9 and 10) fine, but when I use this flash I get: Extracted 823.00 MB ( 99% of 824.9