Putting a html swf file on the web

Hi this is the last hurdle for me. I created an swf and a HTML output. Localy it works when I double click the html except IE
keeps telling me I need to accept the plug in. Verry annoying. But if I put the HTML and the SWF on the website the HTML is blank no movie.
Can't think what is missing. I cut the HTML down to a minimum as well. Any ideas what would be missing that is needed. Tried the original generated html as well
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>MovieClip</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<div style="border:solid;height:96px;width:144px">
          <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="144" height="96" id="MovieClip" align="middle">
          <param name="movie" value="MovieClip.swf">
     <object type="application/x-shockwave-flash" data="MovieClip.swf" width="144" height="96">
     </object>
          <embed src="MovieClip.swf" width="96" height="144"></embed>
          </object>
</div>
</body>
</html>

No it is not a path issue or a security issue. I have done lots of websites and all paths are relative only.
MovieClip.swf      // My swf
index.html
ImageList.txt      // Text file of images
swfobject.js       // from adobe website
expressInstall.swf // "     "     "      Don't know what its for though?
Folder
/MalawiPics  full of jpg's
In the condtructor I have
myTextLoader.load(new URLRequest("ImageList.txt")); // No path problem here
Top of class
var Dir:String = "MalawiPics/";
If It doesn't display anything is there any try/catch I can put in to detect were the problem is. I have a few in there and they work okay.
.as =
public class MovieSlides extends MovieClip
var imageLoader1:Loader = new Loader();
var imageLoader2:Loader = new Loader();
var myTimer:Timer = new Timer(5000,0);
var TransissionTimer:Timer = new Timer(10,0); // Will start and stop this
var myTextLoader:URLLoader = new URLLoader();
var Counter:int = 1; // Start with second image
var Dir:String = "MalawiPics/";
var MyImages:Array = new Array;
var AlphaValue1:Number = 0.0;
var AlphaValue2:Number = 1;
var AlphaStep:Number = 0.01;
var CurrentPlayer:int = 1;
var TotalImages = 0;
public function MovieSlides()
// constructor code
myTextLoader.addEventListener(Event.COMPLETE, ImagesLoaded);
myTextLoader.load(new URLRequest("ImageList.txt"));
imageLoader1.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, imageLoading);
imageLoader1.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);
imageLoader2.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, imageLoading);
imageLoader2.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);
// var link:URLRequest = new URLRequest();
myTimer.addEventListener(TimerEvent.TIMER, timerListener);
TransissionTimer.addEventListener(TimerEvent.TIMER,MyAlpha);
function timerListener(event:TimerEvent):void
// trace("Test: " + MyImages[0] + " Counter: " + Counter); //  Test: S_DSC_0106.jpg Counter: 0 OK!
// Then I get SecurityError: Error #2000: No active security context. From where?
loadImage(Dir + MyImages[Counter]);
Counter++;
if(Counter > TotalImages -1) // I only have 16 images in array
Counter = 0;
function loadImage(url:String):void
if(CurrentPlayer == 1)
try
imageLoader1.load(new URLRequest(url));
catch  (error:SecurityError)
trace("Sorry that there is a Security error during the loading of an external image. The error is:" + "\n" + error);
if(CurrentPlayer == 2)
try
imageLoader2.load(new URLRequest(url));
catch (error:SecurityError)
trace("Sorry that there is a Security error during the loading of an external image. The error is:" + "\n" + error);
function imageLoading(e:Event):void
// trace("Image now loading ... " + MyImages[Counter] + " " + Counter);
function imageLoaded(e:Event):void // Shared by both Loaders
    if(CurrentPlayer == 1) // For player 1 has been ++
