Problems with Built in input/output

I just received my new Macbook Pro 13" from the refurb store, everything has worked perfectly except an issue when using an external USB audio interface.
Whilst running Line 6's Gearbox and Logic Pro Studio 8, i can record my guitar/synth through the interface but without any output sound from the internal speakers, yet when listening back after recording i can hear it fine. I've plugged headphones into the rear of the audio interface and sound is present, so in theory plugging an audio cable from the headphone slot into the built in input on my mac should work... no.
Have run through all settings and the main problem seems to be on the Audio/Midi setup page, where when checking the built in input settings it says on the right handside "Output is not available"
I really need some help with this as the main purpose of this new mac is for sound and audio work for college/university.

Good idea Joe.
I went to my system preferences (I'm running Mavericks) and checked.
My internal microphone shows as 'built-in'
My line in shows as 'audio line-in port'
I moved up the input volume a little to be safe
Output volume on full, but there was never any problem playing tracks previously recorded.
I still haven't reinstalled Garage Band, as I wanted to get my podcast done before the end of the month. I exported the cast as it was to an external hard drive, along with small mp3's I had been about to add in (like my jingle) then went to another computer in the house, and recreated the podcast from those mp3's. I was able to add in the introductory audio recording on that other computer and complete my podcast.
I transferred the newly recreated podcast back to my normal laptop (where the problem occurs), checked and published my podcast. I double checks the newly recreated cast (the one I built up on the other machine from mp3's) to see if I could record now  - since I recorded within that particular project on the other machine. I *still was not able to record* on my laptop.
I still cannot create another new project that allows me to audio record. My preferences for the garage band app and op sys  on my laptop, all appear to be set for sound.
I guess I will now break down and reinstall garage band. I think I've reset something in the application that an update doesn't reset.
Thanks for your ideas.
LRS

Similar Messages

  • ASAP PLZ- Having problems with basic pattern input/output

    Hey! I am new to this forum, and I am also new to java =).
    I am writing a program that prompts a user to select 1 pattern out of 5. then the user needs to choose the number of lines he/she wants to display for instace:
    (MENU)
    PATTERN 5
    1
    12
    123
    1234
    USER Selection : Pattern 5
    Choose Number of Lines: 3
    OUTPUT
    Pattern 5
    1
    12
    123
    I have a basic code for a pyramid that deals with leading spaces etc.. but I don't have a clue how to use that method with my program
    MY PROGRAM:
    //Purpose:     Displaying Patterns
    //Input:          User's selection
    //Output:     Messages
    //Author;     Fares
    //Program:     4
    //Date:          9/15/2009
    import java.util.Scanner;
    public class MyPatterns4{
    public static void main(String[] args) {
    // Declarations
    Scanner scan = new Scanner(System.in);
         String outputString;
         int option = 1;
         int lines;
         // Paterns
         String patternOne;
         patternOne = "\n\t Pattern I \n\t 1 \n\t 12 \n\t 123 \n\t 1234 \n\t 12345 \n\t 123456";
         String patternTwo;
         patternTwo= "\n\t Pattern II \n\t 123456 \n\t 12345 \n\t 1234 \n\t 123 \n\t 12 \n\t 1";
         String patternThree;
         patternThree = "\n\t Pattern III \n\t 1 \n\t 21 \n\t 321 \n\t 4321 \n\t 54321 \n\t 654321";
         String patternFour;
         patternFour = "\n\t Pattern IV \n\t 123456 \n\t 12345 \n\t 1234 \n\t 123 \n\t 12 \n\t 1";
         String patternFive;
         patternFive = "\n\t Pattern V \n\t 1 \n\t 12 \n\t 123 \n\t 123456 \n\t 123 \n\t 12";
         // Prompt the user to select a pattern
         outputString = "------------------------------------\n\t1 Display Pattern I\n\t2 Display Pattern II\n\t" +
    "3 Display Pattern III\n\t4 Display Pattern IV\n\t" +
              "5 Display Pattern V\n\t" + "6 Display All Patterns\n\n\n\t" + "0 Quit\n\n\n";
         System.out.println(outputString);
         System.out.print("\tEnter your selection: ");
         option = scan.nextInt();     
         // Keep reading data until the user enters 0
         while (option !=0){     
                   while (option == 6) {
                   outputString = "\nChoose another selections!\n";
                                       System.out.println(patternOne);
                                       System.out.println(patternTwo);
                                       System.out.println(patternThree);
                                       System.out.println(patternFour);
                                       System.out.println(patternFive);
                                       System.out.println(outputString);
              outputString = "--------------------------------------------------\n\t1 Display Pattern I\n\t2 Display Pattern II\n\t" +
    "3 Display Pattern III\n\t4 Display Pattern IV\n\t" +
              "5 Display Pattern V\n\t" + "6 Display All Patterns\n\n\n\t" + "0 Quit\n\n\n";
              System.out.println(outputString);
              System.out.print("\tEnter your selection: ");
              option = scan.nextInt();     
    while (option != 0 && option !=6) {
                   System.out.print("\tEnter number of lines: ");
                   lines = scan.nextInt();     
                   if (lines < 1 || lines > 6) {
    System.out.println("\tYou must enter a number from 1 to 6");
              System.out.print("\tEnter number of lines: ");
                   lines = scan.nextInt();          
              while (lines < 1 || lines > 6) {
    System.out.println("\tYou must enter a number from 1 to 6. The program will now end.");
    System.exit(0);}
                   switch (option) {
                        case 1: // write the code to display Pattern I here
                                       outputString = "\n Choose another selection! \n";
                                       System.out.println(patternOne);
                                       System.out.println(outputString);
                                       break;
                        case 2:      // write the code to display Pattern II here
                                       outputString = "\nChoose another selection!\n";
                                       System.out.println(patternTwo);
                                       System.out.println(outputString);
                                       break;
                        case 3:     // write the code to display Pattern III here
                                       outputString = "\nChoose another selection!\n";
                                       System.out.println(patternThree);          
                                       System.out.println(outputString);
                                       break;
                        case 4:      // write the code to display Pattern IV here
                                       outputString = "\nChoose another selection!\n";
                                       System.out.println(patternFour);
                                       System.out.println(outputString);
                                       break;
                        case 5:      // write the code to display Pattern V here
                                       outputString = "\nChoose another selection!\n";
                                       System.out.println(patternFive);
                                       System.out.println(outputString);
                                       break;
                        case 6: // the code to display all paterns
                                       outputString = "\nChoose another selections!\n";
                                       System.out.println(patternOne);
                                       System.out.println(patternTwo);
                                       System.out.println(patternThree);
                                       System.out.println(patternFour);
                                       System.out.println(patternFive);
                                       System.out.println(outputString);
                                       break;
                        default: outputString = "\nInvalid Selection\n";
                                       System.out.println(outputString);
                                       break;
                   }// end of switch
              outputString = "------------------------------------\n\t1 Display Pattern I\n\t2 Display Pattern II\n\t" +
    "3 Display Pattern III\n\t4 Display Pattern IV\n\t" +
              "5 Display Pattern V\n\t" + "6 Display All Patterns\n\n\n\t" + "0 Quit\n\n\n";
              System.out.println(outputString);
              System.out.print("\tEnter your selection: ");
              option = scan.nextInt();     
    } }// end of while loop
    }// end of main method
    }// end of class

    //Purpose: Displaying Patterns
    //Input: User's selection
    //Output: Messages
    //Author; Fares
    //Program: 4
    //Date: 9/15/2009
    import java.util.Scanner;
    public class MyPatterns4{
    public static void main(String[] args) {
    // Declarations
    Scanner scan = new Scanner(System.in);
    String outputString;
    int option = 1;
    int lines;
    // Paterns
    String patternOne;
    patternOne = "\n\t Pattern I \n\t 1 \n\t 12 \n\t 123 \n\t 1234 \n\t 12345 \n\t 123456";
    String patternTwo;
    patternTwo= "\n\t Pattern II \n\t 123456 \n\t 12345 \n\t 1234 \n\t 123 \n\t 12 \n\t 1";
    String patternThree;
    patternThree = "\n\t Pattern III \n\t 1 \n\t 21 \n\t 321 \n\t 4321 \n\t 54321 \n\t 654321";
    String patternFour;
    patternFour = "\n\t Pattern IV \n\t 123456 \n\t 12345 \n\t 1234 \n\t 123 \n\t 12 \n\t 1";
    String patternFive;
    patternFive = "\n\t Pattern V \n\t 1 \n\t 12 \n\t 123 \n\t 123456 \n\t 123 \n\t 12";
    // Prompt the user to select a pattern
    outputString = "------------------------------------\n\t1 Display Pattern I\n\t2 Display Pattern II\n\t"
    "3 Display Pattern III\n\t4 Display Pattern IV\n\t"
    "5 Display Pattern V\n\t" "6 Display All Patterns\n\n\n\t" "0 Quit\n\n\n";
    System.out.println(outputString);
    System.out.print("\tEnter your selection: ");
    option = scan.nextInt();
    // Keep reading data until the user enters 0
    while (option !=0){
    while (option == 6) {
    outputString = "\nChoose another selections!\n";
    System.out.println(patternOne);
    System.out.println(patternTwo);
    System.out.println(patternThree);
    System.out.println(patternFour);
    System.out.println(patternFive);
    System.out.println(outputString);
    outputString = "--------------------------------------------------\n\t1 Display Pattern I\n\t2 Display Pattern II\n\t"
    "3 Display Pattern III\n\t4 Display Pattern IV\n\t"
    "5 Display Pattern V\n\t" "6 Display All Patterns\n\n\n\t" "0 Quit\n\n\n";
    System.out.println(outputString);
    System.out.print("\tEnter your selection: ");
    option = scan.nextInt();
    while (option != 0 && option !=6) {
    System.out.print("\tEnter number of lines: ");
    lines = scan.nextInt();
    if (lines < 1 || lines > 6) {
    System.out.println("\tYou must enter a number from 1 to 6");
    System.out.print("\tEnter number of lines: ");
    lines = scan.nextInt();
    while (lines < 1 || lines > 6) {
    System.out.println("\tYou must enter a number from 1 to 6. The program will now end.");
    System.exit(0);}
    switch (option) {
    case 1: // write the code to display Pattern I here
    outputString = "\n Choose another selection! \n";
    System.out.println(patternOne);
    System.out.println(outputString);
    break;
    case 2: // write the code to display Pattern II here
    outputString = "\nChoose another selection!\n";
    System.out.println(patternTwo);
    System.out.println(outputString);
    break;
    case 3: // write the code to display Pattern III here
    outputString = "\nChoose another selection!\n";
    System.out.println(patternThree);
    System.out.println(outputString);
    break;
    case 4: // write the code to display Pattern IV here
    outputString = "\nChoose another selection!\n";
    System.out.println(patternFour);
    System.out.println(outputString);
    break;
    case 5: // write the code to display Pattern V here
    outputString = "\nChoose another selection!\n";
    System.out.println(patternFive);
    System.out.println(outputString);
    break;
    case 6: // the code to display all paterns
    outputString = "\nChoose another selections!\n";
    System.out.println(patternOne);
    System.out.println(patternTwo);
    System.out.println(patternThree);
    System.out.println(patternFour);
    System.out.println(patternFive);
    System.out.println(outputString);
    break;
    default: outputString = "\nInvalid Selection\n";
    System.out.println(outputString);
    break;
    }// end of switch
    outputString = "------------------------------------\n\t1 Display Pattern I\n\t2 Display Pattern II\n\t"
    "3 Display Pattern III\n\t4 Display Pattern IV\n\t"
    "5 Display Pattern V\n\t" "6 Display All Patterns\n\n\n\t" "0 Quit\n\n\n";
    System.out.println(outputString);
    System.out.print("\tEnter your selection: ");
    option = scan.nextInt();
    } }// end of while loop
    }// end of main method
    }// end of class

  • External Drive Disk Erase Failed with the Error Input/Output Error

    I have 2 hard drives in an external FW800 enclosure that I am unable to format. When I go to initialize the drives in Disk Utility, I get the following error message: "Disk Erase failed with the error: Input/output error."
    The drives show up in Disk Utility, but I can't repair them (that option is grayed out). Disk Utility correctly ID's the manufacturer of the drives (Maxtor), their size (200gb each), so it's obviously seeing that the drives are there. But it won't let me format them.
    The drives are new, by the way; they don't have any data/files on them. I have Disk Warrior, but the drives don't show up there to be repaired -- probably because they aren't formatted yet.
    After looking at other posts, I tried switching the jumper settings around on the drives -- from Master/Slave to cable select and back again, but it didn't help. I also tried doing a zero erase (even though the drives are new), zapping the PRAM -- again, no help.
    One question I had is whether this could be a bad FW800 cable? The cable is new -- it came with the enclosure, which is an OWC Dual FW 800 enclosure. Other than that, does anyone have any other thoughts about what's causing this? Any help would be greatly appreciated.
    Matthew

    SOLUTION!!!!
    I had the exact same problem. I have the original 20 GB hard drive that came in my Powerbook G4 550MHz and a couple of years ago I traded up for a 60 GB drive and bought a FW/USB enclosure for my original drive to use it to backup my important files. I hadn't backed up in over a year (shame on me!) and I decided maybe I should erase the drive and start from scratch. It was connected via USB.
    At that point DiskUtility gave me the exact same Input/Output error. I tried partitioning the drive into 1 or more partitions but came up with the same error. I couldn't figure out what was wrong so I decided to startup in OS 9.2.2, I did that and let it start up, then plugged in the hard drive and it gave me the standard "This disk is unrecognizable, do you want to eject or erase?" so I clicked Initalize. It worked!
    Just make sure you choose the MacOS Extended option when initializing out of OS 9 (instead of the MacOS Standard option) so it can be read and viewed in OS X.
    If your computer is too new to be able to boot from an OS 9 folder on your drive or an OS 9 CD, then see if a friend or a local library has older computers that are running OS 9 or can boot from it. If not let me know and you can send me your drive and I'll reformat it.
    Kind of crazy...I haven't used the OS 9 partition on my HD in YEARS...was even thinking about erasing it since I don't use any Classic applications anymore...good thing I didn't!
    Nick
    Powerbook G4 550Mhz   Mac OS X (10.4.6)  

  • Problem with SAP Script FAX output

    Hi Friends,
    I have problem with SAP Script Fax output.
    After I issued output using the messge type, the print preview format shows me correct alignments and the right data. But when I go to List display using the menu bar functions from the print preview screen, the list is showing me the right data, but all the alignments at the main window went wrong.
    How do I rectify this problem? I need correct alignments in both form display and list display.

    Hi Sasidhar,
    Have you tried with different fax machine.
    Regards,
    Atish

  • Help -- backup data with disk utility, input/output error.

    My problem started when my MacBook Pro computer (with OsX) froze.  When I restarted, the startup screen stayed on for a long time.  Now, the startup screen stays on for a few seconds and then shuts off.  I do NOT have a recent backup of my data.  I have tried the following:
    Went onto the recovery partition, used Disk Utility.  When I verified the disk, it said it needed repair.  When I tried to repair the disk, it said it could not be repaired.
    I then tried to copy a disk image of the hard drive onto my external hard drive, but it says there is an "input/output error" and won't allow it.  How else can I backup files on my computer at this point?

    Had issue partitioning 2TB my passport drive, got input/output error while using disk utility.
    Here is what I did to get my external disk back
    In Disk Utility
    1) Try to use erase option first, it failed
    2) Try to partition the disk, failed as well.
    3) Then try erase option again, then ...   it worked !!

  • Problem with photos on dvd output

    Not sure where the kink is in my process, exactly, but maybe someone will have run into this before...
    i'm working with hi-res photos in my FCP sequences mixed with HDV video. I've been using the motion tab to resize and everything looks fine in final cut. When i use compressor to output the m2v file using the standard dvd presets, some of the stills have problems on the resulting file. not all of them look bad and it doesn't seem to be discriminating based on resolution of the original image file. I'm sure there's a good explanation, but the photos that get messed up seem to be random. some look great.
    In the .m2v file played directly off of QT, they sort of just look darker, like perhaps they are interlaced strangely or something and the even or odd rows are black. but when i use that file to burn a dvd in dvd studio pro, the resulting image looks crazy messed up. Anyone know how to wrangle this one? Thanks

    In case someone else runs into this problem, i did some extensive chatting with a final cut guru guy and all we could figure out is that i'm experiencing some sort of bug. that it shouldn't have been doing what it was doing. It started happening after my boss upgraded all of the studio software and quicktime to the latest versions. upon closer inspection, what was happening is that some of my photos were missing fields when exported as a qt, some weird byproduct of interlacing. we tried the settings all sorts of different ways and the problem did, indeed, go away when i changed the sequence to progressive, but i didn't want to sacrifice resolution of the rest of the footage just because of the problem with the few photos that were janky, so i found two workarounds that fixed the problem...
    1) using the de-interlace effect on just the photos that were giving me problems. it lowered the resolution, but not enough to make a difference and it looked good.
    2) using the motion blur effect. This filled in the missing fields and i did it at such an unnoticeable setting that it might have even looked better than the pictures i de-interlaced.
    If this jogs someone's brain as to what the actual problem was in the first place and you think it's not just a bug in the system, then i'd be interested to hear how to avoid the problem in the future.

  • Problem with built in Sound

    I have this simple PE NEO-2 motherboard .. and i use the built in sound of the board... the problem i m having is that the sound suddenly disappears during the game.. or other music application... sometime it disappear after 2 min or some time after couple of hours...
    So is my board faulty... or problem with drivers or bios update.??
    Thanks

    k.
    well basiclly, when i had the same sound card on my 865PE Neo 2, it had the same problems. take battlefield Vietnam for example, the jet sounds would disappear after a while and come bak very very choppy, as did the weapon sounds. they actually reversed the sound. playing prom back to front.
    The problem is the card it self. MSI take no pride what so ever in their sound.
    the only way to fix, is either lower sample rate, which resluts in cracklier sound, updating drivers, which sometimes dont work, or just simply upgrading your sound card.
    because of this problem i went out and baught my self a Creative Sound Blaster Audigy2 ZS Platinum pro.
    frankly.
    it i WELL worth the money.
    if you want a budget card but still verry good, look for the Sound Blaster Live range. verry verry good.
    Hope i am of some service to you all

  • Having a problem with built in mic in iMac

    It seems my built in mic is not working on my iMac 2.7 GHz with Intel Core 15.
    I am running OS X 10.9.3
    The first option under Audio Devices is
    "Built-in Microphone" which is set at 2 in/ 0 out, 44100.0 Hz and 2ch-24 bit Integer
    Master volume is all the way to the right,  Value = 1 and dB = 12.  Mute and Thru are unchecked.
    The second option is
    "Built-in Input" which is set at 2 in/ 0 out, 48000.0Hz and 2ch-32bit Float, Hardware rate Converter is set to Automatic. Master slider is unavailable, sliders 1 & 2 are all the way to the right both with Value = 1 and dB = 12.  Mute and Thru are unchecked.
    The speakers are working fine.  I noticed the microphone issue when trying to use Facetime, iMovie and GarageBand.  During Facetime, I can hear my caller, but they cannot hear me.  In GarageBand, I am unable to record vocals.  In iMovie, I am unable to record any voiceovers.
    I have tried plugging in an iRig mic as well, but it does not work on the iMac, but works fine on my iPad Air.
    Can someone Please help me resolve this issue. I am sort of a newbie to Apple desktops.  I have googled until I am blue in the face, and everything suggested has not worked for me.  Apple support has no answers and I am at a loss.  I am begging! ! !
    Thank you in advance for any help.

    See https://discussions.apple.com/message/18712084#18712084
    It's worth resetting the PRAM. See if any other posts there help too, there are a few in simlar posts in the 'More like this' sidebar on the right of the page…

  • Problem with ear bud input.

    I assume it's a problem with my ear phone input, because i just bought a new pair of earbuds, and its only playing out of one ear bud. Do i need to send it in to get it fixed or what?

    If the earbuds work correctly on another device then you have a broken headphone jack and need to send it in for service or take it to the nearest Apple Store.

  • Problems with built-in memory

    Hi everyone!
    I have a blackberry torch 9810, 7.1 bundle.
    I have a problem with my built in memory. ever since I lost my memory stick, ii started using my built in memory since it's a 6.2 GB memory. so ii once plugged my bb into my laptop, and when unplugged, everything just disapeared! picture, music, recordings, everything. It wouldn't apear but ii know it's there because when ii plug into a laptop would say 2.3 GB used. Ii security wiped my phone once and it started working perfectly again. then the problem came back again after a while! How do fix this problem?

    This only happens every-time you connect your blackberry to your laptop everything disappeared correct?

  • Having Problems with built in iSight

    Hi,
    I am having problems with the computer finding my built in iSight camera, I just updated to Mountain Lion and now no applications recognise it.
    I have tried turning it off and on again, and switching to different users, but none can identify a connected camera.
    Help?
    Specs Here
    Thanks
    Frankie

    Hi englishguru,
    Thanks for visiting Apple Support Communities.
    You may find the steps in this article helpful for troubleshooting the camera on your MacBook:
    How to Troubleshoot iSight
    http://support.apple.com/kb/ht2090
    Since you've determined that the behavior isn't user specific, try these steps:
    3. Find out if the computer recognizes the iSight
    Check System Profiler (in the Utilities folder, inside the Applications folder). Under the USB header, check to see if the iSight camera is detected.
    4. Reset SMC or PMU
    Reset your computer's SMC or PMU, and then check System Profiler again. (SMC reset instructions for iMac G5 (iSight), Intel-based iMacs; PMU reset instructions for MacBook and MacBook Pro.)
    If your built-in iSight camera is still not behaving correctly after trying all these steps, you may need to contact Apple or an Apple-Authorized Service Provider for service.
    Regards,
    Jeremy

  • Problems with built-in iSight and iChat! Nothing works!!

    Hello,
    i have a problem with my iChat, iChat said that no camera is connected, but the built-in iSight works with Photobooth!
    I read many Threads here but no solution works,
    there is also an entry in the system profiler USB --> built-in iSight
    I closed all other Aplications like Photobooth, iMovie and so on,
    than i checked the activity monitor.
    I changed the settings in iChat (bandwith) and Quicktime (bandwith)
    I did a PRAM reset...nothing changed!
    I did a SMC reset...also nothing changed!
    The built-in iSight doesnt works with Skype, too!
    Please help me!

    Hey, I hope people aren't getting annoyed by my compulsive posting, but I think this solution needs to be spread, it doesn't get enough publicity:
    the issue is that with 10.5.1, a certain quicktime component that acts as a USB controller for the iSight camera is given an expiry time (i.e., the file is given a feature similar to "trial periods"). This file is then deleted, and iSight ceases to function. All that need be done is to replace the component, by downloading it here:
    http://techslaves.org/index.php?PHPSESSID=q8frk8vf81l0f8echu6mj0plk0&action=tpmo d;dl=item16
    (disregard the version marking, it works for 10.5.2 in the very least)
    Copy it to ~/System/Library/Quicktime, then reboot and it should work.

  • Problems with built-in isight: colours and fuzziness

    I have just bought a new MacBook, however I seem to have quite a problem with my iSight. When I use it (for example, through Photo Booth) I get an image that is very reddish (it seems like the only colours I get are in the range black-orange-red, and no, I'm not using any special effects like Sepia :)) and that is very fuzzy, or even better, foggy.
    Any fix for this? I have had an iMac with an iSight that only showed black and the solution seemed to be to reset the PMU. However, I cannot find information on how to reset the PMU on my new MacBook.

    Any fix for this? I have had an iMac with an iSight
    that only showed black and the solution seemed to be
    to reset the PMU. However, I cannot find information
    on how to reset the PMU on my new MacBook.
    The MB uses a SMU.
    Resetting the System Management Controller >>
    -Bmer
    Mac Owners Support Group
    Join Us @ MacOSG.com
    iTunes: MacOSG Podcast
     An Apple User Group 

  • How to record you screen using quicktime with built in input line and microphone in the same recording?

    i am using th quick time record your screen option and see (when on the audio selction) that you can only either record sound from your computer or from your microphone
    is it possible to have it both on one recording?

    The usual audio-in options on a laptop are None / Built-in Input: Line in / Built-in Microphone: Internal microphone. There's not an option to record system audio unless you've installed a third-party extension such as Soundflower.
    In any event, if you're looking to combine audio inputs, check the Audio MIDI Setup help files (Applications > Utilities > Audio MIDI Setup). Search for "aggregate."

  • UrlParam problem with Captivate 7 Flash output

    Has anyone else had trouble with urlParam in Flash output for Captivate 7?  I can't grab the first variable.  It works fine with HTML5 output.  Here is the script:
    var objCP
    if (typeof window.cp==='undefined') {
    var objCp=document.getElementById('Captivate');
    if(objCp && objCp.cpEIGetValue){
      isHTML5 = false;
    else {
    if(cp.vm && cp.vm.getVariableValue){
      isHTML5 = true;
    var oURL = window.location.href.toString();
    var URLparams = new Array();
    if (oURL.indexOf("?") > 0){
    //var split up by
    var sValues = oURL.split("?");
    var aValues = sValues[1].split("&");
    for (i=0;i<aValues.length;i++){
      //split by = sign
    var sEquals = aValues[i].split("=");
    URLparams[sEquals[0]]=sEquals[1];
    setValue('checksum', URLparams);
    setValue('csid', URLparams);
    setValue('id', URLparams);
    function setValue(id, URLParams){
    if(isHTML5){
      if(typeof window[id] === 'undefined'){
       cp.vm.setVariableValue(id, URLparams[id]);
      } else {
       window[id] =URLparams[id];
      } else {
      objCP.cpEISetValue(id, URLparams[id]);
    function getURLvalue(id, myarray){
    for(var i=0; i<myarray.length;i++){
      if(myarray[i][0] == id) return myarray[i][1];
    return false;

    The script is on the entry of the first slide to set the variables as the slide show begins.  I did publish to both swf and html5.  I'm using the index.html page for the html5 and the other htm page that contains the flash object. I have a php script that detects mobile devices to determine which content is displayed using iframes.  I'm not sure what the multiscreen.html page is... ok I just read about the multiscreen and it looks like that page doesn't detect all devices correctly so I'm better off with the php script that I'm using.  I'm adding the variable string to each url on the index page and also the htm page for embedded flash content.

Maybe you are looking for

  • Ipod touch not recognized by windows 7

    Hello, I know this is a commonly asked issue on these forums. So I will be as thorough as possible. I am using an ipod touch first gen running iOS 3.0. I am trying to sync it up to my computer which is running windows 7 profession service pack 1. I h

  • Multi-byte character encoding issue in HTTP adapter

    Hi Guys, I am facing problem in the multi-byte character conversion. Problem: I am posting data from SAP CRM to third party system using XI as middle ware. I am using HTTP adapter to communicate XI to third party system. I have given XML code as UT-8

  • Customizations for Alert Message in Lead Distribution

    Hi, Experts We have an issue here as When lead is distributed 'Manually' to other 'Employee Responsible' it should send an alert  to the same employee. Tried resolution in following ways: with Action profile , but here unable to select the 'Partner F

  • Related to screen painter

    hi,   if i design screen painter form then how to connect that form to business one 2005B patch 36 regards   sandip adhav

  • Instances when invoking a webservice

    I have some methods in a webservice that I want to be executed one by one (nobody can execute that webservice if is being executed by someone else). I'm trying with syncrhonize There is some way of publishing the webservices or somewhere in AXIS wher