All Midi devices Play at same time help in resolving

Environment:
2 presounus Firepods,Oxygen 61, Yamaha DTX Exployer Drum Trigger, Panasonic SX KC-611 Keyboard, Logic Pro 8, Mac Book Pro, Mac OS X10.58.
Question? How to get each midi device to be separate from each other so I can Play and record each device?
I can get any one of the instruments to play fine by themselves one thru the USB Port, and the other two thru the Midi in and out of each fire pod, however when I hook all three to the system to play, them at the same time, each instrument will trigger the other two. Each is on a separate channel.
Help

Thanks for your reply, and my apologies for being unclear:
I have the SWFs loaded into empty movieclips, one for each SWF, which are on each keyframe in the main timeline. The movieclip instances are named but the names aren't referred to in the actionscript. Doubleclicking the instances on each keyframe to go into their scene 1, and on layer 1, I've put the nextFrame() actionscript on the first frame, which is empty.
So to load all of the SWFs into one movieclip, I now have all of the movieclip instances the same one on each keyframe, and the first keyframe has:
loadMovieNum("firstanimation.swf", 1);
followed by on the second:
loadMovieNum("secondanimation.swf", 2);
and so on.
What's happening now is the first and third SWFs are playing at the same time and the second one isn't at all. Is what I'm doing wrong jumping out at you?
Thank you