AlphaValue1 = 0.0;
AlphaValue2 = 1.0;
imageLoader1.alpha = AlphaValue1;
imageArea1.addChild(imageLoader1);
//trace("In one");
else
AlphaValue1 = 1.0;
AlphaValue2 = 0.0;
imageLoader2.alpha = AlphaValue2;
imageArea2.addChild(imageLoader2);
//trace("In two");
TransissionTimer.start();
if(CurrentPlayer == 1) // Toggle loaders 1 and 2
CurrentPlayer = 2;
else
CurrentPlayer = 1;
function MyAlpha(event:TimerEvent):void // TransissionTimer
if(CurrentPlayer == 2)
AlphaValue1 += AlphaStep;
AlphaValue2 -= AlphaStep;
//trace("AlphaValue1 " + AlphaValue1);
imageLoader1.alpha = AlphaValue1;
imageLoader2.alpha = AlphaValue2;
if(imageLoader1.alpha == 1)
TransissionTimer.stop();
imageLoader1.alpha = 1;
if(CurrentPlayer == 1)
AlphaValue1 -= AlphaStep;
AlphaValue2 += AlphaStep;
imageLoader1.alpha = AlphaValue1;
imageLoader2.alpha = AlphaValue2;
if(imageLoader2.alpha == 1)
TransissionTimer.stop();
imageLoader2.alpha = 1;
function ImagesLoaded(e:Event):void // Array now full of image list from text file
MyImages = e.target.data.split(/\n/);
for (var i=0;i<MyImages.length;i++)
MyImages[i]=MyImages[i].substring(0,MyImages[i].length-1); // Need to strip End Of Line
TotalImages = MyImages.length -1; //Thinks there is one more !
// trace(MyImages.length); // 5 WRONG
loadImage(Dir + MyImages[0]);
myTimer.start();

