Help I can't transfer video to another computer.

What do I have to do to transfer a flash video to another computer. I published HTML to my usb stick and installed on another computer. When I run the file, the buttons dont work. All they do is flash. When the file is on my original computer, everything works fine.

Here is more detail.
As a test, I have a black square on frame one that links to a blue square on frame 2. I saved the .fla file to my c drive.I exported to html and the page comes up and works exactly as it should. The problem is when I save to my flash drive, its like it doesnt recognize any of the actionscript. If I remove all code and just put in stop(). it flickers back and forth between the 2 frames. Again, when the file is saved and exported to the c drive, it works right.
Below is the HTML that Flash generated.
<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>test</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="#ffffff">
<!--url's used in the movie-->
<!--text used in the movie-->
<!-- 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=10,0,0,0',
  'width', '970',
  'height', '720',
  'src', 'test',
  'quality', 'high',
  'pluginspage', 'http://www.adobe.com/go/getflashplayer',
  'align', 'middle',
  'play', 'true',
  'loop', 'true',
  'scale', 'showall',
  'wmode', 'window',
  'devicefont', 'false',
  'id', 'test',
  'bgcolor', '#ffffff',
  'name', 'test',
  'menu', 'true',
  'allowFullScreen', 'false',
  'allowScriptAccess','sameDomain',
  'movie', 'test',
  '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=10,0,0,0" width="970" height="720" id="test" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="test.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /> <embed src="test.swf" quality="high" bgcolor="#ffffff" width="970" height="720" name="test" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
</object>
</noscript>
</body>
</html>

