Enable Recording multi-tracks when hit the '*'

hi,
I'm trying to record 3 vocal tracks at once now.And yes,what i can do is,enable 3 of them by hit on the 'R' and will be the RED blink after hited!
But i realize that it posible to do as below situation, when come to single track (when i recording guitar track),select/highlight the track i want to record and hit the '*' it'll auto enable the recording 'R' button and start record now!!
Now,when come to more than 1 track,like what i'm trying to do now...it can't be(auto enable 'R' button and record immediately) when hit the '*', but only available to the track of highlight (only able to 1 track).however i try to highlight 3 tracks of them...but can't be!!
Need your helps and precious opinion here.Thanks and appreciate so much!!
hope to hear from you guys then...

i tried this method before...Not Work at all...When you highlight the tracks you want in Mixer...it do highlighting...But in the Arrange Window it Don't!!
But the idea of GROUPING from " ambient8 " really work...haaa...i just done it!!!
BTW, Thanks Sampleconstruct ,really helpful!!
Thanks everyone Thread Solved problem.

Similar Messages

  • ERROR when hitting the "helpful" or "solved" buttons

    Here's the message I get, any system admins know how to fix it?
    Error
    An error in the system has occurred. Please contact the system administrator if the problem persists.

    KevinC & Others,
    This is a wide spread issue, caused by the recent Maintenance on the  Discussions system.
    See these previously posted Topics in Feedback About Discussions, posted below.
    Please review the responses.
    Error when attempting to click "Solved" button in forum
    Error when trying to mark a reply as "solved"
    Thank you for maintenance and another error
    This Thread ERROR when hitting the "helpful" or "solved" buttons
    ali b

  • SelectedItem return null when hit the NEXT page or Submit

    Hello All,
    I try to add the paging to the open source Alfresco content management. We need to process a large dataset (e.g. > 50K files) so after we gather a list of data files we display them with the checkbox and each checkbox has default checked status.
    If the value="#{FixItemList.selectedItems} is omitted in the <h:selectManyCheckbox> then the paging is fine when hitting the NEXT page or Submit button. If we set the value in the selectManyCheckbox then it returns null for selectedItems.
    Would please point out what I have done wrong? Appreciate for all yours helps.
    This is the managed bean object.
    public class ToolsContext
         private FixItemList fixItemList;
         private ToolsContext()
              this.fixItemList = new FixItemList();
         public void addFix(Fix fix) {
              if(fix != null) {               
                   fixItemList.addFixItem(new SelectItem(fix, fix.getPath(), fix.getDetails(), false));
                   fixItemList.addFixSelectedItems("" + fix + "");
    public class FixItemList implements Serializable
         private static final long serialVersionUID = 123784764562L;          
         private List<SelectItem> items;
         private List<String> selectedItems;
         private int displayItemPerPage;
         public FixItemList() {
              displayItemPerPage = 100;
              items = new ArrayList<SelectItem>();
              selectedItems = new ArrayList<String>();
         public void setItems(List<SelectItem> items) {
              this.items = items;
         public List<SelectItem> getItems() {
              return this.items;          
         public int getItemsSize() {
              return this.items.size();
         public int getDisplayItemPerPage() {
              return this.displayItemPerPage;
         public void setDisplayItemPerPage(int displayItemPerPage) {
              this.displayItemPerPage = displayItemPerPage;
         public void addFixItem(SelectItem selectItem) {          
              items.add(selectItem);
         public List<String> getSelectedItems() {
              return selectedItems;
         public void setSelectedItems(List<String> selectedItems) {
              this.selectedItems = selectedItems;
         public void addFixSelectedItems(String selectedItem) {          
              selectedItems.add(selectedItem);
    }My faces-config.xml
        <managed-bean>
         <description>
            This bean is to display in the Web Project tool as the pagination. HOPEFULLY SO
         </description>
         <managed-bean-name>FixItemList</managed-bean-name>
         <managed-bean-class>org.alfresco.module.websitetools.util.FixItemList</managed-bean-class>
         <managed-bean-scope>session</managed-bean-scope>
        </managed-bean>The JSP page.
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ taglib uri="/WEB-INF/alfresco.tld" prefix="a" %>
    <%@ taglib uri="/WEB-INF/repo.tld" prefix="r" %>
    <%@ taglib uri="/WEB-INF/wcm.tld" prefix="w" %>
    <w:avmList id="files-list" viewMode="details" pageSize="#{FixItemList.displayItemPerPage}" styleClass="recordSet"
    headerStyleClass="recordSetHeader" rowStyleClass="recordSetRow" altRowStyleClass="recordSetRowAlt" width="100%"
    value="#{FixItemList.items}" var="row">
    <%-- checkbox column --%>
    <a:column id="col1" primary="true" width="5" style="padding:2px;text-align:left">
       <h:selectManyCheckbox id="wpt" value="#{FixItemList.selectedItems}">
            <f:selectItem itemLabel="#{row.label}" itemValue="#{row.value}" />
       </h:selectManyCheckbox>
    </a:column>
    <%-- file name column --%>
    <a:column id="col2" primary="true" width="50%" style="padding:2px;text-align:left">
         <h:outputText value="#{row.description}" />
    </a:column>
    <a:dataPager id="pager1" styleClass="pager" />
    </w:avmList>When I hit the NEXT page the #FixItemList.selectedItem return null. We use myface version 1.1.5. And below is the stack error
    SEVERE: Servlet.service() for servlet Faces Servlet threw exception
    java.lang.NullPointerException
         at javax.faces.component._SelectItemsIterator.hasNext(_SelectItemsIterator.java:73)
         at javax.faces.component.UISelectMany.validateValue(UISelectMany.java:268)
         at javax.faces.component.UIInput.validate(UIInput.java:354)
         at javax.faces.component.UISelectMany.validate(UISelectMany.java:297)
         at javax.faces.component.UIInput.processValidators(UIInput.java:184)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:627)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:627)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:627)
         at javax.faces.component.UIForm.processValidators(UIForm.java:73)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:627)
         at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:149)
         at org.apache.myfaces.lifecycle.ProcessValidationsExecutor.execute(ProcessValidationsExecutor.java:32)
         at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java:95)
         at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:70)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:139)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.alfresco.web.app.servlet.AuthenticationFilter.doFilter(AuthenticationFilter.java:104)Appreciate for all yours helps,
    Anh

    I put the print out statement in the _SelectItemsIterator and found out that the selected item's value doesn't binding. How would I be able to select an item? Attached is the code with debug print out in the SelectItemsIterator.
    Would some one please point me a direction? Appreciate.
        public boolean hasNext()
            if(_nextItem != null)
                return true;
            if(_nestedItems != null)
                if(_nestedItems.hasNext())
                    return true;
                _nestedItems = null;
            if(_childs.hasNext())
                UIComponent child = (UIComponent)_childs.next();
                getLogger().debug("-----_SelectItemsIterator---child is UIComponent---" + child.getChildCount());
                getLogger().debug("-----_SelectItemsIterator---child is UIComponent---" + child.getAttributes());
                Map m = child.getAttributes();
                Set s = m.keySet();
                Iterator i= s.iterator();
                while (i.hasNext()) {                 
                     getLogger().debug("value  = " + m.get(i.next()));
                if(child instanceof UISelectItem)
                     UISelectItem uiSelectItem = (UISelectItem)child;
                    Object item = uiSelectItem.getValue();
                    getLogger().debug("-----_SelectItemsIterator---child is UISelectItem---getValue()--" + item);
                    if(item == null)
                        Object itemValue = ((UISelectItem)child).getItemValue();
                        String label = ((UISelectItem)child).getItemLabel();
                        String description = ((UISelectItem)child).getItemDescription();
                        boolean disabled = ((UISelectItem)child).isItemDisabled();
                        if(label == null)
                            label = itemValue.toString(); //////////////////////IT THROWS THE EXCEPTION HERE, BECAUSE THE
                                                                 ///itemValue is null
                        item = new SelectItem(itemValue, label, description, disabled);
                        getLogger().debug("-----_SelectItemsIterator---create item - label---" + label);
                        getLogger().debug("-----_SelectItemsIterator---create item - descp---" + description);
                        getLogger().debug("-----_SelectItemsIterator---create item - disable---" + disabled);
                        getLogger().debug("-----_SelectItemsIterator---create item - itemValue--" + itemValue);
                    }

  • Notification Email should be triggered when hit the Apply changes?

    Hi All,
    Am creating a request form similiar to a remedy form,when ever the user create a new request and submit the request.Notification email will be sent to the user and the admin.
    Here when the admin ppl rejects the request,a notification email triggered to the user like request has been rejected .
    I have three radio buttons in the Form
    1.Submitted(default).
    2.Rejected.
    3.Accepted.
    When the admin edit the request and select rejected radio button,and apply changes ,a notification email should be triggered to the user.
    Now i have a after submit process for edit the ,which will be triggered when ever the user hit the apply changes button and it will send notification to both user and admin.
    How to achieve the notification email that should be triggered when the admin rejects the request and submit the form???
    am using apex version 4.0
    when the Admin will select the reject radio button and hit tha apply changes then the notification email should be sent to the user!!
    Always appreciate your help!!!
    Thanks & Regards,
    Ramya.

    Ramya wrote:
    Hi Gurujothi,
    Thanks for your response!.
    I can able to send email now.Thing is i need to send an email like when the admin rejects the request.
    For eg.
    1.Admin opened the request and select the Reject radio button and clicking Applychanges button then the email notification will be sent to the user like,
    Your request has been Rejected.
    2.If the Admin selects the radio button accept radio button and clicked apply changes,start processing about the request then the Email notification will be sent to the user like ,
    Your request has been modified .Request will be notified by the admin.(Working now)
    DO i need to create two separate process for the email notification like
    one is for all the modifications that the user/admin will do in the form ,once the record is created and another process is for Rejection purpose of the Form.But only one Apply changes button is there in the Form.You don't need two page process, In one single process you can acces the page item session values using *:YOUR_ITEM_NAME* bind variable syntax or V function like this V('YOUR_ITEM_NAME')
    So in your PL/SQL code you can easily prepare the email body based on your radio group item's value
    declare
    l_body varchar2(4000);
    begin
    IF :Px_MY_RADIO_GROUP ='R' THEN
      l_body := build your conditional email body for rejected
    ELSIF  :Px_MY_RADIO_GROUP ='A' THEN
      l_body := build your conditional email body approved
    END IF;
    apex_mail.send(
            p_to       => '[email protected]',   -- change to your email address
            p_from     => '[email protected]', -- change to a real senders email address
            p_body     => l_body,
            p_subj     => 'APEX_MAIL Package - Plain Text message');
    end;
    See this http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/concept_ses_val.htm#HTMDB03012

  • Itunes 10.6.3 available, but whenI hit the download button,nothing happens

    itunes 10.6.3 available, but when I hit the download button,nothing happens

    There's a couple of things you can try with that one.
    (1) You could try doing the update using an iTunesSetup.exe (or iTunes64Setup.exe) downloaded from the Apple website:
    http://www.apple.com/itunes/download/
    (2) You could try doing a "Run as Administrator" with your Apple Software Update.
    Quit Apple Software Update first if you've got it open.
    In Computer (or My Computer, on XP) open your C Drive or whichever drive you have your program files installed on.
    If you've got a 32-bit Windows, open the "Program files" folder.
    If you've got a 64-bit Windows, open the "Program files (x86)" folder.
    Open the "Apple Software Update" folder.
    Right-click on the "SoftwareUpdate.exe" file and select "Run as Administrator", as per the following screenshot:
    Does ASU show you the iTunes update now?

  • How do I get my macbook to stop scrolling up and down screens, mainly in safari, when hitting the space bar?

    every time I hit the space bar while in safari, my page scrolls down and then back up.  and when I hit the backspace/delete key, it takes me back to the previous page.  I need this to stop.  I cannot get anything done with this going on.

    every time I hit the space bar while in safari, my page scrolls down and then back up.  and when I hit the backspace/delete key, it takes me back to the previous page.  I need this to stop.  I cannot get anything done with this going on.

  • Safari 6 is slow when hitting the back button

    I notice that on Moutain Lion Safari appears quite slow when I hit the back button.
    Say I'm on some news site, click on a story but then want to go back after 10 seconds, it appears as if it's loading the whole site where I came from again.
    Is there some setting to change this?
    Also with version 6, it appears that Safari is really waiting for each and every object to be finished before displaying anything.
    I think this kind of was always the case with Safari, but before on Safari 5, it felt much quicker here and I'd appreciate some rendering before every image is loaded.

    Same here. After clicking the BACK button in Safari I get old copies. I am using Ipad 16GB wifi-only.
    Issue started with IOS5. It worked fine before.
    When the old page is shown, a refresh helps as workaround. Untill Applie fixes it.

  • Recording Multi Tracks

    Im totally new to recording music, and just want to play with it. Can I record a guitar part, then record a drum part over it, and then add a voice just with GarageBand 2?

    Yep, you create a track, lay down your drum track (to get the beat down) which you can do live with mic, or using the various provided library of loops. You then create a new track, lay down your guitar and then create another track and lay down your voice. Note, you will need a mic and an analog to digital converter to do these latter two.

  • Open tab doesn't work when hitting the + or going to file, open new tab. automatic ones will work, but not manually.

    does not open tabs by hitting the + or by selecting file, open new tab. i am operating under mac os x software and have updated firefox twice now with no resolution to this issue.

    Many users have discovered this problem (in Firefox 30 and higher) is caused by Conduit add-ons, such as a Conduit plugin and/or a "Community Toolbar" extension.
    You can check for and disable extensions on the Add-ons page. Either:
    * Command+Shift+a
    * "3-bar" menu button (or Tools menu) > Add-ons
    (1) In the left column, click Plugins. Set nonessential plugins to "Never Activate".
    (2) In the left column, click Extensions. Then, if in doubt, disable.
    Often a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    Does that help with the "+" button? If so, could you name the specific plugin/extension that caused the problem?

  • What is the new key command to re-record a track- and delete the old one?

    It used to be the - (minus) button on logic pro 7. I haven't been able to find it in the new one. or in the pdf manual. Anybody know of hand?
    thank you

    Open the Key Command window. Choose any command. Hit the learn button and type in the command. A message will appear telling you what the command is already assigned to. Then you can change it.

  • My iphone 3GS screen when hit the water

    My iphone 3GS hit the water today and its screen there white in the edges, also still there dew. How do I get my 3GS back to normal? Need some help. Thanks.

    Turn the phone off and put it in a plastic bag 1/3 filled with uncooked rice - or better - silica gel packs.  Seal the bag a leave alone for at least 3 days.  DO NOT HEAT the phone or use a hair dryer.
    If you do this there is a tiny, tiny chance that the phone will function "normally", or at least better,  However even if it does, it's likely to develop future problems from internal corrosion.  Replacement is your only real option.

  • Error message when hit the import button in LR3- ?

    I am still using LR3 and am completely happy with it however a few days ago it developed an issue. I have tried several different memory cards and a couple different methods of reading them with the same results;
    LR brings up all the photos on the card normally, just like it always has, I check the ones I want to import, hit the button and an error screen comes up listing all the photos I had check and says- import not complete because it cant read the card.
    Im not very knowledgeable about all this and am wondering if there is something obvious to you that I should check first. My presets have been the same since I set it up… am not sure what could have changed - ?
    Using LR3 on a Mac w/OS X

    well that makes sense but have no idea where that setting would be. I set it all up upon initial install to import to a certain folder and a second copy to extrernal hard drive, change file name, etc - but none of that has changed, ever.
    Would regular updating to the mac have changed the permissions on the folders - ?

  • HT1006 why when hit the record button I lose the song on my music track for a second or so then the sound returns. I would like to be able to record on the fly while still hearing my accompanyment

    guys am new to garageband. I am trying drag a non vocal track into my project, open another vocal track and and record my voice with a mic via my interface. When i hit play I hear the non vocal track, but when I hit record everything stops for a second including the non vocal track and then continue playing, and recording. why cant I record on the fly like other programs. what am I doing wrong. Help is greatly appreciated

    GB doesn't offer "punch-in" recording. But you can easily set an earlier recording point, so you can listen to as much as you want from the audio track, and later cut your recorded snippet to the desired length.

  • Recording multi-track violin

    Hi, I've been laying down a production using Logic Pro 7 in which I have recorded singly, three viola tracks, and six violin tracks through a Rode NT5 condenser mic, via an M-Audio 1814 Firewire into a PowerMac G5 2.3 with 4.5 Gb of Ram.
    Each track is recorded at as high an input as possible without more than a very little clipping of the signal. Each track, singularly, sounds fine with no signal deterioration where the instruments are played loud. However, when I put the 'nine' tracks together, I tend to get a lot of signal overload and break-up.
    What's causing this? Do I need more Ram? Is it the hardware I'm using? The problem is worsened when I use any EQ or Limiter.
    Anyone had this problem before? If so, I'd appreciate some help.
    Thanks
    Terry, Ohio USA

    Terry,
    What you're really talking about is considered, in part, "mastering". There is a ton of information here, as well as other forums, as to how to best go about that, as far as attempting at doing it yourself.
    But yes, setting the overall level of each track in a CD, is usually handled in mastering software, such as Waveburner.
    FYI, that is the very short explanation... there's actually a lot more to this, but that should get you started.

  • I can't seem to get GB to recognize my Behringer X1222 USB Mixer. It will record, but shouldn't I be able to see and/or select which input channel(s) that I will record from? Can I record more than one channel at a time, and record multi tracks?

    I can't seem to get GarageBand to recognize my Behringer X1222 USB Mixer. It will record, but only on the generic "USB Input, without seeing or letting me select the input channel from the mixer. Can't find any drivers from Behringer. How do I getGB to "see" the mixer? Thanks, I'm a newbie to Macs in genreal, and recording...

    viiram wrote:
    It will record, but only on the generic "USB Input, without seeing or letting me select the input channel from the mixer.
    the x1222 includes a 2 channel audio interface, 2 channels are all you can get from it.
    the most you can do is record to 2 tracks at a time; skim this tute to see how:
    http://www.bulletsandbones.com/GB/Tutorials.html#allaboutrecording2tracks
    (Let the page FULLY load. The link to your answer is at the top of your screen)

Maybe you are looking for

  • Open asset acctng year in closed FI fiscal year - asset not totally posted

    Hello Friends, In January we have closed 2010 in finance but Asset accounting year remained open. Now I have an asset with planned depreciation in 2010 which was not posted. Now I can't close asset accounting for 2010. I have read about SAP note 2969

  • MP3 and itunes

    If I buy a new MP3 and it says 'compatable with itunes' does that mean I can use it on my Apple computer or just that it will work with itunes on my old windows pc? I have itunes on my pc, but now I have my Apple computers I do not use the Toshiba pc

  • Logo import in final cut

    Good day everyone, I have an assignement for a company and they have a white logo on a white background. How can I get it right to see this in final cut? Thanks for your help Ward

  • Variables in a view

    Hi I had a query customer exit variables (Values will be derived based on user entry date) I generated 4 views from the query to use them in Web Template (Dashboard Graphs reports)...... When i execute the report it is prompting me variable screen an

  • Air Drop Issues

    Recently my phone hasn't been saving the media I have air dropped. It goes through the whole process but still no video transfer. Help