Solving this simple GB problem

I have a Presonus Firepod, I'm recording drums and I have 7 inputs connected.
Is there some kind of way to select all the tracks and a enable the recording button all at once? Instead of clicking the Record button on each track/input.
Also, I like my drums to have the Detailed Drums preset. I want to apply it on all the tracks, again, how do I do this without having to select each input/track to change it.

Is there some kind of way to select all the tracks and a enable the recording button all at once?
no
I like my drums to have the Detailed Drums preset.
create one track, set its effects, and then duplicate it 6 times.

Similar Messages

  • Can anyone solve this simple MVC problem with ArrayCollection

    I have very simple application trying to understand how to apply MVC without any framework. There are quite a few exemples on the net but most do not deal with complex data.
    here is my application with 4 files: MVCtest.mxml, MyController.as, MyModel.as and MyComponent.as
    first the Model MyModel.as
    package model
    import flash.events.Event;
    import flash.events.EventDispatcher;
    import flash.events.IEventDispatcher;
    import mx.collections.ArrayCollection;
    [Event(name="ArrayColChanged", type="flash.events.Event")]
    [Bindable]
    public class MyModel extends EventDispatcher
      private static var instance:MyModel;
      public static const ARRAYCOL_CHANGED:String = "ArrayColChanged";
      private var _myArrayCol:ArrayCollection;
      public function MyModel(target:IEventDispatcher=null)
       super(target);
       instance = this;
      public static function getInstance():MyModel
       if(instance == null)
        instance = new MyModel();
       return instance;
      public function get myArrayCol():ArrayCollection
       return _myArrayCol;
      public function set myArrayCol(value:ArrayCollection):void
       _myArrayCol = new ArrayCollection(value.source);
       dispatchEvent(new Event(ARRAYCOL_CHANGED));
    then the controller: MyController.as
    package controller
    import components.MyComponent;
    import flash.events.Event;
    import flash.events.EventDispatcher;
    import flash.events.IEventDispatcher;
    import model.MyModel;
    import mx.collections.ArrayCollection;
    import mx.controls.Alert;
    import mx.rpc.events.FaultEvent;
    import mx.rpc.events.ResultEvent;
    import mx.rpc.remoting.RemoteObject;
    public class MyController extends EventDispatcher
      [Bindable]
      public var view:MVCtest;
      [Bindable]
      public var componentView:MyComponent;
      private var _model:MyModel = MyModel.getInstance();
      public function MyController(target:IEventDispatcher=null)
       super(target);
       _model.addEventListener("ArrayColChanged", onArrayColChange);
      public function initialise(event:Event):void
       getData();
      public function getData():void
       var dataRO:RemoteObject = new RemoteObject;
       dataRO.endpoint = "gateway.php";
       dataRO.source = "MytestdbService";
       dataRO.destination = "MytestdbService";
       dataRO.addEventListener(ResultEvent.RESULT, dataROResultHandler);
       dataRO.addEventListener(FaultEvent.FAULT, dataROFaultHandler);
       dataRO.getAllMytestdb();   
      public function dataROResultHandler(event:ResultEvent):void
       _model.myArrayCol = new ArrayCollection((event.result).source);
      public function dataROFaultHandler(event:FaultEvent):void
       Alert.show(event.fault.toString());
      public function onArrayColChange(event:Event):void
       componentView.myDataGrid.dataProvider = _model.myArrayCol;
    This is the main application: MVCtest.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
          xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/mx"
          xmlns:controller="controller.*"
          xmlns:components="components.*"
          width="600" height="600"
          creationComplete="control.initialise(event)">
    <fx:Declarations>
      <controller:MyController id="control" view = "{this}"/>
    </fx:Declarations>
    <fx:Script>
      <![CDATA[
       import model.MyModel;
       import valueObjects.MyVOorDTO;
       [Bindable]
       private var _model:MyModel = MyModel.getInstance();
      ]]>
    </fx:Script>
    <s:VGroup paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10">
      <s:Label fontSize="20" fontWeight="bold" text="MVC Test with components"
         verticalAlign="middle"/>
      <components:MyComponent/>
    </s:VGroup>
    </s:Application>
    And this is the component: MyComponent.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx" width="400" height="300">
    <s:layout>
      <s:VerticalLayout paddingBottom="10" paddingLeft="10" paddingRight="10" paddingTop="10"/>
    </s:layout>
    <fx:Declarations>
      <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <s:Label fontSize="16" fontWeight="bold" text="My Component " verticalAlign="bottom"/>
    <s:DataGrid id="myDataGrid" width="100%" height="100%" requestedRowCount="4">
      <s:columns>
       <s:ArrayList>
        <s:GridColumn dataField="mystring" headerText="String"></s:GridColumn>
        <s:GridColumn dataField="myinteger" headerText="Integer"></s:GridColumn>
        <s:GridColumn dataField="myreal" headerText="Real"></s:GridColumn>
        <s:GridColumn dataField="mydate" headerText="Date"></s:GridColumn>
       </s:ArrayList>
      </s:columns>
    </s:DataGrid>
    </s:Group>
    Here is the code to generate the database:
    CREATE DATABASE mytest;
    CREATE TABLE myTestDB
          myid INT UNSIGNED NOT NULL AUTO_INCREMENT,
          mystring CHAR(15) NOT NULL,
          myinteger INT NOT NULL,
          myreal DECIMAL(6,2) NOT NULL,
          mydate DATE NOT NULL,
          PRIMARY KEY(myid)
    ) ENGINE = InnoDB;
    INSERT INTO myTestDB (mystring, myinteger, myreal, mydate) VALUES ('Test', 123, 45.67, '2012-01-01'), ('Practice', 890, 12.34, '2012-02-01'), ('Assay', 567, 78.90, '2011-10-01'), ('Trial', 111, 22.22, '2009-09-09'), ('Experiment', 333, 44.44, '1999-04-15'), ('Challenge', 555, 66.66, '2012-12-21');
    And finally here is the PHP script.
    <?php
    class myVOorDTO
      var $_explicitType = "valueObjects.myVOorDTO";
      public $myid;
      public $mystring;
      public $myinteger;
      public $myreal;
      public $mydate;
      public function __construct()
        $this->myid = 0;
        $this->mystring = "";
        $this->myinteger = 0;
        $this->myreal = 0.0;
        $this->mydate = date("c");
    class MytestdbService
      var $username = "yourusername";
      var $password = "yourpassword";
      var $server = "yourserver";
      var $port = "yourport";
      var $databasename = "mytest";
      var $tablename = "mytestdb";
      var $connection;
      public function __construct()
        $this->connection = mysqli_connect(
        $this->server, $this->username, $this->password, $this->databasename, $this->port);
    * Returns all the rows from the table.
    * @return myVOorDTO
      public function getAllMytestdb()
        $query = "SELECT * from $this->tablename";
        $result = mysqli_query($this->connection, $query);
        $results = array();
        while ($obj = mysqli_fetch_assoc($result))
          $row = new myVOorDTO();
          $row->myid = $obj['myid'] + 0;
          $row->mystring = $obj['mystring'];
          $row->myinteger = $obj['myinteger'] + 0;
          $row->myreal = $obj['myreal'] + 0.0;
          $row->mydate = new Datetime($obj['mydate']);
          array_push($results, $row);
        return $results;
    ?>
    My understanding as to what is going on is: (1) on creation complete the application launch the initialise() function of the controller (2) this function starts the remoteObject which get the data (3) once the results arrive the resultHandler store the data into the ArrayCollection of the model ***this does not work*** (4) even if part 3 did not work, the setter of the ArrayCollection in the model send an event that it has been changed (5) the controller receive this event and assigns the ArrayCollection of the model as the dataprovider for the datagrid in the compoent.
    Of course, since the ArrayCollection is null, the application gives an error as the dataProvider for the datagrid is null.
    What is missing in this application to make it work properly? I believe this is an example that could help a lot of people.
    Even if I change the setter in the model to _myArrayCol = ObjectUtil.copy(value) as ArrayCollection; it still does not work.
    Also, it seems that the remoteObject does not return a typed object (i.e. myVOorDTO) but rather generic objects. I am usually able to make this works but in this particular application I have not managed to do it. Again what's missing?
    Thanks for any help with this!

    Calendar c = GregorianCalendar.getInstance();
    c.set(Calendar.YEAR,2000);
    System.out.println(c.getActualMaximum(Calendar.WEEK_OF_YEAR));
    c.set(Calendar.YEAR,2001);
    System.out.println(c.getActualMaximum(Calendar.WEEK_OF_YEAR));But it says that 2000 has 53 weeks and 2001 has 52.

  • How to solve this "amnesia" protect problem

    Hi All
    I have a two nodes one quorum cluster environment. I just see this problem:
    I shutdown nodeA and all all othe resource groups switch to nodeB, it works fine
    and I believe quorum device vote belongs to nodeB.
    Then I shutdown nodeB and power on the nodeA, nodeA cannot boot as cluster,
    there's messages like:
    NOTICE: clcomm: Path NodeB:e1000g0 - NodeA:e1000g0 errors during initiation
    WARNING: Path NodeB:e1000g0 - NodeA:e1000g0 initiation encountered errors, errno = 62. Remote node may be down or unreachable through this path.
    NOTICE: CMM: Cluster doesn't have operational quorum yet; waiting for quorum.
    I know this is because the quorum vote is nodeB to prevent amnesia condition.
    But I still confused for this: if the problem occurs, nodeB is broken and cannot
    boot anyway,what people can do is just hack the CCR?Is there any solution ,for
    example, nodeA can boot as cluster master and after nodeB come up ,the DR can
    update the older nodeB CCR ?is there any option for this?
    thanks
    lifeng

    here a procedure from http://prefetch.net/reference/suncluster.txt :
    # Recovering from amnesia
    # (use at your own risk)
    Scenario: Two node cluster (nodes A and B) with one QD,
    nodeA has gone bad, and amnesia protection is preventing
    nodeB from booting up.
    - Boot nodeB in non-cluster mode (boot -x).
    - Edit nodeB's file /etc/cluster/ccr/infrastructure as follows:
    - Change the value of "cluster.properties.installmode" from
    "disabled" to "enabled".
    - Change the number of votes for nodeA from "1" to "0",
    in the following property line:
    "cluster.nodes.<NodeA's id>.properties.quorum_vote".
    - Delete all lines with "cluster.quorum_devices" to remove
    knowledge of the quorum device.
    - Run command:
    /usr/cluster/lib/sc/ccradm -i /etc/cluster/ccr/infrastructure -o
    - Reboot nodeB in cluster mode.

  • How to solve this ORA-12154 problem please?

    Hello,
    I'm trying to execute the following command:
    C:\Documents and Settings\HP>sqlplus "sys/neo555@orcl as sysdba"
    SQL*Plus: Release 10.1.0.4.2 - Production on Dom Dez 18 02:45:37 2005
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    ERROR:
    ORA-12154: TNS:nÒo p¶de resolver o identificador de conexÒo especificado
    Translating: ORA-12154 TNS could not solve the conection identifier specified
    Informe o nome do usußrio:
    Translating: Inform the user name:
    How to solve this please because I get no other errors in the software.
    Thank you,
    André Luiz

    Hi
    If objective is to just connect as sysdba then you can simply check your SQLNET.ORA file under ORACLE_HOME\NETWORK\ADMIN and make an entry like
    SQLNET.AUTHENTICATION_SERVICES = (NTS)
    C:\Documents and Settings\HP>set oracle_sid=orcl
    C:\Documents and Settings\HP>sqlplus "/ as sysdba"
    Pls paste contents of your TNSNAMES.ORA and LISTENER.ORA files here.
    Rgds
    Adnan

  • Help to solve this simple problem- please

    Hi !
    Is there any method to resolve this problem.
    In my db there are 2 tables called Employee and Insurance. There fields as follows.
    Employee(empno,name,age,address,phone)
    Insurance(empno,insurName,insurCompany)
    Now I want to do this.In my HTML form,there are textboxes to input all of these data.
    Eg: empno,name,age,address,phone,insurName,insurCompany (All of these enter into 1 form)
    Now my problem is, how to save these data into the 2 seperate tables by using PreparedStatement.See am I right?
    INSERT INTO Employee,Insurance VALUES (?,?,?,?,?,?,?);
    Is it right? I'am confusing about these para's, because how can I tell to insert that first para (empno) into 2 tables.
    I using Java2 SDK,JSP,TOMCAT with MySQL db for this.
    Please anyone can answer this, help me.

    No, you need one INSERT statement for each table.

  • Plz solve this simple problem.

    here is my program code:
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import javax.swing.*;
    public class Coordinate extends JApplet implements ActionListener {
    private JLabel lb1, lb2;
    private JTextField ta1, ta2;
    private String name;
    //Initialize the applet
    public void init() {
    Container ct = getContentPane();
    ct.setLayout(new FlowLayout());
    lb1 = new JLabel("Enter your name");
    ct.add(lb1);
    ta1 = new JTextField(10);
    ct.add(ta1);
    public void actionPerformed(ActionEvent e) {
    name = e.getActionCommand();
    public void paint(Graphics g) {
    super.paint(g);
    g.drawString(name, 100, 80);
    It execute correctly. Enter a name in JTextField and display by paint method. Hope u understand it. So, my quest is why the name cant display inside paint method. Any extra step to do? Help!! Thank you.

    When you post code, please post it between [code] and [/code] tags (you can use the "code" button on the message posting screen). It makes your code much easier to read and prevents accidental markup from the forum software.
    [code]class Example {
        // your code goes here
    [/code]

  • Can you help me to solve this matrix filling problem?

    Hi,
    I need to fill a matrix column. this is the description briefly.
    1.This is my binding
    oForm.DataSources.UserDataSources.Add("usr_col5", SAPbouiCOM.BoDataType.dt_DATE, 50);
    oColumn = oColumns.Add("Col5", SAPbouiCOM.BoFormItemTypes.it_EDIT);
                    oColumn.Description = "Konteringsdato";
                    oColumn.TitleObject.Caption = "Konteringsdato";
                    oColumn.DataBind.SetBound(true, "", "usr_col5");
                    oColumn.Width = 89;
                    oColumn.Editable = false;
    2.I am going to fill this column using record set's field. all of the other column's fillings are ok.but problem is here
    oForm.DataSources.UserDataSources.Item("usr_col5").Value = oRs.Fields.Item("DocDate").Value.ToString();
    I think there should be a casting instead of of using ToString(). But i couldn't able to do it. So please help me.

    Hi,
    you can try once to set
    ((SAPbouiCOM.EditText)((SAPbouiCOM.Matrix)(oForm.Items.Item("mtxItemUID").Specific)).Columns.Item("Col5").Cells.Item(cellnumber).Specific).String = oRs.Fields.Item("DocDate").Value.ToString();
    or
    ((SAPbouiCOM.EditText)((SAPbouiCOM.Matrix)(oForm.Items.Item("mtxItemUID").Specific)).Columns.Item("Col5").Cells.Item(cellnumber).Specific).Value = oRs.Fields.Item("DocDate").Value.ToString();
    regards
    David

  • How do I solve this distinct count problem?

    Hello experts,
      So, I have an OBI report (table view).  I needed to get the percentage difference btn 2 columns, I did. Then I had to summarize difference in 4 buckets (0-15, 16-30, 31-50, >50%); I did (case statement). NOW,  I need to summarize(distinct count) the above buckets based on Store numbers for each day.
    Basically, if the difference is btn(0-5%) and I have 5 stores then I need to see 5 stores separately. The problem I am having when I do the distinct count instead of having separate counts for each bucket I am getting the total.  I see the buckets summarized, but the store column is showing the total number of all(we have about 700 stores) instead of breaking down the count for each bucket.  In the stores column I am using the distinct count function, I don't know if the problem is here or the case statement for buckets. I don't know either OBIEE is able to do what I trying to do, since I have yet to do this kind of function.  I have gotten few leads on my first post,  so far none of them have worked.
    As always, your insights are highly appreciated,

    Instead of using Distinct Count in Aggregation Rule,Try using in Column Formula.
    Let me know if u need any help on this.
    Thanks,

  • Since upgrading to firefox4.0, my NVIDIA kernel mode driver frequently not responding, turning monitor black, then successfully recovered. The Firefox browser would then crash afterwards. Please help solve this very annoying problem.

    as above.

    I have the same problem. I just upgraded to Win 7, no problems. Then I upgraded to FF 4.0, and I kept getting Nvidia Video Card crashes. I always undo my last computer change/install when something like this happens, so I immediately uninstalled 4.0, and went back to my older version of Firefox. No problems ever since.

  • I just can't solve this Photoshop graphic problem

    Greetings...
    I've seen a bit hereabouts on graphics import problems, but nothing so far has led me to a solution.
    Here's the thing: A multi-layer graphic was created for me in Photoshop CS2. It has a backround image and text. I intend to use it as a menu background. Looks swell in Photoshop, but when imported into DVDSP4, the text goes bad on me. The nice smooth edges on the capital "S" and other rounded characters now look roughhewn. The capital "T" and other hard edge characters look fine. The background image looks fine. Only the text stubbornly refuses to look like it does when still in Photoshop.
    The file was delivered to me at 800x600, 72 dpi. I've tried importing it into DVDSP4 most every way my feeble mind can think of: as is, resized to 720x534; as a merged-layer psd file; as a flattened psd file; as a tiff; as a pict; as a jpeg. It always comes out exactly the same - bad font problems, background image okay. I then took a few of the above images, dropped them into menus, burned a disc and looked at the finished product on my TV. The font problems were still very evident. (I also included on the test disc a menu with fonts entered directly from DVDSP4; they looked just fine.)
    Obviously, I'm missing something here. I have only superficial knowledge of Photoshop, so I'm really at a loss. Clearly, one should be able to transfer a graphic from Photoshop to DVDSP4 without a noticeable loss, but I'll be darned if I can figure out how to do it.
    Any advice, o learned ones?
    - derek
    PowerMac dual 2.0   Mac OS X (10.4.4)  

    Thanks again to all for your feedback. I'm going to look into every option you mentioned to see if I can find the key to my problem.
    By the way, I just now tried a test file of my own. Started from scratch with the NTSC 720x540 preset; typed in some print (36 pt, 24 pt); left the setting at "crisp"; saved the file as a PSD; imported it into DVDSP4; dropped it into a new menu ("Set Background, All layers visible") and...same problem.
    But just so my expectations are not off base, let me ask you this: The test file looked fine in Photoshop, yet the round characters all looked very rough once they were dropped into the DVDSP menu. What do you see on your setup when YOU do this? Are the letters all approximately as clean and well-formed as they were when residing in Photoshop? Now, I haven't burned this latest test file to see what it looks like on my TV, but I'm still curious as to why it looks so bad in DVDSP simulation. Note that text generated from within DVDSP4 looks just fine all down the line, from viewer to simulation to burned DVD.
    What the heck...????????
    - derek

  • How to solve this case sensitive problem for the parameters in function?

    Hi,
       I have a function, which should receive one parameter comes from textbox in BSP form. User will input upper case or lower case characters together in this textbox. But when I debug function, I found after function recevice the value from BSP form, the string value was converted into upper case automatically.
       I don't want system convert string to upper or lower case. I want keep the original value that user inputted.
       So is it possible to do this?
       Thanks!

    Hi,
       Thanks for your reply.
       Yes, I use the inputfield. The problem is if I use the parameter which contain user's input in the event handler of BSP, the value is equal to the user's input. But if the parameter was transfered into function, the value was converted to uppercase.
       But I want to keep  the original value.
       Thanks!

  • [SOLVED] Gmenu-simple-editor problem

    Hi all, I have a little problem with gnome menu, I have installed for example Qt4 package, in gnome shell 3.2 menu I have 3 Qt icons: Qt Designer, Qt Linguist and Qt Assistant, but in gmenu-simple-editor i have just Qt Designer and Qt Linguist but Qt assistant don't. I don't want have any Qt icons in menu, can somebody tell me how remove Qt assistant icon from gnome menu. Thx and sorry for my English.
    Last edited by Muf (2011-10-31 11:04:14)

    Muf wrote:Hi all, I have a little problem with gnome menu, I have installed for example Qt4 package, in gnome shell 3.2 menu I have 3 Qt icons: Qt Designer, Qt Linguist and Qt Assistant, but in gmenu-simple-editor i have just Qt Designer and Qt Linguist but Qt assistant don't. I don't want have any Qt icons in menu, can somebody tell me how remove Qt assistant icon from gnome menu. Thx and sorry for my English.
    ha, i hate them as well but i fixed by deleting the files and added to pacman.conf
    NoExtract = usr/share/applications/assistant.desktop usr/share/applications/designer.desktop usr/share/applications/linguist.desktop

  • Solve this Dynamic sql problem

    hi i am sending the table and the contents in the table and what i want from the table.
    SQL> descr sswms_rule_components;
    Name Null? Type
    RULE_COMPONENT_ID NOT NULL NUMBER
    RULE_COMPONENT_CODE NOT NULL VARCHAR2(30)
    RULE_COMPONENT_NAME NOT NULL VARCHAR2(100)
    ENABLED_FLAG NOT NULL VARCHAR2(1)
    DB_TABLE VARCHAR2 (100)
    DB_COLUMN VARCHAR2 (100)
    DB_FUNCTION VARCHAR2(100)
    WHERE_CLAUSE VARCHAR2 (2000)
    FROM_CLAUSE VARCHAR2 (2000)
    The table contains the following data
    db_table
    sswms_shipment_lines
    wsh_carrier_ship_method --- the data inside the db_table column is a table
    db_column
    Ship to
    Carrier_id
    Where_clause
    Oe_order_headers_all.header_id = sswms_shipment_lines.order_header_id
    From_clause
    Oe_order_headers_all, sswms_shipment_lines -- the data inside the From_clause is a table
    Now my requirement is to build a dynamic sql in forms 6i.when I click the build sql it should update the sql
    So --- I have to write a procedure --
    Select db_table || . || db_column || ‘’ || group_key
    ---group_key is an alias
    From db_table, From_clause
    --- Here the logic should be
    1. I should remove the commas from the “FROM_CLAUSE” column and check for duplicate values
    2. i should check for duplicate values for the “DB_TABLE “ column
    3. I should compare both the FROM_CLAUSE and DB_TABLE column for DUPLICATE VALUES
    4. After doing this I should add the result to the “FROM” in the select statement
    5.The table name should not be repeated from the "FROM"
    I am expecting the code and a positive reply from you.

    I'm waiting for the code the last 10 minutes and none arrived. What's happening? Developers, do my work, please! (ironic sentence)

  • Fundoos.... Solve this JAVA Connector problem

    Hello all,
    We have implemented a JCo Server using Example 5 in Jco Documentation.
    The Server shuts down automatically every other day with no dumps leading no trails on how to debug.when we restart, it runs just fine.
    my hunch is that the threads are not properly handled or not releasing the memory, i m not sure.
    Does any one had similar problem or any clues ?
    Rewards Guaranteed.
    Thanks in advance.
    Cheers...
    Anna

    To get a book that is already open you need the equivalent of VB's GetObject, not the equivalent of CreateObject (that is called "ActiveXComponent" in your library.) Check if your library has the equivalent of GetObject (prepare yourself to read about "monikers" and other MS jargon words...)

  • What happened and how to solve this camera roll problem?

    I don't know what happened to my ipad but the camera roll went crazy. The pictures in my camera roll appear from the first picture down to the latest which is weird because it should be from the latest up to the first picture I've taken instead.

    The photos in the Camera Roll album should show from the earliest at the top, with the latest photo at the bottom - that's the order that mine show in

Maybe you are looking for