Similar Messages

  • I can't transfer video form my computer to my ipod

    I can't transfer video form my computer to my ipod. How can I solve this problem?

    Aw, come on, please... ):

  • SOMEBODY PLEASE HELP ME, CAN'T TRANSFER VIDEOS FROM IPOD

    Okay, so, my english assignment is due in like 10 hours, and I CAN'T TRANSFER THE VIDEO FROM MY IPOD TOUCH TO THE COMPUTER. I'VE BEEN DREADING THIS. I recorded my english assignment via my iPod Touch because it has HD Video Recording. The video size turns out to be 694MB so no wonder why it won't copy. BUT PLEASE HELP ME WHAT CAN I DO TO GET IT OFF MY IPOD I NEED TO GET IT INTO A USB D:!

    OH NO!!!!!!!! OH NO OH NO OH NO OH NO~~~~~~~~~!!!!!
    I AM RUNNING WINDOWS XP, AND IT SAYS  "Windows XP cannot import video files larger than 500 MB using Camera and Scanner Wizard." D:!!!!!!!! MINE IS 694. I'M SCREWED!
    It gets to 100% and says error, when I'm using the scanner and camera wizard.
    And when I copy it by dragging it to My Documents it just freezes and does nothing.
    Yes, I can import videos, but I just found out my computers OS cannot import over 500MB D:!
    HELP D:!

  • Can I transfer Photoshop to another computer?

    Several years ago I installed Photoshop Elements 7.0 onto two computers, a Gateway desktop and an Acer laptop. The laptop has recently broken, and is no longer usable. I cannot log on to do anything with the files on its hard drive. Today I bought a new laptop, an HP, and I want to install Photoshop onto it, but I've lost the installation disc. I do, however, have a copy of the product key on the disc. Is it possible for me to transfer the Photoshop I have installed on my Gateway to my new HP? If so, how? I would really like to have Photoshop on the new computer without purchasing a new product.

    I am also unable to access the link. Thank you very much for the effort, though.
    Am I to understand that if I am able to find a link to download a trial version, I will be able to enter the product code I have from my own disc to keep the program installed?
    EDIT: The link works for me now. I am currently downloading the file. Thank you very much for your help, hopefully this will work!

  • I can not transfer video from my sony handycam DCR-HC36 to ivideo in imac

    I can not transfer video from my sony handycam DCR-HC36 to ivideo in imac. Help!  THANK-YOU!!

    Take both back to the salesman in the store and ask him to show you how it works, or, if he can't, then maybe you want to make an exchange or return. Unfortunately, it appears that the salesperson didn't look carefully enough at the camera specs to realize that the MacBook doesn't have the video input needed. You can capture the audio from the camera through the MacBook audio line-in, but that's about it.
    You need some kind of USB TV/tuner input device that has the plugs needed to connect to the camera and import the video into the MacBook. Cameras with FW ports allow direct uploading of the digital video to the computer.
    An external DVD drive that can load the miniDVD's in its tray is another possibility.

  • HOW CAN I TRANSFER VIDEO FILES FROM MY PC TO IPAD MINI VIA ITUNES??? WITHOUT ANY ADDITIONAL DOWNLOADABLE APP

    HOW CAN I TRANSFER VIDEO FILES FROM MY PC TO IPAD MINI USING ITUNES???  i have to google every little thing that has to do with my ipad, why cnt they make it more user friendly???? i have to dl another app just so ican transfer vid files to mu ipad mini. i already converted them to the proper format. i just cant seem to find out how to transfer with with only itunes

    im just new to itunes and ipad mini is my first apple product thats why im really having a hard time with this. i cant transfer the video file to my library... i tried dragging it to the "movies" part in my library but it still doesnt copy to the movie librarry just like how i do it with my songs.. not even the typical list appears.... all it says is movies and studd about the library and itunes, ill post a pic so u can see...

  • How to create backup file on itunes for ipod touch 4g game apps data? Is there a way to do it? I want to try an app on my friend's computer, but you can't add apps on another computer without having your own ipod's data being deleted. Thx for any help!

    How to create backup file on itunes for ipod touch 4g game apps data? Is there a way to do it? I want to try an app on my friend's computer, but you can't add apps on another computer without having your own ipod's data being deleted. Thx for any help!
    I want to know how to create a backup file (because I'm pretty new with itunes, and it's hard to use it for me still), how to store my app data/media/videos, etc. And how I can retrieve them back when I'm done with the app I tried on my friend's computer.
    If anyone can help, it'd be great! Thank you so much!

    Sure-glad to help you. You will not lose any data by changing synching to MacBook Pro from imac. You have set up Time Machine, right? that's how you'd do your backup, so I was told, and how I do my backup on my mac.  You should be able to set a password for it. Save it.  Your stuff should be saved there. So if you want to make your MacBook Pro your primary computer,  I suppose,  back up your stuff with Time machine, turn off Time machine on the iMac, turn it on on the new MacBook Pro, select the hard drive in your Time Capsule, enter your password, and do a backup from there. It might work, and it might take a while, but it should go. As for clogging the hard drive, I can't say. Depends how much stuff you have, and the hard drive's capacity.  As for moving syncing from your iMac to your macbook pro, should be the same. Your phone uses iTunes to sync and so that data should be in the cloud. You can move your iTunes Library to your new Macbook pro
    you should be able to sync your phone on your new MacBook Pro. Don't know if you can move the older backups yet-maybe try someone else, anyways,
    This handy article from Apple explains how
    How to move your iTunes library to a new computer - Apple Support''
    don't forget to de-authorize your iMac if you don't want to play purchased stuff there
    and re-authorize your new macBook Pro
    time machine is an application, and should be found in the Applications folder. it is built in to OS X, so there is nothing else to buy. double click on it, get it going, choose the Hard drive in your Time capsule/Airport as your backup Time Machine  and go for it.  You should see a circle with an arrow on the top right hand of your screen (the Desktop), next to the bluetooth icon, and just after the wifi and eject key (looks sorta like a clock face). This will do automatic backups  of your stuff.

  • How can I transfer video to tv from IPOD Classic ,tried with cable

    How can I transfer video to TV from Ipod Classic..I have tried different settings with Composite cable?

    Good afternoon,   I have a Belkin video cable which I bought from an apple seller in our major store.  I can connect it to IPOD and TV, but have an issue in getting videos to play on TV,  I have connected the charger which came with the cable which then plays on IPOD only.   Dont know what to do next....Dont know about input on TV to composite...   If you can help, much appreciated....Virginia

  • How Can I Transfer Videos to Nokia N73 Music Editi...

    How Can I Transfer Videos to Nokia N73 Music Edition

    you can download nokia multimedia manager
    http://europe.nokia.com/A4423135
    http://forum.nokia.com/main/0,,034-63,00.html
    try these
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Can I transfer applications to another account I have

    Hello
    I want to know if Bsttaotai to Move All My account above with Apple does not use it too much to another account used frequently
    It's where all of the existing applications Purchased
    1 - I do not want to be deducted in my account 2 - do not want to buy it again
    I ask your attention and help me thank you very much
    Let the benefit Alimiolan
    السلام عليكم
    اريد ان اعرف اذا كان بستطاعتي أن انقل جميع تطبيقاتي المجوده في حساب ابل لا أستخدمه كثيراً  لحساب أخر استخدمه كثيراً
    حيث انه التطبيقات الموجوده فيه جميعها مشتراه
    1- لا اريد أن اخسرها 2- لا اريد اشتريها مره أخرى
    ارجوا من عنايتكم مساعدتي ولكم جزيل الشكر
    للمعلومية
    الحساب الذي اريد أن انقل تطبيقاته هو
    إلى حساب هذا ليكون جميع التطبيقات متواجده فيه
    وليكن الإفادة على الايميلين
    <Email Edited by Host>

    No you can't, all content (apps, music etc) that you download from the store will remain tied to the account that downloaded it - you can't transfer them to another account, nor can you merge accounts.

  • Can I transfer videos with iCloud's

    Can I transfer videos with iCloud from one ios device to another?

    Welcome to the Apple Support Communities
    I'm sorry, but you can't transfer videos to iCloud and you can't increase local storage after buying the device. If you want, you can put your videos on Dropbox or a similar cloud service if you don't want them on your iPad storage

  • How can I transfer work from one computer to another?

    How can I transfer work from one computer to another?

    Welcome to the forum.
    I can think of three basic ways to accomplish what you wish to do:
    Use the Project Archiver to archive your Project (and check the box to gather the media files), to an external HDD. Probably the easiest way to do it.
    Copy the Project and ALL media files to an external HDD, but be prepared to relink the media files to the Project, as the drive letter (part of the Absolute Path) will have changed.
    Edit loosely, and Share to an AV file, which will be Imported into a New Project on that second computer. Or, edit VERY tightly, and do the same. I like the first, as removing, replacing Transitions, etc., can be much more difficult, unless that "tight edit" is 100% done.
    Good luck,
    Hunt
    Message was edited by: Bill Hunt to correct formatting

  • How can i transfer videos without losing the sound to my iPhone 3G?

    Hi
    I have bought my iPhone 3G yesterday. I have found out how to transfer music from iTunes however i can't transfer videos. I'm selecting the videos i want to transfer on the videos tab after i chose my iphone from the side menu and pressing apply. iTunes says that its syncing my iphone but it doesnt transfer the videos.
    Lately i have found out a function on the advanced menu for movies as "create iphone or ipod version". When i used that it transfered that video to my iPhone however the sound was completely lost besides that action takes too much time(around 10 mins for a 3 min video and i have a pretty strong computer).
    How can i transfer videos without losing the sound to my iPhone 3G?

    One thing I'd recommend is that you make sure the video/audio you're trying to transfer falls within the guidelines listed in the 'Video' section here:
    http://www.apple.com/iphone/specs.html
    What's most likely happening is that the file is not converted as such so when you try to transfer it, it's wanting to convert it but is unable to for any number of reasons.
    There's software out there that might make this easier for you but I can't recommend anything specifically.

  • HT1535 how can I transfer videos from my itune library to my friend's ipod

    how can I transfer videos that I've made at home, and that I converted so that I could play them on my ipod, which are now in my Itunes library, to my friend's ipod, without erasing all the stuff on his ipod?

    Email the files to the friend to import to their iTunes library.
    Copy the files to a flash drive to be imported to the iTunes library on their computer.
    Burn the files to a CD/DVD.
    Any of a variety of options that in no way involve connecting your friends iPod to your computer.

  • How can i transfer songs from another itunes other than mine

    how can i transfer songs from another itunes other than mine

    Purchases made under 1 Apple ID are permanently associated with that Apple ID and CANNOT be transferred to another Apple ID.  So if you want to keep those songs, you'll need to always have access to your dad's account.
    B-rock

