<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<TITLE>Message</TITLE>

<META content="MSHTML 6.00.2800.1170" name=GENERATOR></HEAD>
<BODY 
style="WORD-WRAP: break-word; khtml-nbsp-mode: space; khtml-line-break: after-white-space">
<DIV><SPAN class=125012315-09052006><FONT face=Arial color=#0000ff size=2>Geoff, 
that didn't seem to work. If I run your so_integrationkit.html in IE, only the 
first "Click me" will send to the SWF. Subsequent clicks do nothing. The little 
black button on your SWF does nothing.</FONT></SPAN></DIV>
<DIV><SPAN class=125012315-09052006><FONT face=Arial color=#0000ff 
size=2></FONT></SPAN> </DIV>
<DIV><SPAN class=125012315-09052006><FONT face=Arial color=#0000ff size=2>Under 
Firefox, it works FINE. </FONT></SPAN></DIV>
<DIV><SPAN class=125012315-09052006><FONT face=Arial color=#0000ff 
size=2></FONT></SPAN> </DIV>
<DIV><SPAN class=125012315-09052006><FONT face=Arial color=#0000ff size=2>I 
tried this under two updated versions of IE that I currently have 
available:</FONT></SPAN></DIV>
<DIV><SPAN class=125012315-09052006><FONT face=Arial color=#0000ff 
size=2></FONT></SPAN> </DIV>
<DIV><SPAN class=125012315-09052006><FONT face=Arial color=#0000ff size=2>IE 
version:6.0.2800.1106.xpsp1.020828-1920 (64-bit cipher)</FONT></SPAN></DIV>
<DIV><SPAN class=125012315-09052006><FONT face=Arial color=#0000ff 
size=2>Update</FONT></SPAN><SPAN class=125012315-09052006><FONT face=Arial 
color=#0000ff size=2> versions:;SP1; Q324929;Q810847;</FONT></SPAN></DIV>
<DIV><SPAN class=125012315-09052006><FONT face=Arial color=#0000ff 
size=2></FONT></SPAN> </DIV>
<DIV><SPAN class=125012315-09052006>
<DIV><SPAN class=125012315-09052006><FONT face=Arial color=#0000ff size=2>IE 
version:6.0.2800.1106 (128-bit cipher)</FONT></SPAN></DIV>
<DIV><SPAN class=125012315-09052006></SPAN><SPAN class=125012315-09052006><FONT 
face=Arial color=#0000ff size=2>Update</FONT></SPAN><SPAN 
class=125012315-09052006><FONT face=Arial color=#0000ff 
size=2> versions:;SP1; Q813489; Q330994; Q817171;</FONT></SPAN></DIV>
<DIV><SPAN class=125012315-09052006><FONT face=Arial color=#0000ff 
size=2></FONT></SPAN> </DIV></SPAN></DIV>
<BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
  <DIV></DIV>
  <DIV class=OutlookMessageHeader lang=en-us dir=ltr align=left><FONT 
  face=Tahoma size=2>-----Original Message-----<BR><B>From:</B> Geoff Stearns 
  [mailto:geoff@deconcept.com] <BR><B>Sent:</B> May 9, 2006 10:06 
  AM<BR><B>To:</B> swfobject@lists.deconcept.com<BR><B>Subject:</B> Re: 
  [SWFObject] FO Integration Kit problems<BR><BR></FONT></DIV>i made this change 
  to the swfobject jskit, want to give it a try?
  <DIV><BR class=khtml-block-placeholder></DIV>
  <DIV><FONT class=Apple-style-span size=3><SPAN class=Apple-style-span 
  style="FONT-SIZE: 12px"><A 
  href="http://blog.deconcept.com/code/intkit/swfobject_jskit.zip">http://blog.deconcept.com/code/intkit/swfobject_jskit.zip</A></SPAN></FONT></DIV>
  <DIV><BR>
  <DIV>
  <DIV>On May 9, 2006, at 9:40 AM, Keith Takayesu wrote:</DIV><BR 
  class=Apple-interchange-newline>
  <BLOCKQUOTE type="cite">
    <DIV style="MARGIN: 0px">Geoff-</DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MARGIN: 0px">I did some experiments by going back to the old 
    (2005/06/16) version of FlashJS, and got it working with my SWF. By doing 
    so, I found a weird problem that seemed to be the one I was having. All of 
    my lcIDs ended up the same! Even under Firefox, too.</DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MARGIN: 0px">The code was doing this:</DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MARGIN: 0px">var lcId1 = new Date().getTime();</DIV>
    <DIV style="MARGIN: 0px">var flashProxy = new FlashProxy(lcId1, 
    "/swf/JavaScriptFlashGateway.swf");</DIV>
    <DIV style="MARGIN: 0px">var lcId2 = new Date().getTime();</DIV>
    <DIV style="MARGIN: 0px">var flashProxy2 = new FlashProxy(lcId2, 
    "/swf/JavaScriptFlashGateway.swf");</DIV>
    <DIV style="MARGIN: 0px">var lcId3 = new Date().getTime();</DIV>
    <DIV style="MARGIN: 0px">var flashProxy3 = new FlashProxy(lcId3, 
    "/swf/JavaScriptFlashGateway.swf");</DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MARGIN: 0px">The only way I could fix it was by adding a unique 
    number to the end of each lcId, like:</DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MARGIN: 0px">var lcId1 = new Date().getTime();</DIV>
    <DIV style="MARGIN: 0px">var flashProxy = new FlashProxy(lcId1, 
    "/swf/JavaScriptFlashGateway.swf");</DIV>
    <DIV style="MARGIN: 0px">var lcId2 = new Date().getTime()+1;</DIV>
    <DIV style="MARGIN: 0px">var flashProxy2 = new FlashProxy(lcId2, 
    "/swf/JavaScriptFlashGateway.swf");</DIV>
    <DIV style="MARGIN: 0px">var lcId3 = new Date().getTime()+2;</DIV>
    <DIV style="MARGIN: 0px">var flashProxy3 = new FlashProxy(lcId3, 
    "/swf/JavaScriptFlashGateway.swf");</DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MARGIN: 0px">Anyways, I'm not sure if this could have anything 
    to do with the FO Integration Kit problem, but perhaps it's a clue? Although 
    I'm not convinced that your class would end up with the same UID generated 
    each time.</DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MARGIN: 0px">Later,</DIV>
    <DIV style="MARGIN: 0px">Keith</DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MARGIN: 0px">-----Original Message-----</DIV>
    <DIV style="MARGIN: 0px">From: Geoff Stearns [<A 
    href="mailto:geoff@deconcept.com">mailto:geoff@deconcept.com</A>]<SPAN 
    class=Apple-converted-space> </SPAN></DIV>
    <DIV style="MARGIN: 0px">Sent: May 8, 2006 12:40 PM</DIV>
    <DIV style="MARGIN: 0px">To: <A 
    href="mailto:swfobject@lists.deconcept.com">swfobject@lists.deconcept.com</A></DIV>
    <DIV style="MARGIN: 0px">Subject: Re: [SWFObject] FO Integration Kit 
    problems</DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MARGIN: 0px">hey, some people on the osflash list were 
    mentioning issues with this <SPAN 
    class=Apple-converted-space> </SPAN></DIV>
    <DIV style="MARGIN: 0px">- they said in IE it was only sending calls once 
    (or something along <SPAN class=Apple-converted-space> </SPAN></DIV>
    <DIV style="MARGIN: 0px">those lines)</DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MARGIN: 0px">have you tested this in firefox too? do you get 
    different results?</DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MARGIN: 0px">i'm trying to set aside some time tonight to have a 
    look and see <SPAN class=Apple-converted-space> </SPAN></DIV>
    <DIV style="MARGIN: 0px">where i broke it - it's possible i just broke it 
    when i did the <SPAN class=Apple-converted-space> </SPAN></DIV>
    <DIV style="MARGIN: 0px">rename from flashobject to swfobject...</DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MARGIN: 0px">On May 8, 2006, at 10:51 AM, Keith Takayesu 
    wrote:</DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <BLOCKQUOTE type="cite">
      <DIV style="MARGIN: 0px">Geoff -</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MARGIN: 0px">Thanks for the tip about local testing, however, 
      it didn't make a<SPAN class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">difference to my test.</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MARGIN: 0px">As for my Flash movie, I suspect that their might 
      be some interference<SPAN class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">with other classes that perform LocalConnection, 
      such as Log (to<SPAN class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">FlashInpector), NetDebug, or Xray. I will perform 
      some experiments</DIV>
      <DIV style="MARGIN: 0px">with</DIV>
      <DIV style="MARGIN: 0px">this. I also am using the ARP framework with 
      Flash Remoting calls.</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MARGIN: 0px">But here is the simple code that I am running 
      from the root of my SWF,<SPAN 
      class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">unforunately our app is internal, so I cannot 
      post an external sample<SPAN 
      class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">...</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MARGIN: 0px">import 
      com.macromedia.javascript.JavaScriptProxy;</DIV>
      <DIV style="MARGIN: 0px">import org.osflash.arp.log.Log;</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MARGIN: 0px">var proxy:JavaScriptProxy = new 
      JavaScriptProxy(_root.lcId,this); var<SPAN 
      class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">statusText:String = "lcId=" + _root.lcId; trace 
      (statusText);</DIV>
      <DIV style="MARGIN: 0px">Log.error(statusText); // Log is initialized in 
      the Application</DIV>
      <DIV style="MARGIN: 0px">function addItem(item:Object):Void {</DIV>
      <DIV style="MARGIN: 0px"><SPAN class=Apple-tab-span 
      style="WHITE-SPACE: pre"></SPAN>Log.error("Application:addItem:");</DIV>
      <DIV style="MARGIN: 0px"><SPAN class=Apple-tab-span 
      style="WHITE-SPACE: pre"></SPAN>Log.error(item);</DIV>
      <DIV style="MARGIN: 0px">}<SPAN class=Apple-tab-span 
      style="WHITE-SPACE: pre"> </SPAN>// addItem</DIV>
      <DIV style="MARGIN: 0px">function displayData(d) {</DIV>
      <DIV style="MARGIN: 0px"><SPAN class=Apple-tab-span 
      style="WHITE-SPACE: pre"></SPAN>Log.error("Application:displayData:");</DIV>
      <DIV style="MARGIN: 0px"><SPAN class=Apple-tab-span 
      style="WHITE-SPACE: pre"></SPAN>var myText = "Application:displayData:" + 
      typeof(d) +" : "+</DIV>
      <DIV style="MARGIN: 0px">d.toString();</DIV>
      <DIV style="MARGIN: 0px"><SPAN class=Apple-tab-span 
      style="WHITE-SPACE: pre"></SPAN>Log.error(myText);</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MARGIN: 0px">Essentially, the "displayData" seems to run only 
      once (when going via<SPAN class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">browser), then give me the JavaScript errors on 
      subsequent calls. When<SPAN 
class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">running local, it does not run at all, yet gives 
      me no errors. On the<SPAN class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">same page, I also load the sample 
      js_integration_display.swf, and it<SPAN 
      class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">works just fine.</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MARGIN: 0px">In another part of the code (inside a clip), I 
      perform this when a<SPAN class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">button is pressed:</DIV>
      <DIV style="MARGIN: 0px"><SPAN class=Apple-tab-span 
      style="WHITE-SPACE: pre"></SPAN><SPAN class=Apple-tab-span 
      style="WHITE-SPACE: pre"></SPAN>_root.proxy.call("doAlert");</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MARGIN: 0px">This works fine, everytime.</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MARGIN: 0px">So I think that something inside my SWF seems to 
      be clobbering the<SPAN class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">FlashProxy, or is somehow clobbering the 
      SWF-to-SWF communications</DIV>
      <DIV style="MARGIN: 0px">after</DIV>
      <DIV style="MARGIN: 0px">we run FlashProxy at least once.</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MARGIN: 0px">I am going to start adding some things to the 
      sample to see if I can<SPAN 
class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">duplicate the problem. BTW, has anyone know if I 
      can put all the proxy<SPAN class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">initialization code inside a class, or does it 
      have to be in the root<SPAN 
class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">(like all the examples I see)?</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MARGIN: 0px">Thanks,</DIV>
      <DIV style="MARGIN: 0px">Keith</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MARGIN: 0px">Geoff wrote...</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <BLOCKQUOTE type="cite">
        <DIV style="MARGIN: 0px">hmm... well for local testing, you'll need to 
        add a param:</DIV>
        <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
        <DIV style="MARGIN: 0px">fo.addParam("allowscriptaccess", 
        "always");</DIV>
        <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
        <DIV style="MARGIN: 0px">and that should get it working...</DIV>
        <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
        <DIV style="MARGIN: 0px">for the server issue - if it only executes 
        once, it usually means<SPAN 
        class=Apple-converted-space> </SPAN></DIV>
        <DIV style="MARGIN: 0px">that the callback from the flash movie is not 
        being sent out, which<SPAN 
        class=Apple-converted-space> </SPAN></DIV>
        <DIV style="MARGIN: 0px">makes me think that there may be errors there 
        somewhere.</DIV>
        <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
        <DIV style="MARGIN: 0px">did you create the flashproxy and include the 
        .as classes in your<SPAN class=Apple-converted-space> </SPAN></DIV>
        <DIV style="MARGIN: 0px">fla? do you get any errors when you publish 
        it?</DIV>
        <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
        <DIV style="MARGIN: 0px">if you could post a link to a test page that 
        might help out a bit as</DIV></BLOCKQUOTE>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <BLOCKQUOTE type="cite">
        <DIV style="MARGIN: 0px">well.</DIV></BLOCKQUOTE>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MARGIN: 0px">On May 5, 2006, at 4:11 PM, Keith Takayesu 
      wrote:</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <BLOCKQUOTE type="cite">
        <DIV style="MARGIN: 0px">I have a problem with the integration so far in 
        my ARP application.<SPAN class=Apple-converted-space> </SPAN></DIV>
        <DIV style="MARGIN: 0px">For testing, I have put the initialization in 
        the root script, like<SPAN 
        class=Apple-converted-space> </SPAN></DIV>
        <DIV style="MARGIN: 0px">in</DIV>
        <DIV style="MARGIN: 0px">all</DIV>
        <DIV style="MARGIN: 0px">the FlashJS demos. Sending out to JavaScript 
        works fine. However,</DIV>
        <DIV style="MARGIN: 0px">when I</DIV>
        <DIV style="MARGIN: 0px">try to invoke a function inside of the module 
        from JavaScript, I get:</DIV>
        <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
        <DIV style="MARGIN: 0px">"Line: 252</DIV>
        <DIV style="MARGIN: 0px">Char: 5</DIV>
        <DIV style="MARGIN: 0px">Error: 'FlashProxy' is 
      undefined"</DIV></BLOCKQUOTE>
      <DIV 
      style="MARGIN: 0px">======================================================================</DIV>
      <DIV style="MARGIN: 0px">==============</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MARGIN: 0px">La version française suit le texte anglais.</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV 
      style="MARGIN: 0px">----------------------------------------------------------------------</DIV>
      <DIV style="MARGIN: 0px">--------------</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MARGIN: 0px">This email may contain privileged and/or 
      confidential information,</DIV>
      <DIV style="MARGIN: 0px">and the Bank of</DIV>
      <DIV style="MARGIN: 0px">Canada does not waive any related rights. Any 
      distribution, use, or <SPAN 
class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">copying of this</DIV>
      <DIV style="MARGIN: 0px">email or the information it contains by other 
      than the intended <SPAN class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">recipient is</DIV>
      <DIV style="MARGIN: 0px">unauthorized. If you received this email in error 
      please delete it <SPAN class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">immediately from</DIV>
      <DIV style="MARGIN: 0px">your system and notify the sender promptly by 
      email that you have <SPAN class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">done so.</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV 
      style="MARGIN: 0px">----------------------------------------------------------------------</DIV>
      <DIV style="MARGIN: 0px">--------------</DIV>
      <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
      <DIV style="MARGIN: 0px">Le présent courriel peut contenir de 
      l'information privilégiée ou</DIV>
      <DIV style="MARGIN: 0px">confidentielle.</DIV>
      <DIV style="MARGIN: 0px">La Banque du Canada ne renonce pas aux droits qui 
      s'y rapportent. <SPAN class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">Toute diffusion,</DIV>
      <DIV style="MARGIN: 0px">utilisation ou copie de ce courriel ou des 
      renseignements qu'il <SPAN class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">contient par une</DIV>
      <DIV style="MARGIN: 0px">personne autre que le ou les destinataires 
      désignés est interdite <SPAN 
      class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">Si vous recevez</DIV>
      <DIV style="MARGIN: 0px">ce courriel par erreur, veuillez le supprimer 
      immédiatement et <SPAN class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">envoyer sans délai à</DIV>
      <DIV style="MARGIN: 0px">l'expéditeur un message électronique pour 
      l'aviser que vous avez <SPAN 
      class=Apple-converted-space> </SPAN></DIV>
      <DIV style="MARGIN: 0px">éliminé de votre</DIV>
      <DIV style="MARGIN: 0px">ordinateur toute copie du courriel reçu.</DIV>
      <DIV 
      style="MARGIN: 0px">_______________________________________________</DIV>
      <DIV style="MARGIN: 0px">SWFObject mailing list</DIV>
      <DIV style="MARGIN: 0px"><A 
      href="mailto:SWFObject@lists.deconcept.com">SWFObject@lists.deconcept.com</A></DIV>
      <DIV style="MARGIN: 0px"><A 
      href="http://lists.deconcept.com/listinfo.cgi/swfobject-deconcept.com">http://lists.deconcept.com/listinfo.cgi/swfobject-deconcept.com</A></DIV></BLOCKQUOTE>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV 
    style="MARGIN: 0px">====================================================================================</DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MARGIN: 0px">La version française suit le texte anglais.</DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV 
    style="MARGIN: 0px">------------------------------------------------------------------------------------</DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MARGIN: 0px">This email may contain privileged and/or 
    confidential information, and the Bank of</DIV>
    <DIV style="MARGIN: 0px">Canada does not waive any related rights. Any 
    distribution, use, or copying of this</DIV>
    <DIV style="MARGIN: 0px">email or the information it contains by other than 
    the intended recipient is</DIV>
    <DIV style="MARGIN: 0px">unauthorized. If you received this email in error 
    please delete it immediately from</DIV>
    <DIV style="MARGIN: 0px">your system and notify the sender promptly by email 
    that you have done so.<SPAN class=Apple-converted-space> </SPAN></DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV 
    style="MARGIN: 0px">------------------------------------------------------------------------------------</DIV>
    <DIV style="MIN-HEIGHT: 14px; MARGIN: 0px"><BR></DIV>
    <DIV style="MARGIN: 0px">Le présent courriel peut contenir de l'information 
    privilégiée ou confidentielle.</DIV>
    <DIV style="MARGIN: 0px">La Banque du Canada ne renonce pas aux droits qui 
    s'y rapportent. Toute diffusion,</DIV>
    <DIV style="MARGIN: 0px">utilisation ou copie de ce courriel ou des 
    renseignements qu'il contient par une</DIV>
    <DIV style="MARGIN: 0px">personne autre que le ou les destinataires désignés 
    est interdite. Si vous recevez</DIV>
    <DIV style="MARGIN: 0px">ce courriel par erreur, veuillez le supprimer 
    immédiatement et envoyer sans délai à</DIV>
    <DIV style="MARGIN: 0px">l'expéditeur un message électronique pour l'aviser 
    que vous avez éliminé de votre</DIV>
    <DIV style="MARGIN: 0px">ordinateur toute copie du courriel reçu.</DIV>
    <DIV 
    style="MARGIN: 0px">_______________________________________________</DIV>
    <DIV style="MARGIN: 0px">SWFObject mailing list</DIV>
    <DIV style="MARGIN: 0px"><A 
    href="mailto:SWFObject@lists.deconcept.com">SWFObject@lists.deconcept.com</A></DIV>
    <DIV style="MARGIN: 0px"><A 
    href="http://lists.deconcept.com/listinfo.cgi/swfobject-deconcept.com">http://lists.deconcept.com/listinfo.cgi/swfobject-deconcept.com</A></DIV></BLOCKQUOTE></DIV><BR></DIV></BLOCKQUOTE><pre>====================================================================================

La version française suit le texte anglais.

------------------------------------------------------------------------------------

This email may contain privileged and/or confidential information, and the Bank of
Canada does not waive any related rights. Any distribution, use, or copying of this
email or the information it contains by other than the intended recipient is
unauthorized. If you received this email in error please delete it immediately from
your system and notify the sender promptly by email that you have done so. 

------------------------------------------------------------------------------------

Le présent courriel peut contenir de l'information privilégiée ou confidentielle.
La Banque du Canada ne renonce pas aux droits qui s'y rapportent. Toute diffusion,
utilisation ou copie de ce courriel ou des renseignements qu'il contient par une
personne autre que le ou les destinataires désignés est interdite. Si vous recevez
ce courriel par erreur, veuillez le supprimer immédiatement et envoyer sans délai à
l'expéditeur un message électronique pour l'aviser que vous avez éliminé de votre
ordinateur toute copie du courriel reçu.
</pre></BODY></HTML>