Similar Messages

  • BitmapData draw method doesn't work when the project is published as the .swf file of the web applic

    Hi,
            I am totally confused by this strange error. When I tried using the draw method of BitmapData to draw a movieclip symbol of my project, it seems to work fine locally. However, as I uploaded the published .swf file to my web server and launched it as the plugin of my web application, it failed. The source codes as follows,
    function printscreenClicked():void
         //ExternalInterface.call calls a javascript function to print message1
        var bd:BitmapData = new BitmapData(stage.width,stage.height);
        //ExternalInterface.call calls a javascript function to print message2
      bd.draw(stage);
        //ExternalInterface.call calls a javascript function to print message3
    message3 didn't show at all. Instead, the browser console shows "Uncaught Error: Error calling method on NPObject.". My understanding of this error message is that the .swf is calling something crashing, and I believe that bd.draw(stage)is the crashng method call.
    Also, here is my html embed tag:
        <embed src="/tests/videoplayer.swf" id="flash" quality="high" height="510" width="990" scale="exactfit" name="squambido" align="middle" allowscriptaccess="always" allowfullscreen="true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" style="margin: 0px auto;clear:both;position:relative;"/>
    Can someone help me?

    Thank you for your reply.
    I tried stageWidth and stageHeight, but it still doesn't work.
    The draw() methid is triggered when I clicked a screenshot button in my application as follows,
    ExternalInterface.addCallback("printscreenClicked", printscreenClicked);
    function printscreenClicked():void
         //ExternalInterface.call calls a javascript function to print message1
        var bd:BitmapData = new BitmapData(stage.width,stage.height);
        //ExternalInterface.call calls a javascript function to print message2
      bd.draw(stage);
        //ExternalInterface.call calls a javascript function to print message3
    Would you please give me an example of "waiting for Event.RESIZE is good, or just at least Event.ENTER_FRAME"?
    My real purpose in this application is to capture a snapshot of a streaming video. The video is contained in a movieclip object. I tried stage first since BirmapData.draw() doesn't work when drawing the movieclip on the web site. Do you have any suggestion for this situation? Also, is there any good method to find out what happened if the browser have "Uncaught Error: Error calling method on NPObject."?

  • How do I tell the installer to put my html help files in the helpdir symbolic location?

    I used the File>>Print function to create an HTML help file for my application and specified in the VI Properties for the app to use <helpdir>:\ApplicationHelp.HTML as the Help Path. This should pop up the help file when a user selects "Help for This VI" from my custom menu. It works from my development directory because I installed the help files into the help directory manually, but I can't figure out how the get the installer to put the files in the correct location on the target system.  I tried putting them in [LabVIEW 2010 Help] in the Destination View for the Source Files category, but that didn't work.  Anyone know the right way to do this?

    kgarrett88 wrote:
    Hey MrSmith, 
    In LabVIEW 2010 SP1, if open the Project and right click My Computer, you can add the help file as a source. After you have added this file, you can then create an installer. Under the Destination header, you can add your desired destination path. After you have done that, you can go to the Source Files header and add the help file to that destination you created. 
    Hope this helps. Good luck with your application!
    ~kgarrett
    Thank you for the reply! I had already done the steps you suggested, so let me put up some screen shots that should help you understand my issue better. First, I specified the path to the help information on the Documentation screen of the applications Properties:
    Next I had added all the help files (DetectorFT.html and all the .png files) to the source in a virtual folder I named Resources.
    Next, for the release build I specified the files to be Always Included on the Source Files header.
    Next I created a Resource Directory as a destination for the release build.
    Then I specified the Resource directory as the destination for the files for the Release build.
    After creating the Release build, I created an Installer build and told it on the SOurce Files screen to put the help files into the [LabVIEW 2010 Help] directory.
    I had assumed that putting the files in the [LabVIEW 2010 Help] destination would put them into the correct directory when the installer ran.  When I ran the installer on the target system, the ran the application I tried to select the "Help for This VI" tab on the menu, but it was grayed out indicating it could not find the file in the proper location.  So the question I have is, what IS the proper location for the files to be installed to so the the application will find the Help files when it is looking for them at the <helpdir> Symbolic Path location? Thanks again!
    Jim Smith

  • What is needed to view a SWF file on the web?

    Do users just need a version of FlashPlayer?

    If you are placing it in a web page, then you normally have to use special embedding code to have it display.  I don't know if Illustrator provides the necessary code, but if you have Flash, it can generate the code that code in the web page.  Dreamweaver can also do it, though I find it less reliable in doing so.  Otherwise, if you link directly to the swf file it should open in a browser window and fill up the window.

  • Embed .swf file or how to hide your .swf file on the web for protection

    Hi, is it possible to hide your .swf file so that it can not be taken.  Is there a way to protect it?  if someone please post the chain of commands on how to do this.

    http://www.google.co.in/#hl=en&source=hp&q=swf+encryption+software&oq=swf+encryption&aq=2v &aqi=g2g-v8&aql=&gs_sm=e&gs_upl=848l6367l0l9310l22l20l3l2l2l0l324l3334l1.4.7.3l15&bav=on.2 ,or.r_gc.r_pw.&fp=bdf9e41683b1cd0a&biw=1024&bih=609

  • Download file from the web

    Hey,
    I'm struggling to download files from the web.
    The first approach I though of was simply opening the url in Safari, but it would just open the file, not download it.
    Then there is an application called "URL Access Scripting", but I can't figure out how it works.
    That might sound stupid, since it has only a download and an upload command, but they do not work.
    The download function asks for a file specification, what the #$^& is that?
    I tried supplying a file, but to no avail.
    For obvious reasons I can't make an alias of a not yet existing file, so what do I put in there?
    It seems file specification is a deprecated format.
    My last resort was running curl in a shell script, which works, but that feels hackish.
    Is there any good way to do this?

    Hi pepsel,
    Let's take an example. Suppose that you want to download “UltiCalc Mac 2.5” (freeware) from [this Web page|http://www.apple.com/downloads/macosx/games/utilities/ulticalcmac.html]. You can proceed as follows:
    --BEGINNING OF SCRIPT
    set theURL to "http://wsidecar.apple.com/cgi-bin/nph-reg3rdpty2.pl/product=23023&cat=25&platf orm=osx&method=sa/ulticalc_mac.zip"
    set theFile to "/Users/pierre/Desktop/My_download.zip" -- same extension as the file to download
    tell application "URL Access Scripting" to download theURL to theFile
    --END OF SCRIPT
    Of course, you should replace “pierre” with the name of your own home folder.
    Hope it can help.
    Message was edited by: Pierre L.

  • Lately pdf files from the Web do not display properly; what is wrong and how can I fix it so I don't have to use IE?

    I am a professor and frequently need to open pdfs of academic journal articles from electronic databases. Within the last two or three weeks, when I try to do this using Firefox, only the first page of the pdf displays and the rest are blank. In addition, a bar appears across the top with the message "This pdf file may not display properly." So I have had to switch to Internet Explorer to open the files and do my research. What is going on and how can I fix it so I can open pdf files from the Web in Firefox and have them display properly?

    My question is simple - why would you put an application in production that has a lot of bugs? To replace a good and steady Adobe product? My customers will believe that I put a pathetic fallible form online. They are not sophisticated on computers so I just tell them to use IE. Ugh
    I must agree with pgwebgirl!

  • Adobe 8 - Unexpected Corrupt or incorrect file type warning when viewing a PDF file from the Web

    Hi,
    On downloading a PDF file from my web site using Adobe 8 on the client machine I expect the file to open automatically however I receive encounter the "File Download" dialog. It has the following warning message: "The file you are downloading cannot be opened by the default program. It is either corrupted or it has an incorrect file type. As a security precaution, it is recommended that you cancel the download."
    This issue did not occur within previously tested versions of Adobe Reader (e.g. Version 5.1).
    On investigating the issue I discovered the factor that results in Adobe 8 failing to open the file automatically is the Content-Type = "application/pdf; Charset=utf-8". However, if I intercept the response and alter the Content-Type to contain only "application/pdf;" the issue on Adobe 8 does not occur.
    I have even tested when the Content-Type contains an empty Charset (i.e. "application/pdf; Charset=") but this issue still occurs. In addition setting the Charset to other encodings (e.g. "ISO-LATIN-7", "iso-8859-1") the issue occurs.
    QUESTION(s):
    1. Why is it necessary for Adobe 8 when opening PDF files from the web to expect no Charset within the Content-Type?
    2. If this was not an issue within previous versions of Adobe surly this is a bug?
    Since I cannot ensure that the Response's Content-Type does not contain a Charset at all please can someone suggest either a work-around or more importantly a solution to the issue?
    Please Note:-
    1. Within Adobe, Edit -> Preferences -> Internet option it's compulsory for our users to have "Display PDF in browser" ticked!
    2. We cannot prevent a Charset from being present within the Content-Type of the response sent to the client, hence this issue.
    Many Thanks in advance,
    Martin.

    Bill,
    This is exactly the same behavior I observed when I rendered a PDF stored in a database through a .NET page. If I chose to save it, it would open fine after the save, but if I chose to open it in the browser without saving it, I would get the error.
    The problem was not with the PDF or Acrobat. It was with the way I was delivering the PDF. Putting the following code before my binarywrite fixed the issue completely:
    Response.ClearHeaders()
    Response.ClearContent()
    Response.ContentType = "application/octet-stream"
    Response.AddHeader("content-disposition", "attachment; filename=" + saveFilename)
    where saveFileName is the name you want to give the PDF.
    You can use 'inline' instead of 'attachment' above if you just want the PDF to open (no option to save first). You can also use 'pdf' instead of 'octet-stream' (not sure the difference).
    The trouble seems to be that .NET puts some info in the header and/or content by default prior to anything your code says to write. If you don't clear this, IE has an issue with it. Other browsers seem to ignore it.
    Bottomline is that this is an issue the website programmer needs to fix and is not something the user can fix by changing some setting(s).
    I hope this helps.

  • Encode Quicktime file for the web

    I want to Encode a Quicktime file for the web and put it up on my .mac account web site - I have Sorenson Squeeze and Compressor 2....whats the best way and setting for this?

    Really no simple answer. I'd go for one of the H.264 (Quicktime 7) formats. Experiment to suit. Compressor has a few options for this to suit different bandwidths.
    Depends on who you want to be able to watch it, in which case a generic mpeg4 might be better or mpg1 for ensured compatibility.

  • Server won't display flash html/swf files

    I have a set of html/swf files that are "set" exacly like a dozen other nearly identical files that are served correctly by a hosting site but this set only displays a Flash Player upgrade icon on Foxpro and a blank page on IE.  My client Flash Player is the latest and works fine for the other dozen nearly identical files.  Of course the initiating fla file displays correctly with CS5.5 Flash itself.
    I've run out of ideas about what causes the problem and how to fix it.  Any ideas please?

    Thanks for your response.  I've resolved the problem.  This one troublesome file was not "set exactly".  The Publish Settings "output file" field designated a non-existent folder that was a remnant of a deleted folder.  Flash did it's best to sensibly respond.

  • ? Some pdf files from the web will not open, some will.

    Some pdf files from the web will not open, some will. I am using Adobe Reader 10.0.1 on an 8-year old puter I have just upgraded to 2G of RAM. It worked fine before with 256K. When a file won't open I get error message "There is a problem with Adobe Acrobat/Reader. If it is running, please exit and try again (103:103). Have uninstalled and reinstalled all Adobe products several times. Ideas?

    Good luck with that. Adobe10.0.1 is a bug infested BAD program. Look at the posts relating to this issue for the last 3 days. Many, many problems. Support is no help.

  • Unable to load next swf file in the browser.

    Hi,
    Im facing problem while loading the next swf file in the
    browser.
    I have divided my files and named it as 1.swf, 2.swf, and so
    on and i wrote the script 4 calling next swf.
    It is working when i called thru HTML in local system. When i
    upload into my server and called thru php, next file is not
    loading.
    Code in the button : :
    on (release)
    { loadMovie("2.swf", 0);
    Any ideas or suggestion?
    Help would be appreciated.
    thnq.

    I'd suggest looking that these notes
    1045941 - HTTP Client: Incorrect request URI II
    Note 1144511 - Blank screen when starting CRM WebClient or IC WebClient
    1244321 - Simplifying error analysis in CRM WebClient UI
    1242835 - IDES CRM 2007
    1168941 - Simplifying system setup  
    612670 - SSO for local BSP calls using SAP GUI HTML Control

  • IWork locked for maintenance each time I try and delete/download an iWork file from the web.

    I have a major iCloud issue that Apple Support can't solve for me.
    My iCloud account stopped syncing between my devices (iPhone 4s and iPad). I logged onto to iCloud web interface via my MacBook Air 2011 using safari. All os's and browsers are latest version.
    On entering the icloud interface I go to iWork. All my documents are there but not updated since this issue began a few weeks ago. When I try and manage an iWork file via the web interface (delete or download) Apple generates a critical server error message with a long error code to report to apple. When you click send to apple, a second error popup appears saying IWork is now locked for maintenance. I can only open iWork by logging out and on again.
    I was part of the iWork beta and my iCloud account is a migration from mobile me. This issue started when MobileMe finally closed. I have been shuttled around apple tech support and the issue has been escalated to the iCloud team. Apple has even generated a new password for my account so they can access it and try and fix the problem. Indeed when apple techs tried to manage an iWork file in my account from their own system they got the same fatal apple errors coming on their system in the US.
    I can see no similar issue on this support forum. But I live in hope someone has some input as at the moment iCloud, which is extremely buggy on a good day, has crashed completely for me.

    Does anyone have any experience with this problem?
    Here is the error report generated by Apple when this fatal error with iCloud happens:
    It says "An Error Has Occurred Communicating with the Server, The WebApplication must be restarted"
    It then gives an option to send the following iCloud error log to Apple.
    If this makes sense to anyone let me know. It appears to make no sense to Apple. My iCloud is dead as a duck.
    ISFATAL
    true
    TITLE
    An error has occurred communicating with the server.
    MESSAGE
    This web application must be restarted.
    BUTTONONE
    Reload
    ORIGIN
    server
    TYPE
    error
    APPLICATIONNAME
    iwork
    APPLICATIONBUILDNUMBER
    1K.52458
    LOG
    Sun, 15 Jul 2012 20:08:34 GMT:  DEBUG: -->  Request 1:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/item/0?dsid=1081373713&id=E3 EF917746C0245E4E9C24D40C00D94AB0F68D3C,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:34 GMT:  DEBUG: SC.Module: Prefetching module 'cloudkit/error_catcher'.
    Sun, 15 Jul 2012 20:08:34 GMT:  DEBUG: SC.Module: Loading CSS file in 'cloudkit/error_catcher' -> '/applications/iwork/cloudkit/error_catcher/en-us/1K.52458/stylesheet.css'
    Sun, 15 Jul 2012 20:08:34 GMT:  DEBUG: SC.Module: Loading JavaScript file in 'cloudkit/error_catcher' -> '/applications/iwork/cloudkit/error_catcher/en-us/1K.52458/javascript-strings.j s'
    Sun, 15 Jul 2012 20:08:34 GMT:  DEBUG: SC.Module: Module 'cloudkit/error_catcher' finished loading.
    Sun, 15 Jul 2012 20:08:34 GMT:  DEBUG: SC.Module: Module 'cloudkit/error_catcher' was prefetched, not evaluating until needed.
    Sun, 15 Jul 2012 20:08:35 GMT:  DEBUG: <--  Response 1:  200  (776ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:36 GMT:  DEBUG: APPLICATION: Received applicationWillBecomeActive
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: -->  Request 2:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/account?dsid=1081373713&id=E 3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917045,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: <--  Response 2:  200  (191ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: -->  Request 3:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/0?dsid=1081373713&id= E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917246,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:37 GMT:  INFO:  isPaused: false
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: <--  Response 3:  200  (214ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: -->  Request 4:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/281474976710914?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917465,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: -->  Request 5:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/281474976710915?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917468,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: -->  Request 6:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953421570?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917471,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: <--  Response 4:  200  (163ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: -->  Request 7:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/281474976710917?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917633,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: -->  Request 8:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/281474976710918?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917635,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: <--  Response 7:  200  (216ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: -->  Request 9:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/2533274790396293?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917852,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: -->  Request 10:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/2533274790396540?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917855,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: -->  Request 11:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953421801?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917861,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: <--  Response 5:  200  (453ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: -->  Request 12:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953424609?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917864,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: <--  Response 6:  200  (453ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:37 GMT:  DEBUG: -->  Request 13:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3377699720531870?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917867,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 10:  200  (229ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 14:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953424829?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917869,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 9:  200  (241ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 15:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953426869?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917870,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 8:  200  (512ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 16:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/281474976710920?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917925,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 15:  200  (136ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 17:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/281474976710921?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917927,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 14:  200  (145ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 18:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953421571?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917931,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 16:  200  (154ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 19:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953421572?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382917932,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 12:  200  (401ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 20:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953426835?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918091,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 13:  200  (409ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 21:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/2533274790396522?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918092,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 11:  200  (505ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 22:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953455764?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918093,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 18:  200  (215ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 23:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697239395?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918307,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 17:  200  (225ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 24:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953455942?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918309,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 20:  200  (135ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 25:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3377699720534760?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918311,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 21:  200  (139ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 26:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953425217?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918313,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 19:  200  (256ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 27:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953425219?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918314,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 25:  200  (129ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 28:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3377699720534358?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918316,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 23:  200  (144ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 29:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697241548?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918331,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 22:  200  (158ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 30:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953424045?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918332,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 24:  200  (159ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 31:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697239571?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918378,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 26:  200  (171ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 32:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953421904?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918380,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 27:  200  (181ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 33:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697239591?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918381,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 28:  200  (180ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 34:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953421923?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918382,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 30:  200  (170ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 35:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697239620?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918383,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 29:  200  (177ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 36:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953425821?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918384,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 31:  200  (159ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 37:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697239657?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918385,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 32:  200  (210ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 38:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953455239?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918386,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 36:  200  (125ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 39:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697239717?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918387,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 34:  200  (138ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 40:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953425056?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918388,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 33:  200  (147ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 41:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697239782?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918389,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 35:  200  (145ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 42:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953456867?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918390,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: <--  Response 37:  200  (143ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:38 GMT:  DEBUG: -->  Request 43:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697239842?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918394,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 38:  200  (132ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 44:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953425223?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918395,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 39:  200  (135ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 45:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697239905?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918395,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 40:  200  (132ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 46:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953422009?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918396,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 42:  200  (132ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 47:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697239950?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918397,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 41:  200  (140ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 48:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953424440?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918398,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 43:  200  (138ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 49:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240001?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918399,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 44:  200  (134ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 50:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953422060?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918400,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 46:  200  (124ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 51:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240047?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918401,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 45:  200  (136ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 52:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953422120?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918402,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 48:  200  (130ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 53:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240092?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918403,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 47:  200  (140ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 54:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953423827?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918403,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 49:  200  (137ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 55:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240138?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918404,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 50:  200  (133ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 56:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953461224?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918405,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 51:  200  (127ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 57:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240201?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918406,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 52:  200  (127ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 58:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953423600?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918407,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 54:  200  (128ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 59:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240248?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918407,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 53:  200  (139ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 60:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953459667?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918408,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 55:  200  (137ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 61:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240305?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918409,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 56:  200  (128ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 62:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953424291?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918410,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 57:  200  (123ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 63:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240350?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918410,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 58:  200  (124ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 64:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953424548?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918411,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 59:  200  (135ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 65:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240399?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918412,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 60:  200  (133ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 66:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953423479?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918413,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 61:  200  (137ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 67:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240459?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918413,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 62:  200  (132ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 68:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953422279?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918415,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 63:  200  (129ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 69:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240504?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918416,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 64:  200  (126ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 70:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953422382?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918416,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 65:  200  (140ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 71:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240548?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918417,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 66:  200  (140ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 72:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953422432?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918418,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 67:  200  (134ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 73:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240591?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918418,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 68:  200  (135ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 74:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953425137?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918419,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 70:  200  (137ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 75:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240903?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918420,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 69:  200  (152ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 76:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240641?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918421,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 72:  200  (125ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 77:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953424990?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918421,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 71:  200  (139ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 78:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240700?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918422,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 73:  200  (137ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 79:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953422663?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918423,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 74:  200  (142ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 80:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240745?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918424,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 75:  200  (131ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 81:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953460140?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918424,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 76:  200  (134ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 82:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240810?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918425,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 77:  200  (128ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 83:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953426562?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918426,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 78:  200  (136ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 84:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240851?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918427,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 79:  200  (127ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 85:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953422752?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918427,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 81:  200  (121ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 86:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240950?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918428,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 80:  200  (142ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 87:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953423123?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918429,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: <--  Response 82:  200  (132ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:39 GMT:  DEBUG: -->  Request 88:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697240991?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918430,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:40 GMT:  DEBUG: <--  Response 83:  200  (130ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:40 GMT:  DEBUG: -->  Request 89:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953460754?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918430,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:40 GMT:  DEBUG: <--  Response 84:  200  (137ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:40 GMT:  DEBUG: -->  Request 90:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697241032?dsid =1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918431,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:40 GMT:  DEBUG: <--  Response 85:  200  (132ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:40 GMT:  DEBUG: -->  Request 91:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/562949953425341?dsid= 1081373713&id=E3EF917746C0245E4E9C24D40C00D94AB0F68D3C&salt=1342382918432,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 15 Jul 2012 20:08:40 GMT:  DEBUG: <--  Response 86:  200  (135ms),  headers: Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 15 Jul 2012 20:08:40 GMT:  DEBUG: -->  Request 92:   GET to https://p02-ubiquityws.icloud.com:443/ws/1081373713/parent/3659174697241063?dsid =1081373713&id=E3EF917746C0245E4E9C24

  • Can I combine two methods of code to load various SWF files into the same location

    I presently have a set up where a large SWF file brought on the stage by clicking small icons from the scrollable thumbnail menu on the bottom of the stage. All of it happens at the same frame with .xml loading file.
    Here is the code for constructing the ImageLoader(for thumbnails) and SWFLoader for (bigger SWF files)
    [CODE]
       function _xmlCompleteHandler(event:LoaderEvent):void {
       _slides = [];
       var xml:XML = event.target.content; //the XMLLoader's "content" is the XML that was loaded.
       var imageList:XMLList = xml.image; //In the XML, we have <image /> nodes with all the info we need.
       //loop through each <image /> node and create a Slide object for each.
       for each (var image:XML in imageList) {
        _slides.push( new Slide(image.@name,
              image.@description,
              new ImageLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/thumbnails/appThmb_imgs/" + image.@name + ".jpg",
                   name:image.@name + "Thumb",
                   width:_THUMB_WIDTH,
                   height:_THUMB_HEIGHT,
                   //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates
                   //x:260, y:320,//doesn't work here but works in line 69
                   scaleMode:"proportionalInside",
                   bgColor:0x000000,
                   estimatedBytes:13000,
                   onFail:_imageFailHandler}),
              new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",
                    name:image.@name + "Image",
                    width:_IMAGE_WIDTH,
                    height:_IMAGE_HEIGHT,
                    //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates
                    x:0, y:144,
                    scaleMode:"proportionalInside",
                    bgColor:0x000000,
                    estimatedBytes:820000,
                    onFail:_imageFailHandler})
    [/CODE]
    Here is what I would like to resolve. I have another section on the site with an image collage. Every image is a button. I want to script this each image on click to go to the label with ImageLoader and SWFLoader AND TO OPEN A UNIQUE SWF (ASSOCIATED WITH AN IMAGE CLICKED) ON THAT PAGE
    Previously this is what I did to achieve it. I would specify a String:
    [CODE]
    var sourceVar_ProductsPopUps:String;
    [/CODE]
    and then all my buttons will have their unique SWF assigned for them which opens at another labeled section ("prdctsPopUps" in this example):
    [CODE]
    function onClickSumix1PopUp(event:MouseEvent):void {
      sourceVar_ProductsPopUps="prdcts_popups/sumix1-popup_tl.swf";
      gotoAndPlay("prdctsPopUps");
    [/CODE]
    Then in the "prdctsPopUps" section I would specify that var string to bring up SWF files. The value of sourceVar_ProductsPopUps allows to load mulitple SWFs from the previous page.
    [CODE]
    loaderProductPopUps = new SWFLoader(sourceVar_ProductsPopUps,
    [/CODE]
    But I need both of them to be working at the same time. First there is a sectionA from where a user can navigate to specifically targeted SWF to section B's SWFLoader. Then in the section B a user has an option to bring up other SWF files into SWFLoader from the scrollable thumbs menu. Is there a way to combine these two lines into one:
    [CODE]
              new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",
    [/CODE]
    and
    [CODE]
    new SWFLoader(sourceVar_ProductsPopUps,
    [/CODE]

    Thanks for looking into my issue.
    Unfortunatelly I am not so advanced in AS and do not complitely understand the logic of the problem. I will try to decribe my set up more precise.
    So, my main flash file is broken into labeled sections on the main time line.
    One of the sections is "Applications" It has an animated collage of images. Each image acts as a button and once clicked brings a user to a section called "ApplicationsPopUps".
    "ApplicationsPopUps" section has small image thumbnails scroll menu at the bottom of the screen and a large SWFLoader in the middle of the screen. User can click on an image in the thumbnails scroll menu and a corresponding SWF file will load in the middle of the screen in SWFLoader. User can click on left/right navigation buttons and preceeding/following SWF file will load in SWFLoader.
    Everything works fine (with your previous help)
    Here is the working code for the ImageLoader and SWFLoader (please let me know if you need additional code on the page):
    function _xmlCompleteHandler(event:LoaderEvent):void {        _slides = [];       var xml:XML = event.target.content; //the XMLLoader's "content" is the XML that was loaded.        var imageList:XMLList = xml.image; //In the XML, we have  nodes with all the info we need.        //loop through each  node and create a Slide object for each.       for each (var image:XML in imageList) {         _slides.push( new Slide(image.@name,               image.@description,               new ImageLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/thumbnails/appThmb_imgs/" + image.@name + ".jpg",               {                    name:image.@name + "Thumb",                    width:_THUMB_WIDTH,                    height:_THUMB_HEIGHT,                    //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates                    //x:260, y:320,//doesn't work here but works in line 69                   scaleMode:"proportionalInside",                    bgColor:0x000000,                    estimatedBytes:13000,                    onFail:_imageFailHandler}),                 new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",                   {                     name:image.@name + "Image",                     width:_IMAGE_WIDTH,                     height:_IMAGE_HEIGHT,                     //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates                   x:0, y:144,                     scaleMode:"proportionalInside",                     bgColor:0x000000,                     estimatedBytes:820000,                     onFail:_imageFailHandler}) 
    Thumbnails in the section "ApplicationsPopUps" and images in the image collage in the section "Applications" represent the same photographs. So when a user clicks on one of the images in "Applications" section it would be natural that that image will load in the "ApplicationsPopUps" section. However "ApplicationsPopUps" section presently has a working code (as sampled above) It looks too complex for me and I do not know hot to implement this feature. I do want to keep the functionality of the thumbs image scroller in section "ApplicationsPopUps" as it is now. But I want to add that when a user click on an image from section"Applications" then that particular SWF file will load in SWFLoader in section "ApplicationsPopUps" and then the present functionality can as well be exectuted. Presently it just opens on a first image in xml order.
    P.S. I see that you had a download link in your answer. How did you do it? I could also upload a small sample file with my problem. This way you could see all the set up right away.

  • Visual Studio 2013. Viewing a PDF file via the Web Browser control in Windows 8.1

    I am writing a Windows Forms application in which I need to view PDF files via the Web Browser control. When the control is given the Navigate() command, Windows takes over and asks which program I want to open the file with. All was fine with VS 2010 and
    XP. I have un-installed "PDF Complete", which was the default PDF viewer, but I now get asked for an alternative.
    Thanks in advance.
    Mike Saunders

    Hi Mike,
    It seems that we could use Internet Explorer to open a local .PDF file if it has the Adobe Reader. I doubt that the web control would be related to it. Like the MVP's suggset in the following thread, maybe it would be related
    to certain plug-in tools in your side like the adober reader.
    Reference:
    https://social.msdn.microsoft.com/Forums/en-US/a717117e-41ae-4775-9c28-d5a1042b396e/pdf-is-not-opening-in-web-browser-control-in-vbnet?forum=vbgeneral
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • CSS Popup menu export problems

    I have followed all the instructions to export css popup menus from Fireworks CS3. I can see them when I preview in browser from the launch button top right. But when I export the CSS etc. and view the files in Dreamweaver it simply doesn't make any

  • Generate PDF Errors in Internet Explorer

    I have an issue that keeps coming up for many, if not all of my users, including myself, in which a PDF file is created via a report (versions 2.5 & 6). When the pdf loads inside of Adobe Acrobat Reader, I get invalid Token "F" and wrong setcolor pro

  • Permission and sharing

    i have 2 user accounts. both are admin. i decided to do itunes this way. my hubby's ipod is on user2. i can't access his itunes file from my account. i have put his itunes under shared/public folder and set it's get info to share and read and write.

  • Lost pictures when syncing from camera and iPhoto crashed.

    I was syncing my photos (around 900), and iPhoto crashed. They are no longer on my camera and not on iPhoto. Any way to recover it?

  • Network or ip address in LV

    Is there a way for an LV application to determine the network name of the machine it is running on, or failing that, the IP address of the machine it is running on?