Maybe you are looking for

  • Mail will not delete content of RSS feed in Snow Leopard OSX Mail Update

    I have 2 RSS feeds that subscribe to in Safari and read in Mail. When I delete a link in the feed in Mail and they go to the Trash - all of the links reappear when I relaunch Mail ... the same link reappears in the RSS feed. I have deleted the links,

  • Mv confirmation (URGENT)

    hi all, someone moved critical files on a server by mistake to another directory with the mv command. i need to do something that whenever any user enters the rm or mv command, it should ALWAYS ask for confirmation. I have used alias rm="rm -i" for t

  • Save Large Value code example

    I am trying to import the above example into my APEX online workspace, the file is upload ok and the install application portion of the import completes. The import supporting objects however hangs.... Is anyone else encountering this problem? When i

  • Unable to view files after using "Migration Asst".

    I "migrated" my files from my old G4 to my new MacBookPro. Now I CANT VIEW my old files on my new Mac. I get a msg that says, "The folder "Pictures" can't be opened because you don't have permission to see its contents." The files all have a red-sign

  • Accounting Period is null in R12 GL Budget

    Hello all, I am doing budgeting setup in R12. I Defined the Budgeting and created Organization. While entering the Budget amount, I can select Budget and Budget organization but Accounting Periods from fields having no records. Its saying that, FRM-4