Similar Messages

  • How to push Messages on all Apple devices in the same time on iOS 6 ?

    Because when it appears on Macbook, it doesn't appears at all on the iPhone.

    Because you are sharing an Apple ID. Don't. Go to Settings > Messages > Send & Receive.

  • Playing two midi keyboards at the same time in logic for live show

    hello, i have a macbook pro 2.16 cpu, os 10.4.7, logic 7.1.1 and 7.2 is on the way
    1 gb of ram
    a tascma us-428 inerface
    i want to be able to play two diffrent midi keyboards at the same time is their a way to have one digital instrament for on keyboard, and another midi keyboard on a diffrent digital instrament at the same time, so as to play a live show?
    and also if i want to chang the intrament in the middle of a song becase it switches half way throw the song, is it posble to atomate this switch insted of doing it by hand? please help! thank you.

    here is some good reading regarding patch change
    http://discussions.apple.com/thread.jspa?messageID=2931940&#2931940
    http://discussions.apple.com/thread.jspa?messageID=1993033&#1993033
    http://www.logicprohelp.com/viewtopic.php?t=1045&highlight=instrumentprogram+programmechange

  • When I use a projector via a VGA adapter I can not run my Bluetooth speaker or other Bluetooth devices at the same time. Can anyone help me with this?

    I try to find help. I can not run a projector and a Bluetooth device at the same time. Even though my Bluetooth speaker is recognized, and I have changed the settings to this speaker, it wont play any sound. I have got also problems using other Bluetooth devices when I use the projector via a VGA adapter.

    I try to find help. I can not run a projector and a Bluetooth device at the same time. Even though my Bluetooth speaker is recognized, and I have changed the settings to this speaker, it wont play any sound. I have got also problems using other Bluetooth devices when I use the projector via a VGA adapter.

  • Is there a way to play to 2 blue tooth devices at the same time?

    is there a way to play to 2 blue tooth devices at the same time from my ipad?

    If you want to have 2 sets of headphones plaing at the same time, just get a headphone splitter.  Here's a link to several that will work on your iPad......http://search.yahoo.com/search;_ylt=Ao7XF2KB2RaGRXX1SKOKmICbvZx4?p=headphone+spl itter+ipad&toggle=1&cop=mss&ei=UTF-8&fr=yfp-t-701

  • Using Multiple MIDI controllers at the same time

    It seems that there is no way to record from 2 different midi controllers at the same time without the data getting summed together. I'm trying to record a midi keyboard playing a piano sound and my roland v-drums at the same time. The result i get when i record enable both tracks is that both the keyboard and the drums each play both sounds. I'm using a MOTU midi express xt usb and have each of the devices on seperate midi ports and the drums are on channel 10. Is there anyway to keep this info seperated on it's own port? I've read through the environment chapter about 1000 times and there is no mention of this senario at all. Should I have saved $700 and stuck with MOTU DP4.6 which works just fine? Is there anyway to get some REAL help from Apple?

    Have you tried: file/song settings/recording/auto demix per channel if multi-track recording?
    hope that helps.

  • Telnet two devices at the same time 1 C# program

    Hi, currently I have one 100% working program used to telnet my Arduino circuit.
    I use this C# class found somewhere around the web: Anyway, without this forum, I wouldn't be able to finish my program.
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Net.Sockets;
    namespace USSR
    enum Verbs
    WILL = 251,
    WONT = 252,
    DO = 253,
    DONT = 254,
    IAC = 255
    enum Options
    SGA = 3
    class TelnetConnection
    TcpClient tcpSocket;
    int TimeOutMs = 100;
    public TelnetConnection(string Hostname, int Port)
    tcpSocket = new TcpClient(Hostname, Port);
    public string Login(string Username, string Password, int LoginTimeOutMs)
    int oldTimeOutMs = TimeOutMs;
    TimeOutMs = LoginTimeOutMs;
    string s = Read();
    if (!s.TrimEnd().EndsWith(":"))
    throw new Exception("Failed to connect : no login prompt");
    WriteLine(Username);
    s += Read();
    if (!s.TrimEnd().EndsWith(":"))
    throw new Exception("Failed to connect : no password prompt");
    WriteLine(Password);
    s += Read();
    TimeOutMs = oldTimeOutMs;
    return s;
    public void WriteLine(string cmd)
    Write(cmd + "\n");
    public void Write(string cmd)
    if (!tcpSocket.Connected) return;
    byte[] buf = System.Text.ASCIIEncoding.ASCII.GetBytes(cmd.Replace("\0xFF", "\0xFF\0xFF"));
    tcpSocket.GetStream().Write(buf, 0, buf.Length);
    public string Read()
    if (!tcpSocket.Connected) return null;
    StringBuilder sb = new StringBuilder();
    do
    ParseTelnet(sb);
    System.Threading.Thread.Sleep(TimeOutMs);
    } while (tcpSocket.Available > 0);
    return sb.ToString();
    public bool IsConnected
    get { return tcpSocket.Connected; }
    void ParseTelnet(StringBuilder sb)
    while (tcpSocket.Available > 0)
    int input = tcpSocket.GetStream().ReadByte();
    switch (input)
    case -1:
    break;
    case (int)Verbs.IAC:
    // interpret as command
    int inputverb = tcpSocket.GetStream().ReadByte();
    if (inputverb == -1) break;
    switch (inputverb)
    case (int)Verbs.IAC:
    //literal IAC = 255 escaped, so append char 255 to string
    sb.Append(inputverb);
    break;
    case (int)Verbs.DO:
    case (int)Verbs.DONT:
    case (int)Verbs.WILL:
    case (int)Verbs.WONT:
    // reply to all commands with "WONT", unless it is SGA (suppres go ahead)
    int inputoption = tcpSocket.GetStream().ReadByte();
    if (inputoption == -1) break;
    tcpSocket.GetStream().WriteByte((byte)Verbs.IAC);
    if (inputoption == (int)Options.SGA)
    tcpSocket.GetStream().WriteByte(inputverb == (int)Verbs.DO ? (byte)Verbs.WILL : (byte)Verbs.DO);
    else
    tcpSocket.GetStream().WriteByte(inputverb == (int)Verbs.DO ? (byte)Verbs.WONT : (byte)Verbs.DONT);
    tcpSocket.GetStream().WriteByte((byte)inputoption);
    break;
    default:
    break;
    break;
    default:
    sb.Append((char)input);
    break;
    My UI Code:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.IO;
    using System.Linq;
    using System.Net;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.Net.Sockets;
    namespace USSR
    public partial class mainForm : Form
    TelnetConnection tc;
    public bool keyPressChecker = false;
    public bool connectedChecker = false;
    public mainForm()
    InitializeComponent();
    // webBrowser1.Navigate("http://admin:[email protected]");
    this.tc = null;
    this.connectedChecker = false;
    private void radioButton2_CheckedChanged(object sender, EventArgs e)
    try
    if (submarineRadioBtn.Checked)
    System.Diagnostics.Process.Start("dummySub.exe");
    catch (Exception ex)
    MessageBox.Show(ex.ToString());
    private void centerBtnCamera_Click(object sender, EventArgs e)
    private void forwardBtn_Click(object sender, EventArgs e)
    if (connectedChecker)
    this.tc.WriteLine("W");
    private void connectToolStripMenuItem1_Click(object sender, EventArgs e)
    try
    //create a new telnet connection
    tc = new TelnetConnection("192.168.0.102", 23);
    if (tc.IsConnected)
    connectedChecker = true;
    catch (Exception ex)
    MessageBox.Show(ex.ToString());
    private void controlKeyDownCheckBox_CheckedChanged(object sender, EventArgs e)
    if (controlKeyDownCheckBox.Checked == true)
    keyPressChecker = true;
    else
    keyPressChecker = false;
    private void controlKeyDownCheckBox_KeyDown(object sender, KeyEventArgs e)
    if (keyPressChecker == true)
    if (e.KeyCode == Keys.W)
    if (connectedChecker)
    tc.WriteLine("W");
    if (e.KeyCode == Keys.S)
    if (connectedChecker)
    tc.WriteLine("S");
    private void reverseBtn_Click(object sender, EventArgs e)
    if (connectedChecker)
    tc.WriteLine("S");
    private void disconnectToolStripMenuItem_Click(object sender, EventArgs e)
    try
    tc = null;
    connectedChecker = false;
    catch (Exception ex)
    MessageBox.Show(ex.ToString());
    private void controlKeyDownCheckBox_KeyUp(object sender, KeyEventArgs e)
    if (keyPressChecker == true)
    if (e.KeyCode == Keys.W)
    if (connectedChecker)
    tc.WriteLine("O"); //decrease to MID PT.
    if (e.KeyCode == Keys.S)
    if (connectedChecker)
    tc.WriteLine("P"); //decrease speed to MID PT.
    private void exitToolStripMenuItem_Click(object sender, EventArgs e)
    Application.Exit();
    Now, what I want to know is this: IS IT POSSIBLE FOR MY C# PROGRAM TO TELNET TWO DEVICES AT THE SAME TIME? 
    Thanks
    Glenn

    try this links :
    http://www.codeproject.com/Articles/19071/Quick-tool-A-minimalistic-Telnet-library
    http://stackoverflow.com/questions/25116077/send-and-receive-commands-via-telnet-in-c-sharp
    http://stackoverflow.com/questions/12283241/ssh-to-server-then-telnet-to-device

  • TS2972 I would like to share my iTunes libraries with my Apple TV from both my iMac and Macbook Pro, but I use the same iTunes account on both devices. Is it possible to link my Apple TV to both devices at the same time?

    I recently purchased an Apple TV, and I currently have it linked to my iMac with my iTunes account. I also have a newer MacBook Pro that has some different iTunes media on it than my iMac does, but they share iTunes accounts. Is it possible to link both devices at the same time, have access to media on both computers, and use the same iTunes account on both computers?? It seems Apple TV will only link to one iTunes account per computer, but can access multiple computers if different iTunes accounts are activated on those computers.

    You can share multiple libraries with the Apple TV, they don't even need to use the same iTunes account. Just make sure that you use the same ID for homesharing on all devices.

  • TS4020 I live in a house with multiple iCloud users.  When they try to turn on "Find my computer"  they get the message that they will have to disable my "find my computer" setting in order to enable theirs.  How can they all be enabled at the same time?

    I live in a house with multiple iCloud users.  When they try to turn on "Find my computer"  they get the message that they will have to disable my "find my computer" setting in order to enable theirs.  How can they all be enabled at the same time?

    Try this support document for information on how to contact Apple and account security. Apple ID: Contacting Apple for help with Apple ID account security

  • Is it possible to record and play at same time in swift, is there a option to record without storing the file

    I am making a microphone, is it possible to record and play at same time in swift, is there a option to record without storing the file

    Its pretty simple with FMS. You just need to do following things:
    Publish using FMLE with following settings: (just telling which are needed , rest you configure based on your needs)
    Video codec: H.264
    Audio Codec: <of your choice>
    Server ip: rtmp://<server-uri>/<app-name>
    Stream Name: mp4:<stream-name>.f4v
    Application : Server-side code
    application.onPublish = function(myclient,mystream){
         mystream.record();
    application.onUnpublish = function(myclient,mystream){
         mystream.record(false);
    Have a client , which subscribes in following live mode:-
    ns.play("mp4:<stream-name>.f4v",-1,0,true);   // this is subscribing in live mode
    In this way even if file is recorded, your clients are subscribing in live mode so all will be in sync.
    Now if you want to disallow any clients who will try to subscribe to "recorded" file when live event is going on, you can achieve using auth adaptor. (let me know if you want to enforce such requirement)
    But i think above solution solves your primary problem. Also please let me know if there are any issues in getting it work , i have given bare minimum which is required.

  • How do I apply the blur filter to all my layers at the same time?

    Hi I'm working on a background for a web page and I want to try how different filters are going to affect all the layers. Is it possible to apply a filter to all the layers without flattening the file first? Thanks very much,
    Cathy

    Thanks very much , that's really helpful,Cathy
    Date: Thu, 23 Dec 2010 11:18:21 -0700
    From: [email protected]
    To: [email protected]
    Subject: How do I apply the blur filter to all my layers at the same time?
    Hello!
    There is no need to flatten the file, but you can create a layer that merges all the content of the image, and apply the filter on that layer.
    Target the topmost layer, by holding the Option and . (period) keys, then create a merged copy by holding down Command Shift Option E.
    >

  • Can I use more than one blue-tooth device at the same time on IPhone 4S? Like a wireless headsets and speed and cadence sensor for cycling computer, receive the data and listen music simultaneously

    Can I use more than one blue-tooth device at the same time on IPhone 4S? Like a wireless headsets and speed and cadence sensor for cycling computer, receive the data and listen music simultaneously

    As long as the profiles are different (ex. HID vs AD2P) you will not have any issues. But say if you try to use 2 keyboards at once, it won't work. Or 2 headsets at once. Your scenario seems fine.

  • HT2508 Airport express for more than one device at the same time.

    I just set up my Airport Express on my MacBook, but when I try to use this wireless connection on my iPad, I have to disconnect from my existing connection on my MacBook first. How can I use both devices at the same time without having to disconnect?

    Hi,
    Yes.
    Jim

  • My iCloud Backup button is grayed out and i cant turn it on. All my devices are on Wifi. Help!

    my iCloud Backup button is grayed out and i cant turn it on. All my devices are on Wifi. Help! Both my ipad and iPhone

    A number of employers will push a security profile to your phone when you add their exchange account that prevents you from backing it up to iCloud.  They do this because they don't want confidential company information on another companies servers.  If this is the case, you will find a setting called "Profile" in Settings>General near the bottom.
    You would have to contact the company's IT department to confirm that they are preventing you from backing up to iCloud but that's normally what causes the iCloud backup setting to be grayed our or missing from an iOS device.

  • Any way to update all the articles at the same time?

    Any way to update all the articles at the same time?
    is one by one the only way to update?
    I have 68 articles up to 800 mb !!!

    Unfortunately, the team hasn't added an Update All feature. I believe this is planned for the February release.
    If you have your folders and files set up properly with a sidecar.xml file, consider deleting and re-creating the folio.

Maybe you are looking for

  • Can I transfer photos from a pc to an SD card and then move the photos to iPad Air 2 via lightning reader

    I would like to transfer photos from a PC to an iPad Air 2.  I would like to avoid iTunes if possible. I have been told that if I put my photos on an SD card i can use a "Lightning to SD Card Camera Reader" to read the photos on my iPad and then copy

  • Missing text after EXPORT from PMD to PDF

    Hi, I have a document, designed through Adobe pagemaker 70, which I would like converted to PDF. Within Adobe PageMaker 70 I performed a File-->Export-->Adobe PDF, kept all the default options and managed to generate a PDF version of the *.PMD docume

  • MSS PCR form not pulling data for a user

    Hi All, On Organizational/Position Change Form(on Portal)  one of the user don't see the data in the dropdowns in this form. But for other users it is working just fine. The user not able to see the data in drop down can access other PCR's. I was won

  • PSE8 Organizer: Turning off "tips & tricks"

    Is it possibe to disable this annoying thing that slides in from the lower right in the Organizer? It's more than annoying...it slows down an already slow program. Until this little app does its thing, I cannot do anything in the Organizer. I'd like

  • Exception handlin

    what is exact difference between checked exceptions and un checked exceptions