Tabbed widget and audio

I've created a tabbed widget with definitions for three separate functions. My intent is to have the user click each tab to hear/see the specified definition. My problem is that the slide progresses at the end of the slide audio (this adio explains how to use the page) and doesn't allow time to click the tabs; do I have to time the slide really long in order to get this to work or is there something I can add to the slide so that it doesn't move forward. The click box renders the widget unusable and simply progresses the slide so that didn't work for me, unless someone knows of another way to use this??? Any ideas are greatly appreciated!!!
I just added a button to go to the next slide but now the tabs go to the next slide when I publish and in the preview, does this mean I can't have more than one widget on a slide? I'm thinking it does.

I just tried it in Windows with exactly the same behavior.
Can someone confirm how this is supposed to work?  Logically, when a user selects one of the accordion options, and the option expands to show the text within it, then the associated audio should play.  In the image below, you see the audio icon associated with the content for one option.  However, in the documentation I found it is very vague about what the audio is assicated with.  If the audio is just associated with the entire object, then the interface below is misleading at best.

Similar Messages

  • Accordion widget and audio

    Using CP 7, I am trying the accordion widget for the first time, and I have it working rather nicely.  Then I added audio to each of the options, to accompany the text that is revealed when the option is chosen, so that as each option is selected, and its text appears, the specific audio would play.  That makes sense and that is how I would expect it to work.  However, as soon as the screen loads one audio plays, and none of the audio clips play when their option is chosen.
    Is this really the way it works?  I would expect no audio until the user clicks one of the options, and then that audio would play.  The way it is working for me makes no sense.  Why have an audio icon for each content area (under each accordion option) if they don't play when the user opens that option?
    As I created content for each of the options, I added an audio clip, using the audio icon specific to each accordion option.  But it appears that only one audio is being used for the entire accordion.
    I read through the string about problems with audio and the accordion, but that issue was different from this.
    The way this is working now is not acceptable, and I will need to throw away everything I have done so far and start over if I can't make this work.

    I just tried it in Windows with exactly the same behavior.
    Can someone confirm how this is supposed to work?  Logically, when a user selects one of the accordion options, and the option expands to show the text within it, then the associated audio should play.  In the image below, you see the audio icon associated with the content for one option.  However, in the documentation I found it is very vague about what the audio is assicated with.  If the audio is just associated with the entire object, then the interface below is misleading at best.

  • Youtube widget and audio widget crashes gmail

    Hi -
    I have my site as a business catalyst site - and on some machines, it crashes gmail when I open youtubes or the audio widget I bought from Musegrid.
    Has anyone had this happen?  And perhaps when I host from GoDaddy or sim, this problem will go away?
    Thanks -
    d

    Hi
    Please share the site url and exact steps you are taking to replicate the issue.
    It should not crash any other browser site.
    Thanks,
    Sanjit

  • Problems centering Tab widget

    Hello,
    I am having incredible problems centering the Tab widget and
    am using an "elastic" web page design, so the Tab widget must
    resize when the browser window resizes (which is easy with standard
    tables).
    When I set the "float" to "left" and the width to 100%
    (without margins or padding) the Tab container size exceeds the
    width of the <div> which is used as its container in a
    classic three-column format.
    To summarize my design issue I have:
    Column 1 (left) which is fixed width
    Column 3 (right) which is fixed width
    Column 2 (uses the Tab widget) is elastic.
    Column 2 with the Tab widget only works visually if I set the
    width to ~"96%" and then is not perfectly centered depending upon
    how the browser window is sized/resized. The Tab widget in column 2
    really acts strangely if the browser is resized to less than 800
    pixels, simply falling down to the bottom of the page as if it is
    wrapping (which I assume it is). It seems that setting the Tab
    width container width to 100% is not possible.
    I am not a CSS expert, but have used it enough over the last
    four years to know that I am stumped.
    Thank you for any help.

    How come the answers to my questions always seems so obvious..?
    Thank you Brad - that made the trick.

  • Pausing swfs and audio in a browser when the tab is out of focus

    I'm trying to code my flash file so that the html will pause all swfs AND audio when the tab is out of foucs.  I found this code on http://frontenddeveloper.net/wiki/index.php?title=JavaScript_and_VBScript_Injection_in_Act ionScript_3 and it works,but not completely. It only pauses the movie clips that are in the Flash file and not any that are exteranlly loaded with audio included.
    How can I adjust it to pause the externally loaded swfs that are loaded to a mc within my main movie clip and the audio OR what should I use in place of this code?  Someone mentioned on a different post that I needed to use a window.onblur funcition, but they didn't give details.
    import flash.display.MovieClip;
    import flash.utils.setTimeout;
    // This is a more "safe than sorry" setting, since multiple domains
    // have entry into my site. Can be removed or hardcoded if you feel
    // secure or insecure, as you see fit.
    flash.system.Security.allowDomain("*");
    // Throw any errors around to make sure somebody actually gets them.
    ExternalInterface.marshallExceptions = true;
    // This is not the most ideal way to toggle animations on and off, but
    // it's thorough, generic, and simple. Iterate all movieclips within
    // clip, shutting them down each in turn. A better, but much more tedious
    // method would be to target specific clips using dotpath notation, telling
    // each in turn to turn off or on depending on what we need.
    // BUT this is just a demo, and what we're really interested in is the
    // event-handling mechanism that actually calls this routine, and not the
    // routine itself.
    function toggleAllClips(doAnim, clip) {
    if ( clip is MovieClip) {
      if (doAnim) {
       clip.play();
      } else {
       clip.stop();
      for (var i = 0; i<clip.numChildren; i++) {
       toggleAllClips(doAnim, clip.getChildAt(i));
    function animOn(e:*=null) {
    toggleAllClips(true, this.mainMC);
    function animOff(e:*=null) {
    toggleAllClips(false, this.mainMC);
    function injectPrep(e:*=null) {
    try {
      ExternalInterface.addCallback("jsanimOn", animOn);
      ExternalInterface.addCallback("jsanimOff", animOff);
    } catch (e) {
      trace(e);
    function injectListeners(e:*=null) {
    try {
      // Object/Embed ID of this movie needs to be inserted into the
      // JavaScript before we actually wrap and send it to the browser:
      var jsfix=js.toString().replace(/xxx/g, ExternalInterface.objectID);
      ExternalInterface.call(jsfix);
    } catch (e) {
      trace(e);
    // Using timeouts ensures the movie is actually done loading before
    // these fire, helping compatibility for a few browser versions.
    setTimeout(injectPrep,0);
    setTimeout(injectListeners,100);
    JAVASCRIPTS
    JavaScript needs to be wrapped in a tag, a cdata, and a closure
    function in order to be wrapped up and sent to the browser.
    Note that an ActionScript function will replace all instances
    of "xxx" with the actual ID used for this SWF.
    We're battling some major bugs and crossbrowser idiosyncrasies
    here:
    1) In Internet Explorer the 'onblur' event is implemented
        incorrectly (as opposed to Firefox/Mozilla browsers). It is
        wrongly fired when focus is switched between HTML elements
        *inside* a window. As a result, we have to use onfocusout
        instead of onblur, and keep track of which element is active.
        If we focusout and the active element is not the previous
        active element, then we haven't actually "blurred" and dont
        want to trigger Flash.
    2) Firefox has problems interpreting both getElementById and
        document["swf"] when dealing with "twicebaked" object/embeds.
        Adobe's method of finding the swf fails to address the fact
        that document["swf"] sometimes returns an array in this
        situation rather than an object ref, and getElementById
        sometimes confuses name and id.
    3) When a window is created in Firefox, it doesn't actually have
        "focus" (event though it appears to) and therefore won't "blur"
        unless you actually click in it first, i.e if you open up a
        window, then immediately send it to the background, it never
        gets the command to halt the flash. So we have to explicitly
        focus the blasted thing to get it to work properly.
    4) Because of irregularities caused by Ajax, the way browsers shut
        down, and other factors, there's a good chance our swf won't
        be there when a blur (or focusout) event occurs. Therefore we
        need an explicit check within the event handler itself.
    5) Finally, we want to wrap everything inside a wrapper-closure
        function, to keep everything safe from being stepped on. Lucky
        us, we have to do this anyways to get everything to fit inside
        a single ExternalInterface.call event.
    var js:XML = <script><![CDATA[
    ( function() {
      var active_element; // tracker for ie fix;
      var bIsMSIE = false;
      // Modified version of Adobe's code resolves a bug in FF:
      function getSWF(movieName) {
        if (navigator.appName.indexOf("Microsoft") != -1) {
          return window[movieName];
        } else {
          // Resolves a bug in FF where an array is sometimes returned instead of a
          // single object when using a nested Object/Embed.
          if(document[movieName].length != undefined){
            return document[movieName][1];
          return document[movieName];
      // Need to check for swf each time we try this because the swf may actually be gone
      // because of ajax or a window closure event. Prevents error dialog from popping up.
      // Future release should check for this condition and then remove the calling event
      // so it doesn't keep triggering.
      function animOff(){
        if (bIsMSIE && (active_element != document.activeElement)) {
          active_element = document.activeElement;
        } else {
          var logoThang = getSWF("xxx");
          if(logoThang){logoThang.jsanimOff();}
      function animOn(){
        if (bIsMSIE && (active_element != document.activeElement)) {
          active_element = document.activeElement;
        } else {
          var logoThang = getSWF("xxx");
          if(logoThang){logoThang.jsanimOn();}
      // Add the listeners. Hear ye, here ye.
      if (typeof window.addEventListener !== "undefined") {
        // Firefox, Mozilla, et al.
        window.addEventListener("blur", animOff, false);
        window.addEventListener("focus", animOn, false);
      } else if (typeof window.attachEvent !== "undefined") {
        // Internet Explorer
        bIsMSIE = true;
        window.attachEvent("onfocus", animOn);
    // Another bug: window.onblur ALWAYS fires in IE, so
    // we have to keep track of what we're clicking using
    // another method:
    active_element = document.activeElement;
    document.attachEvent("onfocusout", animOff);
      // Necessary to trigger toggling in FF if the page hasn't actually been clicked in and the page
      // is sent to the background. Can be commented out if necessary, e.g. if you don't want the page
      // popping to the top or want focus to remain somewhere else like a form field.
      window.focus();
    ]]></script>;

    I added this code and it removes the externally loaded swfs.  I don't want that, I want them to pause and then resume when the tab is back in foucs.  Also, the main code restarts the main movie clip upon refocusing too.
    Added code:
    function toggleAllLoaders(doAnim, loader) {
    if ( loader is Loader) {
      if (doAnim) {
       loader.play();
      } else {
       loader.stop();
      for (var i = 0; i<loader.numChildren; i++) {
       toggleAllLoaders(doAnim, loader.getChildAt(i));
    I added the new function to all of the places that had the "toggleAllClips" function.

  • Internet streamed Video and Audio Lag when I roll over buttons/change tabs

    Well just as the title suggests when I am watching videos online, aka youtube, hulu, etc, everything runs fine. But if I decide that I also want to check my facebook or something similar while watching these movies, the video and audio become choppy, even to the point where my audio will become distorted, and the video will just plain freeze. I'm wondering if this is a computer issue and if so how can I fix it?
    I'm on a late 2007 13" white macbook, with a 2.16 GHz Intel Core 2 Duo and 2GB of RAM. I'm also using Google Chrome, but it also happens on Safari.

    Well just as the title suggests when I am watching videos online, aka youtube, hulu, etc, everything runs fine. But if I decide that I also want to check my facebook or something similar while watching these movies, the video and audio become choppy, even to the point where my audio will become distorted, and the video will just plain freeze. I'm wondering if this is a computer issue and if so how can I fix it?
    I'm on a late 2007 13" white macbook, with a 2.16 GHz Intel Core 2 Duo and 2GB of RAM. I'm also using Google Chrome, but it also happens on Safari.

  • Update to kichat: FAQ 3 - How do I get Video and Audio Chats with PCs ?

    kichat: FAQ 3 - How do I get Video and Audio Chats with PCs ?
    (To Replace http://discussions.apple.com/thread.jspa?threadID=406147 if Accepted. )
    How do I get Video and Audio Chats with PCs ? iChat FAQ 3 (Updated 7/12/2008)
    Applies to iChat 2.x, iChat 3.x and iChat 4.x to any version of AIM on a PC before AIM 6.1
    This piece is designed for those trying to connect Mac to PC for Video and Audio chats. Any iChat version Panther and up.
    Glossary For This FAQ
    This bit is designed for clarity.
    Video is the sending and /or recieving of pictures and sound.
    Audio is the sending and or receiving of sound only.
    One-Way is the ablity to start either an Audio or Video chat from one end to a receipient who can not match your capabilities (or Vice Versa)
    What is needed
    At the Mac end
    A Mac running OS 10.3.x and iChat AV ver 2.1 or 10.4 plus iChat 3 or Leopard and iChat 4
    A DSL/Cable/Fibre (Broadband) connection of at least an up link speed of 256kbs.
    An AIM , @mac.com or MobileMe (@me.com) account name.
    (hosting Multiple person Mac to Mac AV chats requires higher specs and broadband uplink speed).
    At the PC end
    1 PC running windows XP (home or Pro). THIS A MUST
    The AIM Standalone Application, currently at ver. 5.9 at this link. AIM (the Site) now call this version Classic and it cannot be Installed On Vista
    Note: there is also Trillian which has a Pro version for $25 that can also Video and Audio chat. The Basic version just Texts and Audio Chats (AIM does not Audio chat)
    Some need the aimrtc12.exe file from Here Mostly Earlier than XP or Pre Service Pack 2 XP versions of Windows
    Note: It has been noted that this file is now apparently included in Windows XP after Service Pack 2 and above.
    An AIM account/screen name (AOL or Netscape count as well)
    Service Pack 2 info. This info will allow the PC user to enable AIM thorough the XP Firewall. The Windows Firewall did not exist as such before this
    Between both of you.
    At least one camera (Mac end)
    A sound input device (the camera, if it has one is ok)
    Your Buddies screen/account name in each others Buddy Lists
    Other tweaks
    For some people, using AIM on a PC, may also have to make sure their preferences (properties) are set in the AIM Buddy list, for their camera and /or Mic. (Tuning at Message 570)
    This is an icon button lower right on the Buddy List marked "Prefs" (AIM 5.5). This leads to the Preferences. Drop down the list until you read Live Video. Click on this. In the new window that opens click the button that says Tuning Video and Audio. Follow the instructions in the wizard that opens up. Access in AIM 5.9 for this is in the My AIM menu at the top of the Buddy list and then Options
    To Start
    You should now be able to chat to each other.
    If each of you has a camera it can be full Video , as described in the Glossary at the top.
    To start from the Mac end, select (highlight) your Buddy with one click. His camera icon should be dark. Click on the icon near his name or the one at the bottom of the Buddy List. (You do not have to start a text chat).
    To start from the PC end you need to start a text chat, then select the Video icon at the bottom of the chat window.
    If one of you has a camera and the other has a Mic then you will be able to chat One Way but have sound will be both ways.
    To start this type of chat from the Mac end you will have to go to the menu item "Buddies" and drop down to the item "Invite to One Way Video Chat"
    To start this from a PC follow the directions in the pargraph above. You may need to change the tab to the incoming Video at the back of the two to see the Video. These tabs are added when the Video chat starts and the front one normally states you do not have a camera and shows a connection to buy one.
    It is also possible to chat One Way if the other person does not have a Mic: replies will have to be typed in a Text chat.
    No Camera and No Mic will cause iChat to End the chat with "No Data Received for 10 Secs"
    Summary
    For any sort of sound to a PC using AIM, (Talk in PC or Audio in iChat) the Mac will need a camera. The other person can have a Mic and then live chats with sound both ways and Pictures (Video) the other.
    NOTE: At This Time It Is NOT Possible to Audio (sound only) between Mac & PC with AIM & iChat
    Trillian Basic can Audio. Trillian Pro can Video and has a bigger picture and can do Full Screen.
    Another explanation of the set up can be found Here about AIM 5.5 but is transferable.
    And Also here
    My Web Pages particularly all of Page 12: What if your Girlfriend Lives a Long Way Away ? have more information.
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.
    4:24 PM Sunday; December 7, 2008

    kichat: FAQ 3 - How do I get Video and Audio Chats with PCs ?
    (To Replace http://discussions.apple.com/thread.jspa?threadID=406147 if Accepted. )
    How do I get Video and Audio Chats with PCs ? iChat FAQ 3 (Updated 7/12/2008)
    Applies to iChat 2.x, iChat 3.x and iChat 4.x to any version of AIM on a PC before AIM 6.1
    This piece is designed for those trying to connect Mac to PC for Video and Audio chats. Any iChat version Panther and up.
    Glossary For This FAQ
    This bit is designed for clarity.
    Video is the sending and /or recieving of pictures and sound.
    Audio is the sending and or receiving of sound only.
    One-Way is the ablity to start either an Audio or Video chat from one end to a receipient who can not match your capabilities (or Vice Versa)
    What is needed
    At the Mac end
    A Mac running OS 10.3.x and iChat AV ver 2.1 or 10.4 plus iChat 3 or Leopard and iChat 4
    A DSL/Cable/Fibre (Broadband) connection of at least an up link speed of 256kbs.
    An AIM , @mac.com or MobileMe (@me.com) account name.
    (hosting Multiple person Mac to Mac AV chats requires higher specs and broadband uplink speed).
    At the PC end
    1 PC running windows XP (home or Pro). THIS A MUST
    The AIM Standalone Application, currently at ver. 5.9 at this link. AIM (the Site) now call this version Classic and it cannot be Installed On Vista
    Note: there is also Trillian which has a Pro version for $25 that can also Video and Audio chat. The Basic version just Texts and Audio Chats (AIM does not Audio chat)
    Some need the aimrtc12.exe file from Here Mostly Earlier than XP or Pre Service Pack 2 XP versions of Windows
    Note: It has been noted that this file is now just another link to the Standalone application. This might be an error by AIM or a newer version that includes the file.
    An AIM account/screen name (AOL or Netscape count as well)
    Service Pack 2 info. This info will allow the PC user to enable AIM thorough the XP Firewall. The Windows Firewall did not exist as such before this
    Between both of you.
    At least one camera (Mac end)
    A sound input device (the camera, if it has one is ok)
    Your Buddies screen/account name in each others Buddy Lists
    Other tweaks
    For some people, using AIM on a PC, may also have to make sure their preferences (properties) are set in the AIM Buddy list, for their camera and /or Mic. (Tuning at Message 570)
    This is an icon button lower right on the Buddy List marked "Prefs" (AIM 5.5). This leads to the Preferences. Drop down the list until you read Live Video. Click on this. In the new window that opens click the button that says Tuning Video and Audio. Follow the instructions in the wizard that opens up. Access in AIM 5.9 for this is in the My AIM menu at the top of the Buddy list and then Options
    To Start
    You should now be able to chat to each other.
    If each of you has a camera it can be full Video , as described in the Glossary at the top.
    To start from the Mac end, select (highlight) your Buddy with one click. His camera icon should be dark. Click on the icon near his name or the one at the bottom of the Buddy List. (You do not have to start a text chat).
    To start from the PC end you need to start a text chat, then select the Video icon at the bottom of the chat window.
    If one of you has a camera and the other has a Mic then you will be able to chat One Way but have sound will be both ways.
    To start this type of chat from the Mac end you will have to go to the menu item "Buddies" and drop down to the item "Invite to One Way Video Chat"
    To start this from a PC follow the directions in the pargraph above. You may need to change the tab to the incoming Video at the back of the two to see the Video. These tabs are added when the Video chat starts and the front one normally states you do not have a camera and shows a connection to buy one.
    It is also possible to chat One Way if the other person does not have a Mic: replies will have to be typed in a Text chat.
    No Camera and No Mic will cause iChat to End the chat with "No Data Received for 10 Secs"
    Summary
    For any sort of sound to a PC using AIM, (Talk in PC or Audio in iChat) the Mac will need a camera. The other person can have a Mic and then live chats with sound both ways and Pictures (Video) the other.
    NOTE: At This Time It Is NOT Possible to Audio (sound only) between Mac & PC with AIM & iChat
    Trillian Basic can Audio. Trillian Pro can Video and has a bigger picture and can do Full Screen.
    Another explanation of the set up can be found Here about AIM 5.5 but is transferable.
    And Also here
    My Web Pages particularly all of Page 12: What if your Girlfriend Lives a Long Way Away ? have more information.
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.
    9:19 PM Friday; December 12, 2008

  • With newer MacBook Air, sending both video and audio to an LG TV works fine, but I want to send the audio to a sound bar attached to the TV.  Any way to do this?

    I am trying to get audio to play through the soundbar attached to the TV for great sound.  Works fine with Apple TV, but on the MacBook Air, system preferences will only find the TV speakers.  If I change the settings on the TV to external speakers (the soundbar), then I get no sound at all.  The HDMI connection does what it is supposed to do, providing video and audio, but the audio can only go to the TV.  I don't know if you can go backward and send only video through HDMI and then connect to the soundbar through the mini jack ports on the computer and the soundbar.  Any solutions will be appreciated.

    its important to do this in the correct order so the camera will be senced by the Mac and to prevent the Firewire connection from electrical damage:
    power down your Mac
    connect firewire from camera to Mac
    power on camera and insert tape in camera and play back
    power up Mac
    start QuickTime
    File > Preferences > record tab
    video source - select the camera you have
    sound source - select the camera you have
    quality - select device native
    the video should show in the QuicTime window
    a  green line below video will show presence of sound-it will play through the speakers if they are selected in system prefernces
    rewind tape and playback
    click on red button to start recording

  • Spry Accordion - Tabs open and then close after page loads

    I am using a Spry Accordion menu driven from a database.
    The menu opens up during the page load and then closes.
    I'm using SpryAccordion.js 1.6.1
    And to open a preset tab, I'm using:
    <script type="text/javascript">
    <!--
    var Accordion1 = new Spry.Widget.Accordion("Accordion1",{useFixedPanelHeights:false, enableAnimation: false, defaultPanel: 0 });
    //-->
      </script>
    But, all of the tabs open and then close on page load.
    My page:   http://www.texashotjobs.us/00C01.aspx
    Any fix for this??
    Thanks, Ron

    Well to both thanks.  Actually I wasn't disappointed as I had a two part question...
    I tested the 1.6 JS and remembered that I had to modify the 1.4 so that tabs actually would link.  So I reverted back to 1.4.
    So, going to 1.6 fixed the open panel on load but "unfixed" the panel tab from linking.....
    So changing this in the 1.6 js fixed the link issue as well:
    Spry.Widget.Accordion.prototype.onPanelTabClick = function(e, panel)
        if (panel != this.currentPanel)
            this.openPanel(panel);
        else
            this.closePanel();
        if (this.enableKeyboardNavigation)
            this.focus();
    //    if (e.preventDefault) e.preventDefault();
    //    else e.returnValue = false;
    //    if (e.stopPropagation) e.stopPropagation();
    //    else e.cancelBubble = true;
    I t appears everything is working........
    Thanks, Ron Gaddis
    Visual Reality Productions

  • Kichat: FAQ 3 - How do I get Video and Audio Chats with PCs ?

    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software products that may be mentioned in the topic below. Apple encourages you to first seek a solution at Apple Support. The following links are provided as is, with no guarantee of the effectiveness or reliability of the information. Apple does not guarantee that these links will be maintained or functional at any given time. Use the information below at your own discretion.
    How do I get Video and Audio Chats with PCs ? iChat FAQ 3 (Updated 3/4/2009)
    Applies to iChat 2.x, iChat 3.x and iChat 4.x to any version of AIM on a PC before AIM 6.1
    See bottom section on AIM 6.5 and 6.8 on XP and Vista.
    This piece is designed for those trying to connect Mac to PC for Video and Audio chats. Any iChat version Panther and up.
    Glossary For This FAQ
    This bit is designed for clarity.
    Video is the sending and /or receiving of pictures and sound.
    Audio is the sending and or receiving of sound only.
    One-Way is the ability to start either an Audio or Video chat from one end to a recipient who can not match your capabilities (or Vice Versa)
    What is needed
    At the Mac end
    A Mac running OS 10.3.x and iChat AV ver 2.1 or 10.4 plus iChat 3 or Leopard and iChat 4
    A DSL/Cable/Fibre (Broadband) connection of at least an up link speed of 256kbs.
    An AIM , @mac.com or MobileMe (@me.com) account name.
    (hosting Multiple person Mac to Mac AV chats requires higher specs and broadband uplink speed).
    At the PC end
    1 PC running windows XP (home or Pro). THIS A MUST
    The AIM Standalone Application, currently at ver. 5.9 at this link. AIM (the Site) now call this version Classic and it cannot be Installed On Vista
    Note: there is also Trillian which has a Pro version for $25 that can also Video and Audio chat. The Basic version just Texts and Audio Chats (AIM does not Audio chat)
    Some need the aimrtc12.exe file from Here Mostly Earlier than XP or Pre Service Pack 2 XP versions of Windows
    An AIM account/screen name (AOL or Netscape count as well)
    Service Pack 2 info. This info will allow the PC user to enable AIM thorough the XP Firewall. The Windows Firewall did not exist as such before this.
    Between both of you.
    At least one camera (Mac end works better)
    A sound input device (the camera, if it has one is ok)
    Your Buddies screen/account name in each others Buddy Lists
    Other tweaks
    For some people, using AIM on a PC, may also have to make sure their preferences (properties) are set in the AIM Buddy list, for their camera and /or Mic. (Tuning at Message 570)
    This is an icon button lower right on the Buddy List marked "Prefs" (AIM 5.5). This leads to the Preferences. Drop down the list until you read Live Video. Click on this. In the new window that opens click the button that says Tuning Video and Audio. Follow the instructions in the wizard that opens up. Access in AIM 5.9 for this is in the My AIM menu at the top of the Buddy list and then Options
    To Start
    You should now be able to chat to each other.
    If each of you has a camera it can be full Video , as described in the Glossary at the top.
    To start from the Mac end, select (highlight) your Buddy with one click. His camera icon should be dark. Click on the icon near his name or the one at the bottom of the Buddy List. (You do not have to start a text chat).
    To start from the PC end you need to start a text chat, then select the Video icon at the bottom of the chat window.
    If one of you has a camera and the other has a Mic then you will be able to video chat One Way but sound will be both ways.
    To start this type of chat from the Mac end you will have to go to the menu item "Buddies" and drop down to the item "Invite to One Way Video Chat"
    To start this from a PC follow the directions in the paragraph above. You may need to change the tab to the incoming Video at the back of the two to see the Video. These tabs are added when the Video chat starts and the front one normally states you do not have a camera and shows a connection to buy one.
    It is also possible to chat One Way if the other person does not have a Mic: replies will have to be typed in a Text chat.
    No Camera and No Mic will cause iChat to End the chat with "No Data Received for 10 Secs"
    Summary
    PC end gets AIM 5.9 or Trillian Pro.
    The PC end allows the app through the XP Firewall.
    AIM 5.9 needs "Tuning" to Camera and Mic.
    For any sort of sound to a PC using AIM, (Talk in PC or Audio in iChat) the Mac will need a camera. The other person can have a Mic and then live chats with sound both ways and Pictures (Video) One-Way.
    NOTE: At This Time It Is NOT Possible to Audio (sound only) between Mac & PC with AIM & iChat
    Trillian Basic can Audio. Trillian Pro can Video and has a bigger picture and can do Full Screen.
    Another explanation of the set up can be found Here about AIM 5.5 but is transferable to AIM 5.9.
    And Also here
    My Web Pages particularly all of Page 12: What if your Girlfriend Lives a Long Way Away ? have more information.
    <hr>
    AIM 6.5 and 6.8 On Vista and XP
    AIM 5.9 or earlier can not be installed on Vista.
    AIM 6.5 and 6.8 use a new video codec with a description of "Real Time IM"
    AIM have an FAQ page about this
    Below the pics is this quote
    What do I need to use Real-Time IM?
    You and your buddy need to be using AIM® 6.8 or higher to use Real-Time IM. Unfortunately, Real-Time IM does not yet work with older AIM clients, iChat®, or AIM® for Mac®.
    See items 5 through 13 on this page for alternatives including Web Browser based ones.
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.
    This is the 2nd version of this tip. It was submitted on Saturday; April 4, 2009, 9:52 PM by Ralph Jonhs (UK).
    Do you want to provide feedback on this User Contributed Tip or contribute your own? If you have achieved Level 2 status, visit the User Tips Library Contributions forum for more information.

    This is the one I have been wating for
    http://discussions.apple.com/thread.jspa?threadID=406152
    kichat: Look and sound great in iChat!
    Ian's First FAQ
    Also New Today
    http://discussions.apple.com/thread.jspa?threadID=121775
    kichat: FAQ 2 - How to get my router to work with iChat?
    And
    http://discussions.apple.com/thread.jspa?threadID=121665
    kichat: FAQ 1 - What do I need to start in iChat ?
    11:20 PM Thursday; March 16, 2006

  • How do I get Video and Audio Chats with PCs ?:  FAQ 3

    How do I get Video and Audio Chats with PCs ? (Updated 24/11/05) iChat FAQ 3
    Applies to iChat 3.x and iChat 2.x
    This piece is designed for those trying to connect Mac to PC for Video and Audio chats. Any iChat version Panther and up.
    Glossary For This FAQ
    This bit is designed for clarity.
    Video is the sending and /or recieving of pictures and sound.
    Audio is the sending and or receiving of sound only.
    One-Way is the ablity to start either an Audio or Video chat from one end to a receipient who can not match your capabilities (or Vice Versa)
    What is needed
    At the Mac end
    1 Mac running OS 10.3.x and iChat AV ver 2.1 or 10.4 plus iChat 3
    A DSL (Broadband) connection of at least an up link speed of 256kbs.
    An AIM or .Mac.com account name.
    (hosting Multiple person AV chats requires higher specs and broadband uplink speed).
    At the PC end
    1 PC running windows XP (home or Pro). THIS A MUST
    The AIM Standalone Application, currently at ver. 5.9 at this link.
    Note: there is also Trillian Which has a Pro version for $25 that can also Video and Audio chat. The Basic just Texts and Audio Chats (AIM does not Audio chat)
    Some need the file from item 2 Here
    Note: It has been noted that this file is now just another link to the Standalone application. This might be an error by AIM or a newer version that includes the file.
    An AIM account/screen name (AOL or Nescape count as well)
    Service Pack 2 info. This info will allow the PC user to enable AIM thorough the XP Firewall.
    Between both of you.
    At least one camera (Mac end)
    A sound input device (the camera, if it has one is ok)
    Your Buddies screen/account name in each others Buddy Lists
    Other tweaks
    For some people, using AIM on a PC, may also have to make sure their preferences (properties) are set in the AIM Buddy list, for their camera and /or Mic. (Tuning)
    This is an icon button lower right on the Buddy List marked "Prefs" (AIM 5.5). This leads to the Preferences. Drop down the list until you read Live Video. Click on this. In the new window that opens click the button that says Tuning Video and Audio. Follow the instructions in the wizard that opens up. Access in AIM 5.9 for this is in the My AIM menu at the top of the Buddy list and then, Options
    To Start
    You should now be able to chat to each other.
    If each of you has a camera it can be full Video , as described in the Glossary at the top.
    To start from the Mac end, select (highlight) your Buddy with one click. His camera icon should be dark. Click on the icon near his name or the one at the bottom of the Buddy List. (You do not have to start a text chat).
    To start from the PC end you need to start a text chat, then select the Video icon at the bottom of the chat window.
    If one of you has a camera and the other has a Mic then you will be able to chat One Way but have sound returned to you.
    To start this type of chat from the Mac end you will have to go to the menu item "Buddies" and drop down to the item "Invite to One Way Video Chat"
    To start this from a PC follow the directions in the pargraph above. You may need to change the tab to the incoming Video at the back of the two to see the Video. These tabs are added when the Video chat starts and the front one normally states you do not have a camera and shows a connection to buy one.
    It is also possible to chat One Way if the other person does not have a Mic: replies will have to be typed in a Text chat.
    Summary
    For any sort of sound to a PC using AIM, (Talk in PC or Audio in iChat) the Mac will need a camera. The other person can have a Mic and then live chats with sound both ways and Pictures (Video) the other.
    NOTE: At This Time It Is NOT Possible to Audio (sound only) between Mac & PC with AIM & iChat
    Trillian Basic can Audio. Trillian Pro can Video and has a bigger picture and can do Full Screen.
    Another explanation of the set up can be found Here
    My Web Pages
    Happy Chatting.
    Ralph

    Hi Ralph,
    Just a type, you misspelled Netscape...
    An AIM account/screen name (AOL or Nescape count as well)

  • [SOLVED] midi and audio playback interfere with each other?

    Hi, thanks for reading...
    I've recently installed tux guitar and have been trying to use it together with an audio player (vlc player).  However I am only able to get one of these applications generating sound at any one time.
    If I load up a tab file and play it (using midi) from tuxguitar I find I am no longer able to play audio files in vlc player or rhythmbox. 
    After quiting tux guitar I can play audio again.  But I can never get them both to work at the same time.  (Really I just want to switch between applications without having to quit one to use the other.)
    Any advice on how to start debugging this would be greately appreciated. 
    Last edited by drandre (2010-01-04 21:32:48)

    brebs wrote:You're probably playing audio through ALSA's emulation of OSS, which means that dmix won't work. You need to output to *ALSA*.
    I just tested it out myself. First, I experienced the same problem that you did. Mplayer wasn't able to play any audio because is said the sound device was locked or in use or something silly. In Tux Guitar, I disabled the JACK and OSS plugins (and a lot of other plugins) and changed the sound settings to "TuxGuitar Sequencer" and MIDI Port "TiMidity port 0 [128:0]. (I have timidity setup as my MIDI "hardware", like it is described in the Arch wiki) After that (and rebooting), I was able to play a TAB file and an MP3 in mplayer at the same time.
    Let me know if you have any questions about what I did.
    DISCLAIMER: This was a simple test. I don't use (or know how to use) Tux Guitar.

  • Getting Ripped DVD Video and Audio Into Encore

    Do you have previously authored DVDs that need rework?  Do you want to add menus with greater impact and functionality?  Do you want to add some additional program or supplemental material?  Does a client want their product demo DVD to be updated to reflect the capabilities of the new and improved version, but the source files no longer exist?  Using Adobe Encore DVD and a freeware utility called DVD Decrypter (DVDD), you can accomplish this quickly and easily.
    Disclaimer: I do not support the illegal copying and/or distribution of copyrighted works.  The authors and distributors of the software I use have made it clear that they do not support illegal copying.  This guide is intended solely to assist you in ripping and copying DVD video to which you have the legal rights.  Any use of this guide to infringe the copyright of someone else’s intellectual property is prohibited.
    This guide is based on Adobe Encore DVD 1.5.1 and DVD Decrypter version 3.5.4.0.  Let’s Begin!
    Place the DVD to be ripped in your DVD drive and launch DVDD.  If you have more than one drive (e.g., a DVD-ROM and a DVD burner) make sure the one with the disc is selected in the Source dropdown list in the main program window.  Now we need to set up DVDD to extract video in a way that is “Encore friendly”.  This is the toughest part of the whole exercise.  Click on the Tools menu item and choose “Settings…”. 
    Settings
    General Tab: You can leave these set at their defaults if you like.  Personally, I specify a custom Default Destination.  I put my ripped video assets all in one place anyway, and having a default destination means I have one less thing to do when I rip a DVD.
    IFO Mode Tab: Make sure that “Select Main Movie PGC” and “Enable Stream Processing” are checked.  “Uncheck Suspect Cells” is probably a good default safety check.  If your hard disks are formatted as NTFS, set File Splitting to “None”.  I leave “Copy IFO File” checked with the default sub-items checked.  Make sure that “Patch M2V Timecode” is unchecked.  The items in the Create Additional Files section are purely optional.  The author of DVDD has been kind enough to list which programs need which files; notice that Encore DVD isn’t listed as needing any of these extra files.  I do keep the “Stream Information” box checked.  DVDD generates very informative file names, but I like to keep “Include PGC Number” under File Names checked.  Be advised you will get some lengthy file names after DVDD is finished ripping.
    Stream Processing Tab: Since we enabled stream processing in the IFO Mode tab, we need to tell DVDD how to process those streams.  To save yourself time and confusion later, check the “Convert PCM to WAV” box.  Earlier versions of Encore required a Demuxed audio stream and a Raw video stream.  Encore 1.5.1 can accept either type of video stream (Raw or Demuxed) but it does still require a Demuxed audio stream.  However, I still recommend using Raw video and Demuxed audio, if only because it seems to be somewhat faster to process in DVDD.  This workflow is also backward-compatible with earlier versions of Encore.
    So let’s set up the Stream Processing tab now.  In the Demux box, enter “0x8? 0xA? 0xC?”.  This ensures that all audio streams in the selected PGC, whether AC3, PCM or MPEG will be set to Demux.  In the Raw box, enter “0xE0”.  This ensures that the video from the selected PGC will be set to Raw.  
    Additional Notes about the Stream Processing Tab:
    1. For those of you asking the question, “What the heck is a PGC?” it’s just DVD-speak for the titles in a DVD project.  And I’m not talking about the opening or end credits, either; I’m talking about the titles that result, for example, from the timelines you create in an Encore DVD project.  There is a subtle difference between a PGC and a VTS (title set), but that's not important right now.
    2. Happily, recent versions of DVDD create a WAV file after ripping that will import directly into Encore.  Versions prior to 3.2.0.0 would create a WAV file that had to be imported to, and exported from, a sound editing program like Adobe Audition, Goldwave or SoundForge before Encore would recognize it.
    Events Tab: For convenience sake, I recommend setting “Set Program Mode” in the Startup section to “IFO”.  That way, whenever you launch DVDD, it will look familiar to you.  You may safely ignore all of the other tabs in the Settings dialog. 
    Ripping
    1.Under the Input Tab of the main program window, select the PGC you want to rip.  You can only do one at a time.
    2.Switch to the Stream Processing Tab.  Verify that Enable Stream Processing is checked.
    3.Check or uncheck any or all of the video and audio streams that are listed.  Highlight each one to verify that all audio streams are set to Demux and the video stream is set to Raw.
    4.If you didn’t select Default Destination in the General Settings Tab, then you need to tell DVDD where to put the ripped files now.
    5.Click on the big DVD-to-Disk icon.
    6.DVDD will announce, quite loudly, when it has finished.  At that point you can rename the files or import them as is into Encore.
    I hope you find this guide useful and that it helps you get the most out of your investment in Adobe Encore DVD.
    Guide © Jeff Bellune 2005

    OK, I can't tell you what we are doing, you'll have to trust me that it's for a very good cause. I'll simplify the use case as an example. If I can do the following we'll be OK:
    1) Read video/audo files from a DVD that we created
    2) Open these files with the QuickTime Player, click on Export to Apple TV to create an output file.
    I'd rather not do an interim conversion of the video data (like use a 3rd party app to convert to mp4 first and then read into QT, but I'm considering a conversion to DV) because that could seriously hurt the apps effectiveness. I also can't use another app (MPEG Streamclip, HandBrake, VisualHub, etc.) to do the conversion.

  • How do I navigate from a hyperlink on one page to an anchor within the tab widget?

    Hi guys can you please assist me with that issue I am describing in the question: How do I navigate from a hyperlink on one page to an anchor within the tab widget? I assume that it is not working because the tab widget is truly just on one page and anchors work within a page but not a specific tab. Is there a way around that?
    Thanks.

    an interesting question. Anchors work across pages (global) without any problem. Do they work within tabs or any other widgets I haven't tried, but it looks like you have and without success. I can see the temptation for doing this, but if you think about it why would you? Set the anchor on the page next to the tab(s) and hey presto the user needs only click the tab to which the hperlink refers, nothing could be more convenient! Of course, if the user cannot relate the tab to the hyperlink there's a problem. Generally solved by titling (like if the hyperlink is cats, the tab should preferably read cats and not dogs)! It's the only work around i can think of. Hope it helps.

  • How to transfer video and audio files from windows PC to new ipad?

    How to transfer video and audio files from windows PC to new ipad?

    iTunes: Syncing media content to iOS devices and iPod
    Sync with iTunes.
    Connect the iPad to the PC and launch iTunes.
    Click on the iPad name on the left side under devices.
    Click on the Music Tab on the right.
    Click on all of the albums, artists, playlists that you want to sync
    Click on the Sync Music Heading.
    Click on Apply in the lower right corner of iTunes
    Follow the same procedure for Movies.

Maybe you are looking for

  • Data type column size does not match size of values returned

    I've tried searching but couldn't find what I was looking for, sorry if this has been answered or is a duplicate. I am using the (Java) method below to get the column definitions of a table. I am doing this through an ODBC connection (using Oracle OD

  • Cannot insert object error using Power View in Excel 2013

    I created a short table in Excel 2013, positioned the cursor in the table and clicked Inset/Power View Report. I get a status window saying Excel is opening a Power View sheet but then I get a Power View error: Cannot Insert Object. I am able to inse

  • I have a HP G71 Model#G71-329WM. I need to replace the optical drive. What is the part Number?

    My HP G71 Model#G71-329WM will not load a CD or DVD so I need to replace the optical drive. What is the correct Part number? Thanks This question was solved. View Solution.

  • Command line password parameter

    Hi, Is there a way to open an encrypted pdf file and give the password to Adobe Reader via the command line? I know this has been asked a couple of times before but all the answers I could find were at least three years old. If this cannot be done us

  • Reinstall muse - how?

    How do you reinstall Muse if it says it is already installed in the creative cloud manager? I noticed there were two versions indicated in 'Revo Uninstaller Pro' - version 5 and version 6. So, I uninstalled both figuring it would be simple to reinsta