Transition Tip/Help please

Hi Everyone!
Newbie so be gentle.
My site is here:  http://www.simnational.com/
If you note though, unless the pause button is selected, it transitions too fast.  How do I stop it and let the user navigate/drive?  (All pic titles and locations, etc. are in xml).
Secondly, although there are many more pictures it stops at 16.  Why?  Where would I look for direction?
Thanks!

Thanks doghouseJim!  I was typing the above I guess at the same time you replied ...
XML:
<?xml version="1.0" encoding="utf-8"?>
<photos>
<photo>
  <filename>flashmo_600x400_01.jpg</filename>
  <title>Romantic Xerendipitious Bath</title>
  <description>
  Would your Sims like to soak in sweet, succulent, romantic luxury?  Why, of course they would! Now they can, without breaking the bank in this oh so scrumptious bathtub!
  </description>
     <url>http://www.simnational.com</url>
  <target>_parent</target>
</photo>
etc., etc. (more photos)
.</photos>
flashmo_183_photo_rotator.html:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>flashmo_183_photo_rotator</title>
<script language="JavaScript" type="text/javascript">
<!--
//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
function ControlVersion()
var version;
var axo;
var e;
// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
try {
  // version will be set for 7.X or greater players
  axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
  version = axo.GetVariable("$version");
} catch (e) {
if (!version)
  try {
   // version will be set for 6.X players only
   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
   // installed player is some revision of 6.0
   // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
   // so we have to be careful.
   // default to the first public version
   version = "WIN 6,0,21,0";
   // throws if AllowScripAccess does not exist (introduced in 6.0r47) 
   axo.AllowScriptAccess = "always";
   // safe to call for 6.0r47 or greater
   version = axo.GetVariable("$version");
  } catch (e) {
if (!version)
  try {
   // version will be set for 4.X or 5.X player
   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
   version = axo.GetVariable("$version");
  } catch (e) {
if (!version)
  try {
   // version will be set for 3.X player
   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
   version = "WIN 3,0,18,0";
  } catch (e) {
if (!version)
  try {
   // version will be set for 2.X player
   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
   version = "WIN 2,0,0,11";
  } catch (e) {
   version = -1;
return version;
// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
// NS/Opera version >= 3 check for Flash plugin in plugin array
var flashVer = -1;
if (navigator.plugins != null && navigator.plugins.length > 0) {
  if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
   var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
   var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
   var descArray = flashDescription.split(" ");
   var tempArrayMajor = descArray[2].split(".");  
   var versionMajor = tempArrayMajor[0];
   var versionMinor = tempArrayMajor[1];
   var versionRevision = descArray[3];
   if (versionRevision == "") {
    versionRevision = descArray[4];
   if (versionRevision[0] == "d") {
    versionRevision = versionRevision.substring(1);
   } else if (versionRevision[0] == "r") {
    versionRevision = versionRevision.substring(1);
    if (versionRevision.indexOf("d") > 0) {
     versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
   var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
// MSN/WebTV 2.6 supports Flash 4
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
// WebTV 2.5 supports Flash 3
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
// older WebTV supports Flash 2
else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
else if ( isIE && isWin && !isOpera ) {
  flashVer = ControlVersion();
return flashVer;
// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
versionStr = GetSwfVer();
if (versionStr == -1 ) {
  return false;
} else if (versionStr != 0) {
  if(isIE && isWin && !isOpera) {
   // Given "WIN 2,0,0,11"
   tempArray         = versionStr.split(" ");  // ["WIN", "2,0,0,11"]
   tempString        = tempArray[1];   // "2,0,0,11"
   versionArray      = tempString.split(","); // ['2', '0', '0', '11']
  } else {
   versionArray      = versionStr.split(".");
  var versionMajor      = versionArray[0];
  var versionMinor      = versionArray[1];
  var versionRevision   = versionArray[2];
         // is the major.revision >= requested major.revision AND the minor version >= requested minor
  if (versionMajor > parseFloat(reqMajorVer)) {
   return true;
  } else if (versionMajor == parseFloat(reqMajorVer)) {
   if (versionMinor > parseFloat(reqMinorVer))
    return true;
   else if (versionMinor == parseFloat(reqMinorVer)) {
    if (versionRevision >= parseFloat(reqRevision))
     return true;
  return false;
function AC_AddExtension(src, ext)
  if (src.indexOf('?') != -1)
    return src.replace(/\?/, ext+'?');
  else
    return src + ext;
function AC_Generateobj(objAttrs, params, embedAttrs)
  var str = '';
  if (isIE && isWin && !isOpera)
    str += '<object ';
    for (var i in objAttrs)
      str += i + '="' + objAttrs[i] + '" ';
    str += '>';
    for (var i in params)
      str += '<param name="' + i + '" value="' + params[i] + '" /> ';
    str += '</object>';
  else
    str += '<embed ';
    for (var i in embedAttrs)
      str += i + '="' + embedAttrs[i] + '" ';
    str += '> </embed>';
  document.write(str);
function AC_FL_RunContent(){
  var ret =
    AC_GetArgs
    (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     , "application/x-shockwave-flash"
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
function AC_SW_RunContent(){
  var ret =
    AC_GetArgs
    (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
     , null
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
  var ret = new Object();
  ret.embedAttrs = new Object();
  ret.params = new Object();
  ret.objAttrs = new Object();
  for (var i=0; i < args.length; i=i+2){
    var currArg = args[i].toLowerCase();   
    switch (currArg){
      case "classid":
        break;
      case "pluginspage":
        ret.embedAttrs[args[i]] = args[i+1];
        break;
      case "src":
      case "movie":
        args[i+1] = AC_AddExtension(args[i+1], ext);
        ret.embedAttrs["src"] = args[i+1];
        ret.params[srcParamName] = args[i+1];
        break;
      case "onafterupdate":
      case "onbeforeupdate":
      case "onblur":
      case "oncellchange":
      case "onclick":
      case "ondblclick":
      case "ondrag":
      case "ondragend":
      case "ondragenter":
      case "ondragleave":
      case "ondragover":
      case "ondrop":
      case "onfinish":
      case "onfocus":
      case "onhelp":
      case "onmousedown":
      case "onmouseup":
      case "onmouseover":
      case "onmousemove":
      case "onmouseout":
      case "onkeypress":
      case "onkeydown":
      case "onkeyup":
      case "onload":
      case "onlosecapture":
      case "onpropertychange":
      case "onreadystatechange":
      case "onrowsdelete":
      case "onrowenter":
      case "onrowexit":
      case "onrowsinserted":
      case "onstart":
      case "onscroll":
      case "onbeforeeditfocus":
      case "onactivate":
      case "onbeforedeactivate":
      case "ondeactivate":
      case "type":
      case "codebase":
      case "id":
        ret.objAttrs[args[i]] = args[i+1];
        break;
      case "width":
      case "height":
      case "align":
      case "vspace":
      case "hspace":
      case "class":
      case "title":
      case "accesskey":
      case "name":
      case "tabindex":
        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
        break;
      default:
        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
  ret.objAttrs["classid"] = classid;
  if (mimeType) ret.embedAttrs["type"] = mimeType;
  return ret;
// -->
</script>
</head>
<body bgcolor="#000000">
<!--url's used in the movie-->
<!--text used in the movie-->
<!--
loading image 00 of 00
photo title goes here
photo description goes here
-->
<!-- saved from url=(0013)about:internet -->
<script language="JavaScript" type="text/javascript">
AC_FL_RunContent(
  'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
  'width', '1040',
  'height', '640',
  'src', 'flashmo_183_photo_rotator',
  'quality', 'high',
  'pluginspage', 'http://www.adobe.com/go/getflashplayer',
  'align', 'middle',
  'play', 'true',
  'loop', 'true',
  'scale', 'showall',
  'wmode', 'window',
  'devicefont', 'false',
  'id', 'flashmo_183_photo_rotator',
  'bgcolor', '#000000',
  'name', 'flashmo_183_photo_rotator',
  'menu', 'true',
  'allowFullScreen', 'false',
  'allowScriptAccess','sameDomain',
  'movie', 'flashmo_183_photo_rotator',
  'salign', ''
  ); //end AC code
</script>
<noscript>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="1040" height="640" id="flashmo_183_photo_rotator" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="flashmo_183_photo_rotator.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /> <embed src="flashmo_183_photo_rotator.swf" quality="high" bgcolor="#000000" width="1040" height="640" name="flashmo_183_photo_rotator" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
</object>
</noscript>
</body>
</html>
index.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>SimNational Downloads for the Sims 3 Game brought to you by Xerendipity</title>
<meta name="Keywords" content="Simple XML Photo Rotator, Adobe Flash CS3, ActionScript 3" />
<meta name="Description" content="Flash XML Photo Rotator, Adobe Flash CS3, ActionScript 3" />
<style type="text/css">
<!--
body {
margin: 0 0 0 0;
padding: 0 0 0 0;
color: #000;
background-color: #FFF;
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
a:link, a:visited { color: #000; }
-->
</style>
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript">
swfobject.embedSWF("flashmo_183_photo_rotator.swf", "flashmo_template", "940", "800", "9.0.0");
</script>
</head>
<body>
<div align="center">
    <div id="flashmo_template">
        <h1>Flash Template from flashmo.com</h1>
        <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
    </div>
<br /><br />
<a href="http://www.flashmo.com" title="Flash XML Galleries">Flash XML Galleries</a>
</div>
</body>
</html>

Similar Messages

  • Snare tips help. please read...

    hey i was wondering if you guys knew how to make those crazy snare rolls that you hear in a lot of Dance/Techno music. you know in a lot of music like cascada and stuff they have those snares hitting like a million times a second, how do they do that?

    Hello nicholas,
    please clarify the type of result you want to get:
    ...a fast series of single snare hits?
    ...a sound that sounds like hitting multiple snares at the same beat?
    ...snare "rolls" like they do for example in a circus before the final stunt to create an atmosphere of suspense and tension.
    Well: Small snare rolls are provided with many drum kits. Just load the EXS with the Factory Rock Kit and test some drums: There are at least two snare rolls, one longer on the a0 and one shot on the d#1.
    A fast series of single snare hits can be done by looking at the piano roll, zooming in and creating many very short MIDI Events. You could, for example, use 1/32 or 1/64 Notes instead of the standard 1/16.
    Good luck and welcome to the board.
    Fox

  • I made a dumb decision to 'Erase Free Space' on my drive. I now have no free space, I realize because it wrote 0's over all my free space. Is there a way to undo this??? Help please I can't save any documents now! Thanks in advance all, it is truly apprec

    I made a dumb decision to 'Erase Free Space' on my drive. I now have no free space, I realize because it wrote 0's over all my free space. Is there a way to undo this??? Help please I can't save any documents now! Thanks in advance all, it is truly appreciated. how can find the hidden temporary files using the terminal what do i type in?

    It's more likely a failed Erase Free Space, which creates a huge temporary file; that's why it looks like you have no more available drive space. You can recover from this. See these links
    https://discussions.apple.com/message/10938738#10938738
    http://www.macgeekery.com/tips/quickie/recovering_from_a_failed_secure_erase_fre e_space 
    Post back if you need any help with this.

  • HT204053 My kids now each have an itouch, should we all have different apple ids even if I am paying for all itunes and app store purchases? what about icloud? I would like to share itunes and app purchases, but not necessarily photos...help please!

    My kids now each have an itouch, should we all have different apple ids even if I am paying for all itunes and app store purchases? what about icloud? I would like to share itunes and app purchases, but not necessarily photos...help please!

    The recommended solution for most families is to share the same Apple ID for iTunes and App Store purchases, so you can share your purchases, but us different IDs for iMessage, FaceTime and iCloud.  With this arrangement, each person can automatically download purchases made on the shared ID (by turning this feature on in Settings>iTunes & App Stores), while keeping their FaceTime calls, text messages and iCloud data (including photo stream) separated.  There is no requirement that the ID you use for purchasing be the same as the ID you use for these other services.
    This article: http://www.macstories.net/stories/ios-5-icloud-tips-sharing-an-apple-id-with-you r-family/.

  • I am trying to remove a Photo Album from IPad 4 with no success can you help please?

    I am trying to remove a photo album from my new IPad 4, I have tried several things, connected the IPad to computer etc but with no success. Can you help please?

    The links below have instructions for deleting photos.
    iOS and iPod: Syncing photos using iTunes
    http://support.apple.com/kb/HT4236
    iPad Tip: How to Delete Photos from Your iPad in the Photos App
    http://ipadacademy.com/2011/08/ipad-tip-how-to-delete-photos-from-your-ipad-in-t he-photos-app
    Another Way to Quickly Delete Photos from Your iPad (Mac Only)
    http://ipadacademy.com/2011/09/another-way-to-quickly-delete-photos-from-your-ip ad-mac-only
    How to Delete Photos from iPad
    http://www.wondershare.com/apple-idevice/how-to-delete-photos-from-ipad.html
    iPhoto for iOS (iPad): Delete photos from iPhoto
    http://support.apple.com/kb/ph3137
    How to: Batch Delete Photos on the iPad
    http://www.lifeisaprayer.com/blog/2010/how-batch-delete-photos-ipad
    (With iOS 5.1, use 2 fingers)
    How to Delete Photos from iCloud’s Photo Stream
    http://www.cultofmac.com/124235/how-to-delete-photos-from-iclouds-photo-stream/
     Cheers, Tom

  • Trying to find the painting app that was on a ipad2 in the apple store.. Help  please :)

    Trying to find the painting app that was on a ipad2 in the apple store.. Help  please :)

    Ya I was going to call them tomorrow but I wanted to play it tonight lol :)
    But it had color pencils and crayons on the left side of it.. It would show the tips of the colors pencils and you could scroll up and down to choose color..
    Thanks for your help tho :)

  • Blast speed is currently 2 Mbps/9 Mbps on the Comcast Speed Test. Help please!

    I've had the Blast service for quite some time, and have noticed painfully slow internet browsing for the last couple of months. I mean...pull-my-hair-out-slow.  I just did a Comcast speed test and the results were 2.31 Mpbs and 9.01 Mpbs. Um....that would explain things. But not really... as I'd love to see the speeds I'm supposed to have. Even double digits would be nice! I'm trying to run ShaperProbe but I get the error "Servers are busy. Try again later." I've tried a few times. I'll post the results if I can get the scan to work. Power level is 45-46 dBmV and SNR 35-37 Modem: ARRIS Motorola SurfBoard SB6141 DOCSIS 3.0Logs of June 2015 (the most recent, and the logs before that are January): Jun 22 2015 07:07:243-CriticalT05.0SYNC Timing Synchronization failure - Loss of Sync;CM-MAC=b8:16:19:fa:b8:0c;CMTS-MAC=00:1d:70:af:fd:a0;CM-QOS=1.1;CM-VER=3.0;Jun 18 2015 08:04:503-CriticalR02.0No Ranging Response received - T3 time-out;CM-MAC=b8:16:19:fa:b8:0c;CMTS-MAC=00:1d:70:af:fd:a0;CM-QOS=1.1;CM-VER=3.0;Jun 18 2015 07:08:273-CriticalT05.0SYNC Timing Synchronization failure - Loss of Sync;CM-MAC=b8:16:19:fa:b8:0c;CMTS-MAC=00:1d:70:af:fd:a0;CM-QOS=1.1;CM-VER=3.0;Jun 17 2015 23:08:553-CriticalR02.0No Ranging Response received - T3 time-out;CM-MAC=b8:16:19:fa:b8:0c;CMTS-MAC=00:1d:70:af:fd:a0;CM-QOS=1.1;CM-VER=3.0;Jun 16 2015 02:43:065-WarningZ00.0MIMO Event MIMO: Stored MIMO=-1 post cfg file MIMO=-1;CM-MAC=b8:16:19:fa:b8:0c;CMTS-MAC=00:1d:70:af:fd:a0;CM-QOS=1.1;CM-VER=3.0; I would sure appreciate any ideas. I have not contacted tech support yet, although that may be faster??  We'll see.  Thanks in advance for any help!  

    ShaperProbe has not been usable for some time, unfortunately. Check to see if Comcast is reporting an outage for your area by logging in to https://customer.xfinity.com/Secure/MyServices/ or by checking the voice response system at 1-800-Comcast.
    If no outage is reported, see Connection Troubleshooting Tips. If you want to troubleshoot this yourself and still need help, please provide Information Requested for Connection-Related Posts.
    If you are using Wifi it's best to switch to an Ethernet connection if possible while measuring speed and checking the reliability of your connection to Comcast.
    If you'd rather have them do the troubleshooting call them at the phone number on your bill or 1-800-Comcast and have them send a tech out to identify the cause and correct it.
    If the tech finds bad coax, splitters, amplifiers, or connections in your home (even if Comcast originally supplied them) you'll probably have to pay for the visit unless you have their Service Protection Plan (http://www.xfinity.com/spp/, about $5/mo). If the trouble is due to a faulty Comcast modem, eMTA, gateway device, or anything outside your home, you shouldn't be charged.

  • My MacBook Pro is running unbelievable slow! Help please!

    My MacBook is completely up to date, but lately has been running really slow. the fan comes on occasionally but not too often. It does seem to be getting a little hotter then usual, which worries me. I LOVE my Mac and I am very worried about it crashing on me! I was wondering if anyone knew a possible solution, if maybe it's dust causing it? HELP please!
    Thanks you SO much in advance!

    sthul001 wrote:
    My MacBook is completely up to date, but lately has been running really slow. the fan comes on occasionally but not too often. It does seem to be getting a little hotter then usual, which worries me. I LOVE my Mac and I am very worried about it crashing on me! I was wondering if anyone knew a possible solution, if maybe it's dust causing it? HELP please!
    Thanks you SO much in advance!
    User Tip:  How to deal with MacBook Pro and MacBook heat?
    Per your user manual:  Do not operate your MacBook Pro on a pillow or other soft material, as the material can block the airflow vents. Never place anything over the keyboard when operating your MacBook Pro. Never push objects into the ventilation openings.
    From http://http://www.apple.com/support/macbookpro/care/ MacBook Pro: Care, Use, and Safety Information
    For prolonged use, place your MacBook Pro on a flat, stable surface. Do not place your MacBook Pro on your lap or other body surface for extended periods of time. Prolonged body contact can cause discomfort and potentially a burn.

  • I'm new to podcasting help please?

    I have a website that's podcast compatible(powered by moveable type) www.omniversal.net. I have media files(mp3. wav.) already uploaded to my server via FTP. I recently made a podcast through a host server but I want to host it myself.
    What do I need? I read that you can make a xml file but along the way of reading it I got really confused. Perhaps someone here can explain it to me so that I can understand it. The reason I want to host it myself is because my site has my gig space to host my media files. Once I learn how to host it myself I plan on changing the feed url.
    Can someone help please? If this was already posted I apologize. A link to a in depth tutorial or a step through from the advance folks on this topic would be helpful and much appreciated.

    you all have been helpful. I'm excited about what I did tonight and yesterday with all your tips. One last question,
    below is the code I edited....is there anything I missed? And what link do I submit to iTunes to subscribe to my podcast in order to test it? I put the xml file "omniversal.xml" inside the path of weareomniverse.com/audio.
    <?xml version="1.0" encoding="UTF-8"?>
    <rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
    <channel>
    <title>Omniversal Recordings</title>
    <link>http://www.weareomniverse.com/index.html</link>
    <language>en-us</language>
    <copyright>℗ & © 2003 Omniversal Recordings amp; </copyright>
    <itunes:subtitle>OMNi is the crew Omniversal is the label</itunes:subtitle>
    <itunes:author>Omniversal</itunes:author>
    <itunes:summary>OMNi</itunes:summary>
    <description>sounds from the almight 13 that is OMNi</description>
    <itunes:owner>
    <itunes:name>Lunchbox</itunes:name>
    <itunes:email>[email protected]</itunes:email>
    </itunes:owner>
    <itunes:image href="http://www.weareomniverse.com/boards/templates/subBlack/images/logo_phpBB .gif" />
    <itunes:category text="Music">
    <itunes:category text="Blues"/>
    </itunes:category>
    <itunes:category text="Rhythm &amp; Blues"/>
    <item>
    <title>Vivid Strokes Of Reality Sampler</title>
    <itunes:author>The Epoxy</itunes:author>
    <itunes:subtitle>Obsidian Blue and Lunchbox are The Epoxy</itunes:subtitle>
    <itunes:summary>Sampler for the upcoming album by Obsidian Blue(production) and Lunchbox tha Narcoleptic(rhymes)</itunes:summary>
    <enclosure url="http://www.weareomniverse.com/audio/vsorsampler.mp3" length="3062500" type="audio/mpeg" />
    <guid>http://www.weareomniverse.com/audio/vsorsampler.mp3</guid>
    <pubDate>Wed, 25 April 2007 21:39:00 GMT</pubDate>
    <itunes:duration>13:18</itunes:duration>
    <itunes:keywords>obsidian, blue, lunchbox, reality</itunes:keywords>
    </item>
    <item>
    <title>Bush</title>
    <itunes:author>Rell Fleezy</itunes:author>
    <itunes:subtitle>From the forthcoming album Ins and Outs Ins and Outs of the Outs and Ins</itunes:subtitle>
    <itunes:summary>OMNi member and Baltimore native gives his take on the presidency from the eyes of Bush himself</itunes:summary>
    <enclosure url="http://www.weareomniverse.com/audio/bush.mp3" length="2686100" type="audio/mpeg" />
    <guid>http://www.weareomniverse.com/audio/bush.mp3</guid>
    <pubDate>Wed, 25 April 2007 19:00:00 GMT</pubDate>
    <itunes:duration>3:43</itunes:duration>
    <itunes:keywords>politixxx, bush, president, america</itunes:keywords>
    </item>
    <item>
    <title>Dreaded Fist Of The North Star</title>
    <itunes:author>Mercury Waters</itunes:author>
    <itunes:subtitle>Produced by Prophet One</itunes:subtitle>
    <itunes:summary>Free album from Mercury Waters(emcee/OMNi) and Prophet One(production)</itunes:summary>
    <enclosure url="http://www.weareomniverse.com/audio/dreaded.mp3" length="24360649" type="audio/mpeg" />
    <guid>http://www.weareomniverse.com/audio/dreaded.mp3</guid>
    <pubDate>Wed, 25 April 2007 22:00:00 GMT</pubDate>
    <itunes:duration25:22</itunes:duration>
    <itunes:keywords>anime, mercury, prophet, wu-tang</itunes:keywords>
    </item>
    </channel>
    </rss>

  • My Apple desktop computer, 2.4 GHz Intel duo core, OS 10.6.8, stopped recognizing the WD My Book connected via firewire. It works fine with the USB port so it's not the drive. Help please.

    My Apple desktop computer, 2.4 GHz Intel duo core, OS 10.6.8, stopped recognizing the WD My Book connected via firewire. It works fine with the USB port so it's not the drive. Help please?

    It can be the bridge. It could need firmware update. or the FW ports may be an issue. LaCie seemed to invent the phrase/tip 'resetting firewire ports' due to the issues with their drive cases.
    You can try an SMC Reset.
    So far I have avoided name-brand and tend to see them mentioned. Often with a new OS (though you are on 10.6.8, but when 10.6 came out there was a common complaint and thread of users: FW or USB worked but not the other interface).

  • Trying to click and drop photos from iPhoto into an Empty SD card. all I am getting isThe item "IMG_0346.JPG" can't be copied because there isn't enough free space. Card is 156 MB Photo is 1.56MB. Help please.

    Trying to click and drop photos from iPhoto into an Empty SD card. all I am getting isThe item “IMG_0346.JPG” can’t be copied because there isn’t enough free space. Card is 156 MB Photo is 1.56MB. Help please.

    Select the photo(s) in iPhoto and export to a desktop folder (file menu ==> export) - see this user tip for export options - then be sure the card is not locked and in the finder verify available space and if it is adaquate drag that folder to it
    LN

  • Running 10.5.8  Virus is attacking my address book.  Help please.

    running 10.5.8   Virus is attacking my address book. help please.

    No it isn't!
    There are many forms of ‘Malware’ that can affect a computer system, of which ‘a virus’ is but one type, ‘trojans’ another. Using the strict definition of a computer virus, no viruses that can attack OS X have so far been detected 'in the wild', i.e. in anything other than laboratory conditions. The same is not true of other forms of malware, such as Trojans. Whilst it is a fairly safe bet that your Mac has NOT been infected by a virus, it may have another security-related problem, but more likely a technical problem unrelated to any malware threat.
    You may find this User Tip on Viruses, Trojan Detection and Removal, as well as general Internet Security and Privacy, useful:
    https://discussions.apple.com/docs/DOC-2435
    The User Tip (which you are welcome to print out and retain for future reference) seeks to offer guidance on the main security threats and how to avoid them.
    More useful information can also be found here:
    http://www.reedcorner.net/mmg/

  • Sound problems! help please

    My right earbud has not been working for several days, I checked the earbuds and they work-so I know for sure thats not the problem. I just finished restoring it and the right side still doesn't work. I have no idea what to do now, help please! Thanks

    Oh dear i have heard this one before its not good news what has happened it when you plug your earphones into iPod the earphones must obviously touch all connectors and what can happen to the odd person out is the tip of your earphones,
    (The right ear) can push the ipod jack connector forward so now the tip cant reach the connector, yet the bottom and middle connectors cant be pushed in because they are on the side, not the end, this is something you need to take up with apple support if your iPod is still under warrenty

  • My ipad2 shuts down completely after I press the sleep button and does not start.... Help please

    My ipad2 shuts down completely after I press the sleep button and does not start.... Help please
    This started since the latest update!!!!!!!!!!!!!!

    Hi Alkaf,
    Welcome to Apple Support Communities.
    It sounds like your iPad will not turn on. Take a look at the iPhone article linked below, it provides tips that will help resolve power issues for both iPhones and iPads.
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIsand corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 30 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    -Jason

  • ISync for Mac - Help please!

    I have a Nokia N70 and am trying to update my contacts from my Address Book. I have up-to-date OSX 10.4.10 and iSync 2.4 and the phone is being recognised, so a good start! My problem is that my updated Address Book entries are not being transferred, somehow an old version of my Address Book is being used by iSync.
    I've tried restarting the Mac, clearing all contacts from my phone and sync-ing again (repeatedly), but I still get the contacts from the old version of Address Book loaded into the phone.
    I'm not a Mac expert, can anyone smarter than me help please?
    Thanks for your time.
    MacAndy
    PS Any tips on useful software for making the N70 otherwise more compatible with music and any other areas would be very welcome.

    There's an actions folder. It's your hard drive>library>application support>adobe>photoshop elements>8.0>Locale>en_US (this one is different if you aren't in the US)>workflow panels>actions

Maybe you are looking for