CINXE.COM

A. Film L.A.: May 2009

<!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" xml:lang="en" lang="en"> <head> <title>A. Film L.A.: May 2009</title> <script type="text/javascript">(function() { (function(){function b(g){this.t={};this.tick=function(h,m,f){var n=f!=void 0?f:(new Date).getTime();this.t[h]=[n,m];if(f==void 0)try{window.console.timeStamp("CSI/"+h)}catch(q){}};this.getStartTickTime=function(){return this.t.start[0]};this.tick("start",null,g)}var a;if(window.performance)var e=(a=window.performance.timing)&&a.responseStart;var p=e>0?new b(e):new b;window.jstiming={Timer:b,load:p};if(a){var c=a.navigationStart;c>0&&e>=c&&(window.jstiming.srt=e-c)}if(a){var d=window.jstiming.load; c>0&&e>=c&&(d.tick("_wtsrt",void 0,c),d.tick("wtsrt_","_wtsrt",e),d.tick("tbsd_","wtsrt_"))}try{a=null,window.chrome&&window.chrome.csi&&(a=Math.floor(window.chrome.csi().pageT),d&&c>0&&(d.tick("_tbnd",void 0,window.chrome.csi().startE),d.tick("tbnd_","_tbnd",c))),a==null&&window.gtbExternal&&(a=window.gtbExternal.pageT()),a==null&&window.external&&(a=window.external.pageT,d&&c>0&&(d.tick("_tbnd",void 0,window.external.startE),d.tick("tbnd_","_tbnd",c))),a&&(window.jstiming.pt=a)}catch(g){}})();window.tickAboveFold=function(b){var a=0;if(b.offsetParent){do a+=b.offsetTop;while(b=b.offsetParent)}b=a;b<=750&&window.jstiming.load.tick("aft")};var k=!1;function l(){k||(k=!0,window.jstiming.load.tick("firstScrollTime"))}window.addEventListener?window.addEventListener("scroll",l,!1):window.attachEvent("onscroll",l); })();</script><script type="text/javascript">function a(){var b=window.location.href,c=b.split("?");switch(c.length){case 1:return b+"?m=1";case 2:return c[1].search("(^|&)m=")>=0?null:b+"&m=1";default:return null}}var d=navigator.userAgent;if(d.indexOf("Mobile")!=-1&&d.indexOf("WebKit")!=-1&&d.indexOf("iPad")==-1||d.indexOf("Opera Mini")!=-1||d.indexOf("IEMobile")!=-1){var e=a();e&&window.location.replace(e)}; </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="generator" content="Blogger" /> <link rel="icon" type="image/vnd.microsoft.icon" href="https://www.blogger.com/favicon.ico"/> <link rel="alternate" type="application/atom+xml" title="A. Film L.A. - Atom" href="http://afilmla.blogspot.com/feeds/posts/default" /> <link rel="alternate" type="application/rss+xml" title="A. Film L.A. - RSS" href="http://afilmla.blogspot.com/feeds/posts/default?alt=rss" /> <link rel="service.post" type="application/atom+xml" title="A. Film L.A. - Atom" href="https://www.blogger.com/feeds/28569533/posts/default" /> <link rel="stylesheet" type="text/css" href="https://www.blogger.com/static/v1/v-css/1601750677-blog_controls.css"/> <link rel="stylesheet" type="text/css" href="https://www.blogger.com/dyn-css/authorization.css?targetBlogID=28569533&zx=d566ffb7-ed0b-4a8e-96f5-86dad0212d9c"/> <!-- script language="JavaScript" src="https://ftp.afilm.com/logging/log.asp?site=afilmlablog"></script --> <SCRIPT language=JavaScript> <!-- hide this script tag's contents from old browsers --> function Left(str, n){ if (n <= 0) return ""; else if (n > String(str).length) return str; else return String(str).substring(0,n); } function Right(str, n){ if (n <= 0) return ""; else if (n > String(str).length) return str; else { var iLen = String(str).length; return String(str).substring(iLen, iLen - n); } } function IsNumeric(strString) // check for valid numeric strings { var strValidChars = "0123456789,.-:"; var strChar; var blnResult = true; if (strString.length == 0) return false; // test strString consists of valid characters listed above for (i = 0; i < strString.length && blnResult == true; i++) { strChar = strString.charAt(i); if (strValidChars.indexOf(strChar) == -1) { blnResult = false; } } return blnResult; } function CalcExprMSF2FR(form) { if (form.msf2fr.value == '') { form.msf2fr.value = '';} else if (IsNumeric(form.msf2fr.value) == false) { form.msf2fr.value = ''; form.fr2msf.value = '';} else { form.fr2msf.value = ((form.msf2fr.value.substring(0,2)*1440)+(form.msf2fr.value.substring(3,5)*24)+((form.msf2fr.value.substring(6,8))*1)) ; } } function CalcExprFR2MSF(form) { var totfrs; var mins; var secs; var frs; if (form.fr2msf.value == '') { form.fr2msf.value = '';} else if (IsNumeric(form.fr2msf.value) == false) { form.msf2fr.value = ''; form.fr2msf.value = '';} else { totfrs = form.fr2msf.value; mins = Math.floor(totfrs/1440) ; secs = Math.floor((totfrs-(mins*1440))/24); frs = totfrs-(mins*1440)-(secs*24); form.msf2fr.value = Right('00'+String(mins),2)+':'+Right('00'+String(secs),2)+':'+Right('00'+String(frs),2) ; } } /* function CalcExprFT2MSF(form) { if (form.ft2msf.value == '') { form.ft2msf.value = '';} else if (IsNumeric(form.ft2msf.value) == false) { form.msf2ft.value = ''; form.ft2msf.value = '';} else { form.fr2ft.value = ((form.ft2fr.value.substring(0,3)*16)+((form.ft2fr.value.substring(4,6))*1)) ; } } */ function CalcExprFT2FR(form) { if (form.ft2fr.value == '') { form.ft2fr.value = '';} else if (IsNumeric(form.ft2fr.value) == false) { form.fr2ft.value = ''; form.ft2fr.value = '';} else { form.fr2ft.value = ((form.ft2fr.value.substring(0,3)*16)+((form.ft2fr.value.substring(4,6))*1)) ; } } function CalcExprFR2FT(form) { if (form.fr2ft.value == '') { form.fr2ft.value = '';} else if (IsNumeric(form.fr2ft.value) == false) { form.ft2fr.value = ''; form.fr2ft.value = '';} else if (form.fr2ft.value > 15999) { form.ft2fr.value = '-----'; form.fr2ft.value = '-----';} else { form.ft2fr.value = Right('000'+String(Math.floor(form.fr2ft.value/16)),3)+'-'+Right('000'+String((form.fr2ft.value-((Math.floor(form.fr2ft.value/16))*16))),2) ; } } function CalcExprD2F(form) { if (form.d2f.value == '') { form.d2f.value = '';} else if (IsNumeric(form.d2f.value) == false) { form.d2f.value = ''; form.f2d.value = '';} else { form.f2d.value = eval(Math.round(((21/8)*(form.d2f.value-1))*100)/100); } } function CalcExprF2D(form) { if (form.f2d.value == '') { form.f2d.value = '';} else if (IsNumeric(form.f2d.value) == false) { form.d2f.value = ''; form.f2d.value = '';} else { form.d2f.value = eval(Math.round((((8/21)*form.f2d.value)+1)*100)/100); } } function CalcExprB2M(form) { if (form.b2m.value == '') { form.b2m.value = '';} else if (IsNumeric(form.b2m.value) == false) { form.b2m.value = ''; form.m2b.value = '';} else { form.m2b.value = eval(Math.round(((1440/form.b2m.value))*100)/100); } } function CalcExprM2B(form) { if (form.m2b.value == '') { form.m2b.value = '';} else if (IsNumeric(form.m2b.value) == false) { form.b2m.value = ''; form.m2b.value = '';} else { form.b2m.value = eval(Math.round(((1440/form.m2b.value))*100)/100); } } <!-- done hiding from old browsers --> </SCRIPT> <style type="text/css"> /* ----------------------------------------------- Blogger Template Style Name: Minima Blue Designer: Douglas Bowman URL: www.stopdesign.com Date: 28 Feb 2004 ----------------------------------------------- */ body { background:#135; margin:0; padding:40px 20px; font:x-small "Trebuchet MS",Trebuchet,Verdana,Sans-Serif; text-align:center; color:#ccc; font-size:small; } a:link { color:#bdf; /* 9bd f1a9c8 */ text-decoration:none; } a:visited { color:#79b; /* c99 a7a ea7baa */ text-decoration:none; } a:hover { color:#ad9; text-decoration:underline; } a img { border-width:0; } .MyNote { font:85%/1.6em "Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif; color:#79b; text-decoration:none; line-height:1.2em; } .MyNote a { text-decoration:none; color:#9ac; } /* Header ----------------------------------------------- */ @media all { #header { width:660px; margin:0 auto 10px; border:1px solid #468; } } @media handheld { #header { width:90%; } } #blog-title { margin:5px 5px 0; padding:10px 60px 0; border:1px solid #357; border-width:1px 1px 0; font-size:180%; line-height:1.0em; color:#eee; text-transform:uppercase; letter-spacing:.2em; } #blog-title a { color:#eee; text-decoration:none; } #blog-title a:hover { color:#ad9; } #description { margin:0 5px 5px; padding:0 10px 10px; border:1px solid #357; border-width:0 1px 1px; font:60%/1.3em "Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif; text-transform:uppercase; letter-spacing:.2em; color:#ace; } /* Content ----------------------------------------------- */ @media all { #content { width:660px; margin:0 auto; padding:0; text-align:left; } #main { width:410px; float:left; } #sidebar { width:220px; float:right; } table { rules: all; rule-style: none solid; rule-width: 0pt; } thead td { border-style: none none solid none; border-width: none; margin: 0pt; } } @media handheld { #content { width:90%; } #main { width:100%; float:none; } #sidebar { width:100%; float:none; } } /* Headings ----------------------------------------------- */ h2 { margin:1.5em 0 .75em; font:bold 82%/1.5em "Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif; text-transform:uppercase; letter-spacing:.2em; color:#777; } /* Posts ----------------------------------------------- */ @media all { .date-header { margin:1.5em 0 .5em; color:#579; } .post { margin:.5em 0 1.5em; border-bottom:1px dotted #357; padding-bottom:1.5em; } } @media handheld { .date-header { padding:0 1.5em 0 1.5em; } .post { padding:0 1.5em 0 1.5em; } } .post-title { margin:.25em 0 0; padding:0 0 4px; font-size:140%; line-height:1.2em; color:#fc6; } .post-mini { margin:.25em 0 0; padding:0 0 4px; font-size:80%; line-height:1.4em; color:#fc6; } .post-title a { text-decoration:none; color:#fc6; } .post-title a:hover { color:#fff; } .post div { margin:0 0 .75em; line-height:1.6em; } p.post-footer { margin:-.25em 0 0; color:#357; } .post-footer em, .comment-link { font:78%/1.4em "Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif; text-transform:uppercase; letter-spacing:.1em; } .post-footer em { font-style:normal; color:#579; margin-right:.6em; } .comment-link { margin-left:.6em; } .post img { //padding:4px; //border:1px solid #222; text-decoration: none; border: none; } .post blockquote { margin:1em 20px; } .post blockquote p { margin:.75em 0; } /* Comments ----------------------------------------------- */ #comments h4 { margin:1em 0; font:bold 78%/1.6em "Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif; text-transform:uppercase; letter-spacing:.2em; color:#579; } #comments h4 strong { font-size:130%; } #comments-block { margin:1em 0 1.5em; line-height:1.6em; } #comments-block dt { margin:.5em 0; } #comments-block dd { margin:.25em 0 0; } #comments-block dd.comment-timestamp { margin:-.25em 0 2em; font:78%/1.4em "Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif; text-transform:uppercase; letter-spacing:.1em; } #comments-block dd p { margin:0 0 .75em; } .deleted-comment { font-style:italic; color:gray; } /* Sidebar Content ----------------------------------------------- */ .sidebar-title { color:#579; } #sidebar ul { margin:0 0 1.0em; padding:0 0 1.0em; border-bottom:1px dotted #357; list-style:none; } #sidebar li { margin:0; padding:0 0 .25em 15px; text-indent:-15px; line-height:1.2em; } #sidebar p { line-height:1.2em; } #sidebar hr { margin:0.4em 0 0; padding:0 0 0; border-top:1px dotted #79a; /* width:75%; */ color:#79a; border-style: none none dotted; } .sidebar-center { text-align:center; } /* Profile ----------------------------------------------- */ #profile-container { margin:0 0 1.5em; border-bottom:1px dotted #357; padding-bottom:1.5em; } .profile-datablock { margin:.5em 0 .5em; } .profile-img { display:inline; } .profile-img img { float:left; padding:4px; border:1px solid #357; margin:0 8px 3px 0; } .profile-data { margin:0; font:bold 78%/1.6em "Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif; text-transform:uppercase; letter-spacing:.1em; } .profile-data strong { display:none; } .profile-textblock { margin:0 0 .5em; } .profile-link { margin:0; font:78%/1.4em "Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif; text-transform:uppercase; letter-spacing:.1em; } /* Footer ----------------------------------------------- */ #footer { width:660px; clear:both; margin:0 auto; } #footer hr { display:none; } #footer p { margin:0; padding-top:15px; font:78%/1.6em "Trebuchet MS",Trebuchet,Verdana,Sans-serif; letter-spacing:.1em; } #StyleVideo{ clear: both; float: none; display: block; margin-left: auto; margin-right: auto; margin-bottom: 8px; width: 400px; height: 225px; vertical-align: middle; left: auto; right: auto; } </style> <meta name='google-adsense-platform-account' content='ca-host-pub-1556223355139109'/> <meta name='google-adsense-platform-domain' content='blogspot.com'/> <!-- --><style type="text/css">@import url(https://www.blogger.com/static/v1/v-css/navbar/3334278262-classic.css); div.b-mobile {display:none;} </style> </head> <body><script type="text/javascript"> function setAttributeOnload(object, attribute, val) { if(window.addEventListener) { window.addEventListener('load', function(){ object[attribute] = val; }, false); } else { window.attachEvent('onload', function(){ object[attribute] = val; }); } } </script> <div id="navbar-iframe-container"></div> <script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <script type="text/javascript"> gapi.load("gapi.iframes:gapi.iframes.style.bubble", function() { if (gapi.iframes && gapi.iframes.getContext) { gapi.iframes.getContext().openChild({ url: 'https://www.blogger.com/navbar/28569533?origin\x3dhttp://afilmla.blogspot.com', where: document.getElementById("navbar-iframe-container"), id: "navbar-iframe" }); } }); </script> <div id="header"> <h1 id="blog-title"> <table><tr><td> <!-- img src="https://www.afilmla.com/blog/AFLOGObl.gif" --> <a href="http://www.afilm.com" TARGET="_BLANK"><img src="https://www.afilmla.com/blog/AFLOGObl.gif"> </a></td> <td><a href="http://afilmla.blogspot.com/"> <h1> A. Film L.A.</h1></a></td> <td> <!-- img src="http://www.skydebanen.net/~hp/AFilmLAblog/pix/AFLOGObl.gif" --> <a href="http://www.afilm.com" TARGET="_BLANK"> <img src="https://www.afilmla.com/blog/AFLOGObl.gif"> </a></td> </tr></table> </h1><p id="description">A. Film L.A. is the Los Angeles associate of A. Film of Copenhagen, Denmark, Scandinavia's largest and Europe's most ambitious animation studio. Productions include 'Albert,' 'Miffy the Movie,' and 'The Flight Before Christmas,' 'Help! I'm a Fish,' 'Terkel in Trouble!,' 'Asterix and the Vikings,' 'Journey to Saturn,' 'The Little Vampire,' 'The Giant Pear,' 'Up and Away!' and 'Checkered Ninja.'<br><a href="http://www.afilm.com">Content © 2006 - 2023 A. Film L.A., Inc.</a></p> </div> <!-- Begin #content --> <div id="content"> <!-- Begin #main --> <div id="main"><div id="main2"> <!-- div class="MyNote">Please note: if an earlier link doesn't work, try changing the www.afilm.com in these links to www.afilm.com!)</div --> <div class="MyNote">Please note: if an earlier link doesn't work, it may have changed following an update! Check the <a href="#CatLab">Category Labels</a> in the side-bar on the right! There you can find animator drafts for sixteen complete Disney features and eighty-six shorts,<br>as well as Action Analysis Classes and many other vintage animation documents!</div> <h2 class="date-header">Sunday, May 31, 2009</h2> <!-- Begin .post --> <div class="post"><a name="1112652415201750825"></a> <h3 class="post-title"> A MoCap Christmas Carol - Bah Humbug! </h3> <div class="post-body"> <div> <div style="clear:both;"></div>A week ago today I spent several hours in line to see the <i>Christmas Carol Train Tour</i> exhibit at L.A. Union Station. It marked the beginning of a national tour promoting the new film by Robert Zemekis made for Disney called <i>A Christmas Carol</i>, of course based on Dickens' famous book.<br /><table><tr><td><a href="https://www.afilmla.com/blog/ACC1.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/ACC1t.jpg" border="0" alt="A Christmas Carol"></a></td></tr></table>The train exhibit seemed extremely well done. Reference costumes, clips, models and a cute photo opportunity. Best of all, there were original Dickens documents on display.<table><tr><td><a href="https://www.afilmla.com/blog/ACC5.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/ACC5t.jpg" border="0" alt="A Christmas Carol"></a></td></tr></table>Very popular but less impressive was the "morph yourself into the characters" setup. This last bit did have problems, though: it spoke of "morph yourself into one of four characters," but there were only three, as the female lead was not available. Also, the images have as yet not turned up in my email, I wonder if they ever will...[They did, Monday night, eight days after the event!] After the train exhibit, we got into a new line, this time for the inflatable theater. Oh boy...<br /><br />Ok, my main bone of contention: it is a Motion Capture production. They call it Performance Capture, but if this is the state of the art, I will still call it Motion Capture. Scrooge was captured from Jim Carrey, an actor who is not my personal favorite, but then I also do not enjoy much of Jerry Lewis.<table><tr><td><a href="https://www.afilmla.com/blog/ACC3.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/ACC3t.jpg" border="0" alt="A Christmas Carol"></a></td></tr></table>I found this clip on the web, and I must say it underlines my feelings about this method of film making...<!-- div align="center"><br /><object id="bitgravity_player_6" type="application/x-shockwave-flash" data="http://bitcast-b.bitgravity.com/player/6/bitgravity_player_v6_1_0.swf" width="400" height="256"><br /><param name="allowFullScreen" value="true"><br /><param name="allowScriptAccess" value="always"><br /><param name="flashvars" value="File=http://bitcast-b.bitgravity.com/latinoreview/christmascarolclip.flv&amp;Mode=ondemand&amp;AutoPlay=false&amp;BufferTime=1.5&amp;VideoFit=automatic&amp;DefaultRatio=1.333333&amp;LogoPosition=topleft&amp;ColorBase=#010101&amp;ColorControl=#ff9d09&amp;ColorHighlight=#f2f800&amp;ColorFeature=#c04500"><br /></object><br /><script type="text/javascript" src="http://bitcast-b.bitgravity.com/player/6/functions.js"></script><br /><script type="text/javascript"><br />1 var flashvars = {}; flashvars.File = "http://bitcast-b.bitgravity.com/latinoreview/christmascarolclip.flv"; flashvars.Mode = "ondemand"; flashvars.AutoPlay = "false"; flashvars.BufferTime = "1.5"; flashvars.VideoFit = "automatic"; flashvars.DefaultRatio = "1.333333"; flashvars.LogoPosition = "topleft"; flashvars.ColorBase = "#010101"; flashvars.ColorControl = "#ff9d09"; flashvars.ColorHighlight = "#f2f800"; flashvars.ColorFeature = "#c04500"; var params = {}; params.allowFullScreen = "true"; params.allowScriptAccess = "always"; var attributes = {}; attributes.id = "bitgravity_player_6"; swfobject.embedSWF(stablerelease, "bg_player_location", "400", "256", "9.0.0", "http://bitcast-b.bitgravity.com/player/expressInstall.swf", flashvars, params, attributes);</script></div -->[Clip no longer available!]<br /><br />The exhibit in the train showed clearly how this film was produced - pretty much like Polar Express. Now they do claim that "the eye problem is fixed." This only means that the characters seem to look at each other now - but their gaze is just as dead as before.<br /><br />WHY do the characters need to be so ugly and unappealing? I doubt if we can ever feel anything for them. My favorite Christmas Carol adaptation is the 1971 musical film <b><i>Scrooge</i></b> with Albert Finney in the title role. Actually, the stage version with Tommy Steele I liked even better! Animated, I enjoyed Richard Williams' grand opus. Anyway, in <i>Scrooge</i>, you are really set up to like everyone, Scrooge, Marley, Fred, Ghosts - except maybe the Ghost of Christmas Yet to Come, but that is a small point.<br /><br />Let me give an example: in <i>Scrooge</i>, we find in Bob Cratchit a vulnerable man who does his best to support his family - he is likable - we WANT him to have a better life. In Zemekis' film, Bob Cratchit seems quite unlikable - Tiny Tim might even be ashamed to have such a wimp as a father! And Tiny Tim? To me he reeks of some young designer saying "hey guys, look how strange I can make this guy?" instead of finding the heart in the story. The models as displayed in the train show a lot of good intentions, but they seem to have a hard time pulling these things off on film!<table><tr><td><a href="https://www.afilmla.com/blog/ACC4.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/ACC4t.jpg" border="0" alt="A Christmas Carol"></a></td></tr></table>At the exhibit, in the balloon theater, a small film was shown in 3-d stereoscopic, with most of the scenes being inspirational art turned into View-Master&reg; images. Mind you, the backgrounds of Old London are often breathtakingly realistic. Too much so for my taste.<table><tr><td><a href="https://www.afilmla.com/blog/ACC2.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/ACC2t.jpg" border="0" alt="A Christmas Carol"></a></td></tr></table>Only a few scenes were shown in a sort-of final stage, so we may need to give Zemekis the benefit of the doubt. On the other hand, the scenes shown were appallingly unappealing. When the nephew Fred visits Scrooge at the beginning of the story, he was captured from well-known, dependable actor Colin Firth, but who directed him to be irritating and ugly? Underneath his emotionless stare, he seems to be angry, not in a Christmas mood at all! As member of the audience, I felt just as Scrooge: get this guy out of here! <br /><i>Good day to you, Sir!</i><br />If that is what I feel about the LIKEABLE characters, what will I think of the scary ones, or the ones I need to dislike?<br /><br />The bit with Marley in the clip above shows that I will feel very little. There is hardly any expression. Scrooge seems to have one expression in this sequence, as well. None of the characters is actually THINKING! Why is Marley nodding mechanically as he says "you will be haunted by three spirits?" Now mind you, the music was REALLY LOUD in the theater. Maybe they think that that will make it all more scary?<br /><br />Here is what *I* think they should have done, if they wanted to keep the MoCap: first get a performance that is based on really acting the part as needed to tell the story well, instead of just action, the moving of dots under the MoCap cameras. Then do as Milt Kahl did: use the live action input as a guide, not as a crutch. Look at it, look at what makes things special, throw stuff out that is superfluous (this part is standard MoCap practice, "cleaning" the data) and then CARICATURE the actions. Change them until they work. Do not just use what you have left after cleaning, because then you have what looks like rotoscoped live-action. Just a copy of a live performance is still and always will be just a copy. It can not, given the current conditions, give you all the nuances of a real live performance - for this you need to add the life back into it. Of course, you can only do this if you have animators doing this work, not data-moving technicians. I have seen Audio-Animatronic figures with more "soul" than the clips I have seen from <i>"A Christmas Carol: An IMAX 3D Experience,"</i> and that is saying something. I am quite certain that The Illusion of Life is still in print!<br /><br />The film will show the building of Big Ben, the landmark London campanile that celebrates its 150th birthday right now.<br />A program about Big Ben might turn out to be more interesting...<table><tr><td><a href="https://www.afilmla.com/blog/ACC6.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/ACC6t.jpg" border="0" alt="A Christmas Carol"></a></td></tr></table>I thought the <i>Christmas Carol Train Tour</i> was a great exhibit. I, and everybody I was with at the time, loved the train. And we were all thoroughly disappointed by the clips shown in the theater. Will we see the film when it is released November 6th.? Heck yeah! We need to know if a great big Hollywood movie really can be THIS bad...<br /><br />Go see UP! You will see a heartwarming, exciting story with stunning yet simplified backgrounds and above all great characters, well animated, appealing and full of heart! Without MoCap!<div style="clear:both; padding-bottom:0.25em"></div><p class="blogger-labels">Labels: <a rel='tag' href="http://afilmla.blogspot.com/search/label/News">News</a>, <a rel='tag' href="http://afilmla.blogspot.com/search/label/Other%20Disney">Other Disney</a>, <a rel='tag' href="http://afilmla.blogspot.com/search/label/Ponderings">Ponderings</a></p> </div> </div> <p class="post-footer"> <em>posted by Hans Perk at <a href="http://afilmla.blogspot.com/2009/05/a-mocap-christmas-carol-bah-humbug.html" title="permanent link">4:00 PM</a></em> <a class="comment-link" href="https://www.blogger.com/comment/fullpage/post/28569533/1112652415201750825"location.href=https://www.blogger.com/comment/fullpage/post/28569533/1112652415201750825;>5 comments</a> <span class="item-action"><a href="https://www.blogger.com/email-post/28569533/1112652415201750825" title="Email Post"><img class="icon-action" alt="" src="https://resources.blogblog.com/img/icon18_email.gif" height="13" width="18"/></a></span><span class="item-control blog-admin pid-1746031081"><a style="border:none;" href="https://www.blogger.com/post-edit.g?blogID=28569533&postID=1112652415201750825&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> <h2 class="date-header">Friday, May 29, 2009</h2> <!-- Begin .post --> <div class="post"><a name="9017164050713428048"></a> <h3 class="post-title"> Things are looking UP </h3> <div class="post-body"> <div> <div style="clear:both;"></div><table><tr><td valign="bottom"><br />Returned from the D23 event "UP all night" at the El Capitan in Hollywood, where I saw PIXAR and Pete Docter's UP.<br /><br />I loved it! It is a wonderful movie. I thoroughly recommend it, and I hope it does as well as it deserves!!<br />It has an interesting story with fun twists and surprises. Delightful, at times sinister, at times an action/adventure movie. I would say that, except for songs, this film has it all!</td><td><a href="https://www.afilmla.com/blog/HellsBellsHP.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/D23_UP_pin.jpg" border="0" alt="Pin given out at D23 UP event" height="322"></a></td></tr></table><br />The 3-d stereoscopic effect is nicely understated and is only used to help tell the story. The event itself was nice, too, though there was a good long wait first: in line 8:30 pm, doors opened at 10, film started at 11. Once inside we were welcomed by the organ music of Rob Richards, who played an hour non-stop, until the lights went down for a little welcome by D23-head Steven Clark and a nice talk by actor <a href="http://www.imdb.com/name/nm0001652/" target="_BLANK">John Ratzenberger</a>, who has the distinction to have voiced characters in all of the Pixar features. Then trailers, including a nice one for The Princess and the Frog, followed by a little live dance show. Then the very nice short film "Partly Cloudy," and finally the main feature. After ten minutes I clearly heard sobs from audience members!<br />Lots of laughs and cheers, too! Outside again at 1:30...<br /><br />This event also proved that getting the D23 membership was a good idea, also price-wise, as this event was free - though the normal price including drink & popcorn would be $25, and one could bring a guest, that is $50! Plus the two magazines so far published $32 makes a total thus far of $82, which is less than the $75 membership! And, of course, everyone in the audience got a free event pin (and baloon). With two magazines yet to come and the Expo coming up, the membership has paid for itself already! It's not too late folks, you can still <a href="http://d23.disney.go.com/" target="_BLANK">become member</a>! D23 needs your support, so things can happen that probably never will happen again!<br /><br />[Addition: hear Pete Docter on NPR as <a href="http://www.npr.org/dmg/dmg_em.php?id=104708255&type=1&date=29-may-2009&mtype=RM" target="_BLANK">RealAudio</a> or <a href="http://www.npr.org/dmg/dmg_em.php?id=104708255&type=1&date=29-may-2009&mtype=WM" target="_BLANK">WMA</a>!]<br /><br />[Addition: the more cerebral reviewers point out some things they think are "wrong" with the picture, and I myself could do this around two-thirds in (when my thoughts begin to drift off I attribute it to a bit of dragging repetitivety and lack of clarity that encumbers most otherwise perfect PIXAR movies just over halfway through), but let's face it, I was <em>genuinely entertained</em> by UP, silly or not, and to me that is what counts! It happens so rarely these days...]<div style="clear:both; padding-bottom:0.25em"></div><p class="blogger-labels">Labels: <a rel='tag' href="http://afilmla.blogspot.com/search/label/News">News</a>, <a rel='tag' href="http://afilmla.blogspot.com/search/label/Other%20Disney">Other Disney</a></p> </div> </div> <p class="post-footer"> <em>posted by Hans Perk at <a href="http://afilmla.blogspot.com/2009/05/things-are-looking-up.html" title="permanent link">3:00 AM</a></em> <a class="comment-link" href="https://www.blogger.com/comment/fullpage/post/28569533/9017164050713428048"location.href=https://www.blogger.com/comment/fullpage/post/28569533/9017164050713428048;>0 comments</a> <span class="item-action"><a href="https://www.blogger.com/email-post/28569533/9017164050713428048" title="Email Post"><img class="icon-action" alt="" src="https://resources.blogblog.com/img/icon18_email.gif" height="13" width="18"/></a></span><span class="item-control blog-admin pid-1746031081"><a style="border:none;" href="https://www.blogger.com/post-edit.g?blogID=28569533&postID=9017164050713428048&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> <h2 class="date-header">Monday, May 25, 2009</h2> <!-- Begin .post --> <div class="post"><a name="1788092367734820337"></a> <h3 class="post-title"> From Columbia to United Artists... </h3> <div class="post-body"> <div> <div style="clear:both;"></div>Not too long ago, I was lucky enough to be able to acquire this, the invitation to the party at the Disney Studio on Hyperion Ave. on June 25th, 1932 to finally celebrate the start of the distribution agreement with United Artists.<br /><br />The celebration was just as much about the parting of ways with Columbia, with whom business had gone sour. As Roy Disney stated as early as in April 1930, they were not "overburdened with 'Good Intentions'." Though the deal was signed December 1930, and announced in April 1931, the Disney shorts were still delivered to, and distributed by Columbia until mid 1932, hence the late date of this party.<br /><br />I especially like the wording, the down-home quality of Mickey's "dialogue" in this invitation. This is how Mickey should talk. If you who read this blog are, or are going to be a writer for Mickey, please realize that Mickey sounds best when he reacts, and remember to use as few words as possible! Now read this invitation, "and make it snappy!" <br /><table><tr><td><a href="https://www.afilmla.com/blog/YooHooComeOnOver.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/YooHooComeOnOvert.jpg" border="0" alt="Yoo Hoo! Come Onn Over!"></a></td><td><a href="https://www.afilmla.com/blog/YooHooComeOnOver.jpg" target="_BLANK">&lt;&lt; Click to enlarge...</a></td></tr></table>Though I only met Wayne Allwine very few times, I am certain he will be greatly missed, and my thoughts go out to Russi.<br /><br />[Addition: if you do not know your Mickey history and are taken aback by Mickey's accent, hear it straight from Walt’s own mouth in the Mickey Mouse Theater of the Air <a href="http://www.archive.org/details/MickeyMouseTheateroftheAir" target="_BLANK">here</a>. This is how the Mickey in the invitation sounds - not like a slave at all: he is simply a straight-forward fun-loving country boy mouse with a no-nonsense attitude.]<br /><br />[For those of you studying animation, remember to check out the many <a href="http://afilmla.blogspot.com/search/label/AAC">Action Analysis Classes</a>, <a href="http://afilmla.blogspot.com/search/label/Draft">animator drafts</a> and <a href="http://afilmla.blogspot.com/">other documents</a> you can find on this blog! Find out how they <a href="http://afilmla.blogspot.com/search/label/Barsheets">timed the short</a> films at Disney, and <a href="http://afilmla.blogspot.com/search/label/Beatronome">download</a> my free animation timing metronome!]<div style="clear:both; padding-bottom:0.25em"></div><p class="blogger-labels">Labels: <a rel='tag' href="http://afilmla.blogspot.com/search/label/Other%20Disney">Other Disney</a></p> </div> </div> <p class="post-footer"> <em>posted by Hans Perk at <a href="http://afilmla.blogspot.com/2009/05/from-columbia-to-united-artists.html" title="permanent link">3:00 PM</a></em> <a class="comment-link" href="https://www.blogger.com/comment/fullpage/post/28569533/1788092367734820337"location.href=https://www.blogger.com/comment/fullpage/post/28569533/1788092367734820337;>7 comments</a> <span class="item-action"><a href="https://www.blogger.com/email-post/28569533/1788092367734820337" title="Email Post"><img class="icon-action" alt="" src="https://resources.blogblog.com/img/icon18_email.gif" height="13" width="18"/></a></span><span class="item-control blog-admin pid-1746031081"><a style="border:none;" href="https://www.blogger.com/post-edit.g?blogID=28569533&postID=1788092367734820337&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> <h2 class="date-header">Thursday, May 14, 2009</h2> <!-- Begin .post --> <div class="post"><a name="6054623396516997257"></a> <h3 class="post-title"> Mr. G.O. Graphic </h3> <div class="post-body"> <div> <div style="clear:both;"></div>When I visited the Disney studio lot in Burbank for the first time in 1978, I noticed a panel holding a row of nice shadow boxes with paper cutouts explaining the process of animation. I later learned that these were done by legendary Disney animator Bill Justice.<br /><br />Originally situated just below eye level on the left of the entrance to hallway 1D in the Animation Building, the hallway of the Gods--or the Kings, depending on who is relaying the story (left image), it has since moved up one floor to just left of hallway 2A on the south-east end of the main corridor, a few inches lower than before, something that seems to reflect the sentiments of the company through the nineties. The wood paneling has also been painted white which can be seen in the right two images which I took last week.<table><tr><td><a href="https://www.afilmla.com/blog/ShadowBoxes1.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/ShadowBoxes1t.jpg" border="0" alt="1" height="80"></a></td><td><a href="https://www.afilmla.com/blog/ShadowBoxes2.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/ShadowBoxes2t.jpg" border="0" alt="2" height="80"></a></td><td><a href="https://www.afilmla.com/blog/ShadowBoxes3.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/ShadowBoxes3t.jpg" border="0" alt="3" height="80"></a></td></tr></table><br />The boxes are quite elaborate little works of art that explain the process of animation from story, sound recording, animation, ink & paint, background, camera and editing to projection. They were supposedly created to explain the process in a simple way to visitors to the studio, thereby making extended disruptions unnecessary.<table><tr><td><a href="https://www.afilmla.com/blog/ShadowBox1.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/ShadowBox1t.jpg" border="0" alt="1" height="70"></a></td><td><a href="https://www.afilmla.com/blog/ShadowBox2.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/ShadowBox2t.jpg" border="0" alt="2" height="70"></a></td><td><a href="https://www.afilmla.com/blog/ShadowBox3.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/ShadowBox3t.jpg" border="0" alt="3" height="70"></a></td><td><a href="https://www.afilmla.com/blog/ShadowBox4.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/ShadowBox4t.jpg" border="0" alt="4" height="70"></a></td></tr><tr><td><a href="https://www.afilmla.com/blog/ShadowBox5.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/ShadowBox5t.jpg" border="0" alt="5" height="70"></a></td><td><a href="https://www.afilmla.com/blog/ShadowBox6.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/ShadowBox6t.jpg" border="0" alt="6" height="70"></a></td><td><a href="https://www.afilmla.com/blog/ShadowBox7.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/ShadowBox7t.jpg" border="0" alt="7" height="70"></a></td><td><a href="https://www.afilmla.com/blog/ShadowBox8.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/ShadowBox8t.jpg" border="0" alt="8" height="70"></a></td></tr></table><br />It is very possible that you are familiar with the images, as the boxes were pictured in a Mondadori-originated comic album, and more importantly, they were based on artwork presented in the important August 1963 issue of National Geographic (left image), the magazine with the great article by Robert de Roos, a <a href="http://afilmla.blogspot.com/2008/02/its-who-you-know.html" target="_BLANK">Stanford alumnus</a> of the same year as Ollie Johnston and James Algar. The article has early images of Walt and a fun fold-out map of Disneyland, and also pictures of Walt's suite above the Disneyland Fire Station and two spreads of Mr. G.O. Graphic explaining the process of animation!<table><tr><td><a href="https://www.afilmla.com/blog/NatGeo_Aug63_p01.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/NatGeo_Aug63_p01t.jpg" border="0" alt="1" height="80"></a></td><td><a href="https://www.afilmla.com/blog/MrGOGraphic1.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/MrGOGraphic1t.jpg" border="0" alt="2" height="80"></a></td><td><a href="https://www.afilmla.com/blog/MrGOGraphic2.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/MrGOGraphic2t.jpg" border="0" alt="3" height="80"></a></td></tr></table>The artwork in the magazine as well as in the boxes use Archimedes from the 1963 feature film <a href="http://afilmla.blogspot.com/search/label/SwordInTheStone" target="_BLANK">The Sword in the Stone</a> as example.<div style="clear:both; padding-bottom:0.25em"></div><p class="blogger-labels">Labels: <a rel='tag' href="http://afilmla.blogspot.com/search/label/Other%20Disney">Other Disney</a></p> </div> </div> <p class="post-footer"> <em>posted by Hans Perk at <a href="http://afilmla.blogspot.com/2009/05/mr-go-graphic.html" title="permanent link">3:00 PM</a></em> <a class="comment-link" href="https://www.blogger.com/comment/fullpage/post/28569533/6054623396516997257"location.href=https://www.blogger.com/comment/fullpage/post/28569533/6054623396516997257;>8 comments</a> <span class="item-action"><a href="https://www.blogger.com/email-post/28569533/6054623396516997257" title="Email Post"><img class="icon-action" alt="" src="https://resources.blogblog.com/img/icon18_email.gif" height="13" width="18"/></a></span><span class="item-control blog-admin pid-1746031081"><a style="border:none;" href="https://www.blogger.com/post-edit.g?blogID=28569533&postID=6054623396516997257&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> <h2 class="date-header">Tuesday, May 12, 2009</h2> <!-- Begin .post --> <div class="post"><a name="7622047527802524417"></a> <h3 class="post-title"> Iron Pencil Revisited </h3> <div class="post-body"> <div> <div style="clear:both;"></div>At last an image of the infamous Iron Pencil at work! Check out <a href="http://afilmla.blogspot.com/2009/03/iron-pencil-re-recording-and-mixing-at_01.html" TARGET="_BLANK">my previous post</a> for details on the workings and patent drawings for this contraption!<br /><br /><table><tr><td><a href="https://www.afilmla.com/blog/IronPencilSession.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/IronPencilSessiont.jpg" border="0" alt="Iron Pencil Session" height="80"></a></td></tr></table><br />Blog reader Gunnar Andreassen pointed out a whole new world of images on Getty Images, and while browsing these, I <a href="http://www.gettyimages.com/detail/50416827/Time-Life-Pictures" TARGET="_BLANK">stumbled over</a> the image of a sound re-recording session at the Disney studio, for the wonderful short film "Toot, Whistle, Plunk & Boom," dated September 1st, 1953!<br /><br />Note how the gentleman in the center (maybe Jim MacDonald) points with his "iron pencil" which in turn gets the lights on the rail at the top to point at the same spot on the scores of the other gents, the mixers, who turn their dials according to their instructions--the spots are clearly visible on their scores!<br /><br />[Addition:] More!<br /><table><tr><td><a href="https://www.afilmla.com/blog/IronPencil-WDPP1.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/IronPencil-WDPP1t.jpg" border="0" alt="Iron Pencil Session" height="80"></a></td><tr><td><a href="https://www.afilmla.com/blog/IronPencil-WDPP2.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/IronPencil-WDPP2t.jpg" border="0" alt="Iron Pencil Session" height="80"></a></td></tr></table><div style="clear:both; padding-bottom:0.25em"></div><p class="blogger-labels">Labels: <a rel='tag' href="http://afilmla.blogspot.com/search/label/Other%20Disney">Other Disney</a></p> </div> </div> <p class="post-footer"> <em>posted by Hans Perk at <a href="http://afilmla.blogspot.com/2009/05/iron-pencil-revisited.html" title="permanent link">2:00 AM</a></em> <a class="comment-link" href="https://www.blogger.com/comment/fullpage/post/28569533/7622047527802524417"location.href=https://www.blogger.com/comment/fullpage/post/28569533/7622047527802524417;>0 comments</a> <span class="item-action"><a href="https://www.blogger.com/email-post/28569533/7622047527802524417" title="Email Post"><img class="icon-action" alt="" src="https://resources.blogblog.com/img/icon18_email.gif" height="13" width="18"/></a></span><span class="item-control blog-admin pid-1746031081"><a style="border:none;" href="https://www.blogger.com/post-edit.g?blogID=28569533&postID=7622047527802524417&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> <h2 class="date-header">Monday, May 11, 2009</h2> <!-- Begin .post --> <div class="post"><a name="7550010811670841082"></a> <h3 class="post-title"> Girls, Girls, Girls... </h3> <div class="post-body"> <div> <div style="clear:both;"></div>A few days ago, the prolific <a href="http://www.michaelspornanimation.com/splog/" target="_BLANK">Michael Sporn</a> posted <a href="http://www.michaelspornanimation.com/splog/?p=1844#comments" target="_BLANK">a few drawings</a> that originated with Jack Kinney, including a few pages of girls drawn by Fred Moore. <br /><br />I noted in a comment that "All of the girls, except the very first one in Kinney’s caricature, are from the unofficial in-house publication “The Mousetrap” that was issued in 500 numbered copies in 1937 by “The Ward Ritchie Press.” Number 91 of these was reprinted as a facsimile in the late 70s. The original run had watercolors applied differently in each issue (by Ward and Betty Kimball, Ward Ritchie, a "Mrs. O.," and two guys, Webb and Pete). They were, of course, painted before the magazine was bound. Ward Ritchie was the publisher, his business pretty nearby at 1936 Hyperion Ave. while he lived at 2110 Griffith Park Blvd. (nearly back-to-back locations between Udell Ct. and Lyric Ave.). Ward Kimball was the main editor (perpetrator?) of this spiral-bound magazine. <br /><br />To underline this, and for comparison, here are the two hand-colored pages, from two different original issues. I do not have the reprint of #91 close at hand, but I do remember that the two images below resemble each other more than they resemble this reprint, where the color application is concerned.<br /><table><thead><tr><td align="center">Mousetrap #268</td><td align="center">Mousetrap #312</td><td align="center">Mousetrap #91</td></tr></thead><tbody><tr><td align="center"><a href="https://www.afilmla.com/blog/Girls1_268.jpg" target="_BLANK"><img height="80" alt="1_268" src="https://www.afilmla.com/blog/Girls1_268t.jpg" border="0"></a></td><td align="center"><a href="https://www.afilmla.com/blog/Girls1_312.jpg" target="_BLANK"><img height="80" alt="1_312" src="https://www.afilmla.com/blog/Girls1_312t.jpg" border="0"></a> </td><td align="center"><a href="https://www.afilmla.com/blog/Girls1_91.jpg" target="_BLANK"><img height="80" alt="1_91" src="https://www.afilmla.com/blog/Girls1_91t.jpg" border="0"></a> </td></tr><tr><td align="center"><a href="https://www.afilmla.com/blog/Girls2_268.jpg" target="_BLANK"><img height="80" alt="2_268" src="https://www.afilmla.com/blog/Girls2_268t.jpg" border="0"></a></td><td align="center"><a href="https://www.afilmla.com/blog/Girls2_312.jpg" target="_BLANK"><img height="80" alt="2_312" src="https://www.afilmla.com/blog/Girls2_312t.jpg" border="0"></a></td><td align="center"><a href="https://www.afilmla.com/blog/Girls2_91.jpg" target="_BLANK"><img height="80" alt="2_91" src="https://www.afilmla.com/blog/Girls2_91t.jpg" border="0"></a></td></tr></tbody></table><br />[Addition 04/2011: finally added images from the reprint of #91.]<br />[Addition 04/2014: corrections re: Ward Ritchie and info on the painters. Thanks, Amy!]<div style="clear:both; padding-bottom:0.25em"></div><p class="blogger-labels">Labels: <a rel='tag' href="http://afilmla.blogspot.com/search/label/Other%20Disney">Other Disney</a></p> </div> </div> <p class="post-footer"> <em>posted by Hans Perk at <a href="http://afilmla.blogspot.com/2009/05/girls-girls-girls.html" title="permanent link">3:00 AM</a></em> <a class="comment-link" href="https://www.blogger.com/comment/fullpage/post/28569533/7550010811670841082"location.href=https://www.blogger.com/comment/fullpage/post/28569533/7550010811670841082;>2 comments</a> <span class="item-action"><a href="https://www.blogger.com/email-post/28569533/7550010811670841082" title="Email Post"><img class="icon-action" alt="" src="https://resources.blogblog.com/img/icon18_email.gif" height="13" width="18"/></a></span><span class="item-control blog-admin pid-1746031081"><a style="border:none;" href="https://www.blogger.com/post-edit.g?blogID=28569533&postID=7550010811670841082&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> <h2 class="date-header">Saturday, May 09, 2009</h2> <!-- Begin .post --> <div class="post"><a name="740987376239604043"></a> <h3 class="post-title"> More on Once Upon a Time </h3> <div class="post-body"> <div> <div style="clear:both;"></div>The eminent historian <a href="http://www.michaelbarrier.com/" target="_BLANK">Michael Barrier</a> has recently <a href="http://www.michaelbarrier.com/Home%20Page/WhatsNewArchivesMay09.htm#ersatzwaltcomments" target="_BLANK">posted an item</a> about the fake Disney sighting in the 1944 film "Once Upon a Time."<br /><br />What struck me in the whole issue is that I find that the office actually <em>REALLY</em> looks like Walt's formal office! <br /><br />I have shamelessly stolen the screen grab from Mike's site, the left image below. Then, a triptych composed of one black and white photo taken during Walt's lifetime and two taken in 1968, and finally a plan of Walt's formal office in the Animation Building in Burbank, room 3H-1 which I recreated from photos. The office currently may still be hidden behind the walls in the Disneyland Opera House, if it is not already moved into the Disney Archives' storage in conjunction with the Great Moments with Mr. Lincoln recreation.<br /><br /><table><tr><td><a href="https://www.afilmla.com/blog/disneyonceuponatime.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/disneyonceuponatimet.jpg" border="0" alt="1" height="80"></a></td><td><a href="https://www.afilmla.com/blog/WaltsView.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/WaltsViewt.jpg" border="0" alt="2" height="80"></a></td><td><a href="https://www.afilmla.com/blog/WaltFormalOffice.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/WaltFormalOfficet.jpg" border="0" alt="3" height="80"></a></td></tr></table><br />On the floor plan, the camera in the scene from Once Upon a Time sees the light red area, originating behind "Walt"'s left side. The three photos are taken in the direction of the three red arrows. Notice the round shape, possibly a speaker, in the left top of the screen grab? It is the same shape in the top of the left photo! <br /><br />Furthermore, you see the side of Walt's grand piano, a sofa in a wood-paneled alcove with a table in front of it (implied by the big lamp), a vertical metal pole structure that seems to keep the overhang up - this goes through the side table of the sofa, then a door (closed in the grab) that went out to Walt's secretaries and finally a cupboard of sorts, in the grab with a vase on it. The angle on Walt's desk, the height of the room - all seem to be correct. <br /><br />Did they actually use Walt's office??? This possibility seems hard to grasp, especially with the relationship that Columbia had with Disney, as explained by Mike Barrier. They would also have a hard time getting a camera in that confined space behind Walt's desk. Then again, would they really go to this much trouble to precisely recreate Walt's office, which was neither well-publicized nor accessible to the general audience, on a sound stage? Maybe it is shot against a rear-projection screen? Or a giant photo backdrop? The shadow of the lamp on the sofa does look a bit phony... What do you think?<br /><br />The idea that Walt, in a suit, would sit in his formal office with the doors shut making calls seems odd to me - he would most likely be casually dressed in his working office next door - unless he was in a formal meeting, in which case he would not be making this call.<br />Well, ok, it is a movie after all...<br /><br />[Remember that <a href="http://afilmla.blogspot.com/2009/05/sounds-delightful.html" target="_BLANK">the event in Hemet</a> is this afternoon at 3:00!]<div style="clear:both; padding-bottom:0.25em"></div><p class="blogger-labels">Labels: <a rel='tag' href="http://afilmla.blogspot.com/search/label/Other%20Disney">Other Disney</a>, <a rel='tag' href="http://afilmla.blogspot.com/search/label/Ponderings">Ponderings</a></p> </div> </div> <p class="post-footer"> <em>posted by Hans Perk at <a href="http://afilmla.blogspot.com/2009/05/more-on-once-upon-time.html" title="permanent link">4:00 AM</a></em> <a class="comment-link" href="https://www.blogger.com/comment/fullpage/post/28569533/740987376239604043"location.href=https://www.blogger.com/comment/fullpage/post/28569533/740987376239604043;>1 comments</a> <span class="item-action"><a href="https://www.blogger.com/email-post/28569533/740987376239604043" title="Email Post"><img class="icon-action" alt="" src="https://resources.blogblog.com/img/icon18_email.gif" height="13" width="18"/></a></span><span class="item-control blog-admin pid-1746031081"><a style="border:none;" href="https://www.blogger.com/post-edit.g?blogID=28569533&postID=740987376239604043&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> <h2 class="date-header">Thursday, May 07, 2009</h2> <!-- Begin .post --> <div class="post"><a name="1423847751881456360"></a> <h3 class="post-title"> Sounds Delightful </h3> <div class="post-body"> <div> <div style="clear:both;"></div><table><tr><td><a href="https://www.afilmla.com/blog/HemetFlyer05092009.pdf" target="_BLANK"><img src="https://www.afilmla.com/blog/SoundsDelightfulB.jpg" border="0" alt="Be there or be square!"></a></td></tr></table>Remember to pop by the <a href="http://westerncentermuseum.org/index.php?option=com_jcalpro&Itemid=67&extmode=view&extid=83" TARGET="_BLANK">Western Center Museum</a> in Hemet now Saturday 5/9/09 at 3:00 pm - the day before last of <span style="font-weight:bold;">The Music behind the Magic</span> exhibit - and <i>"join Disney Artist and Historian Stacia Martin </i>[author of the booklet in the new <a href="http://www.amazon.com/gp/product/B001EQUESC" TARGET="_BLANK">World's Fair disc set</a>!]<i> for an entertaining browse through more than five decades of vintage Disney Vinyl Recordings from her extensive personal collection. Classic favorites from the family turntable of yesteryear will be heard along with rare promotional and production tracks. Memorable music, beautiful cover art and fascinating history wait to be DISCovered!"</i> I hope to see you there!<br /><table><tr><td><a href="https://www.afilmla.com/blog/HemetFlyer05092009.pdf" target="_BLANK"><img src="https://www.afilmla.com/blog/HemetFlyer05092009sm.jpg" border="0" alt="PDF 526 KB" height="80"></a></td><td><a href="https://www.afilmla.com/blog/HemetFlyer05092009.pdf" target="_BLANK">&lt;&lt; Click to open flyer as PDF...</a><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://www.afilmla.com/blog/HemetFlyer05092009.pdf" target="_BLANK">... or as JPG! &gt;&gt;</a></td><td><a href="https://www.afilmla.com/blog/HemetFlyer05092009.jpg" target="_BLANK"><img src="https://www.afilmla.com/blog/HemetFlyer05092009sm.jpg" border="0" alt="JPG 541 KB" height="80"></a></td></tr></table>Prepare yourself for a true audible feast, with Disney goodies from the very beginning up to the 70s; well worth the trip to Hemet!<br /><br />A note on <a href="http://westerncentermuseum.org/index.php?option=com_content&task=view&id=93&Itemid=150" target="_BLANK">The Music behind the Magic</a> exhibit: this is the last time this exhibit is on the west coast. It will have a last run in Florida before retirement! So if you have not seen it and are not planning a trip to Florida, Sunday is your last chance!<table><tr><td valign="top">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td><td align="right"><a href="https://www.afilmla.com/blog/HemetFlyer05092009.pdf" target="_BLANK"><img src="https://www.afilmla.com/blog/WhatFun.gif" border="0" alt="Be there or be square!"></a></td></tr></table><div style="clear:both; padding-bottom:0.25em"></div><p class="blogger-labels">Labels: <a rel='tag' href="http://afilmla.blogspot.com/search/label/News">News</a>, <a rel='tag' href="http://afilmla.blogspot.com/search/label/Other%20Disney">Other Disney</a></p> </div> </div> <p class="post-footer"> <em>posted by Hans Perk at <a href="http://afilmla.blogspot.com/2009/05/sounds-delightful.html" title="permanent link">4:00 AM</a></em> <a class="comment-link" href="https://www.blogger.com/comment/fullpage/post/28569533/1423847751881456360"location.href=https://www.blogger.com/comment/fullpage/post/28569533/1423847751881456360;>0 comments</a> <span class="item-action"><a href="https://www.blogger.com/email-post/28569533/1423847751881456360" title="Email Post"><img class="icon-action" alt="" src="https://resources.blogblog.com/img/icon18_email.gif" height="13" width="18"/></a></span><span class="item-control blog-admin pid-1746031081"><a style="border:none;" href="https://www.blogger.com/post-edit.g?blogID=28569533&postID=1423847751881456360&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> </div> <!-- HP added --> <div class='blog-pager' id='blog-pager'> <table align='center' border='0' cellpadding='0' cellspacing='0'><tr> <td> <span id='blog-pager-older-link'> <a class='blog-pager-older-link' href='http://afilmla.blogspot.com/search?updated-max=2009-05-07T04:00:00-07:00&max-results=90' id='Blog1_blog-pager-older-link' title='Older Posts'>&lt; Older Posts</a>&nbsp;-&nbsp; <a class='blog-pager-newer-link' href='http://afilmla.blogspot.com/search?updated-max=2010-05-28T10:00:00-07:00&max-results=90&reverse-paginate=true' id='Blog1_blog-pager-newer-link' title='Newer Posts'>Newer Posts &gt;</a> </span></td> </tr></table> </div> <!-- End HP added --> </div> <!-- End #main --> <!-- Begin #sidebar --> <div id="sidebar"><div id="sidebar2"> <div class="sidebar-center"> <a href="#CatLab">Category Labels</a><br> <a href="#ArchLab">Archives</a><br> <a href="#PrevPostsLab">Most Recent Posts</a><br> <a href="#MyLinksLab">Links to My Pages</a><br> <a href="#LinksLab">Links to Others</a><br> <a href="#CalcLab">Calculations</a><br> <!-- a href="#DonateLab">Like to Help?</a><br --> </div><center><a href="#Counters"><hr></a></center> <!-- ul><div class="sidebar-center"> <table><tr><td colspan="2"><a href="#CatLab">Category Labels</a></td></tr> <tr><td><a href="#CalcLab">Calculations</a></td><td><a href="#DonateLab">Donate</a></td></tr> <tr><td><a href="#PrevPostsLab">Previous Posts</a></td><td><a href="#MyLinksLab">Links to My Pages</a></td></tr> <tr><td><a href="#ArchLab">Archives</a></td><td><a href="#LinksLab">Links to Others</a></td></tr></title> </div></ul --> <!-- Begin #profile-container --> <div id="profile-container"><h2 class="sidebar-title">About Me</h2> <dl class="profile-datablock"><dt class="profile-img"><a href="https://www.blogger.com/profile/12707924880609997693"><img src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiyjECjsg2p6cZ7EqkqD5Redpq84Wb3aC22pS49GWeUUV4VhIika6tmMat_f-6p-5y8bZvhovxSyMwQN0EiPxHqW45lgWoiWskEOGylQ_xFc9H_gEaOEMpwHy6le2bNdw/s45/*" width="36" height="45" alt="My Photo"></a></dt> <dd class="profile-data"><strong>Name:</strong> <a rel="author" href="https://www.blogger.com/profile/12707924880609997693"> Hans Perk </a></dd> </dl> <p class="profile-textblock">Interested in animation since 1975, worked in Holland with Danish animator Børge Ring for four years (incl. on the Oscar-winning &#39;Anna &amp; Bella&#39;), then moved to Denmark in 1984. In SoCal since 2019. <br><br> Co-founder in 1988 of <a href="http://www.afilm.com">A. Film</a>, Europe's foremost animation studio, in business for over 30 years. We are the studio behind 'The Flight before Christmas', 'Help! I'm a Fish', 'Asterix and the Vikings', 'Checkered Ninja' and <a href="http://history.afilm.com">many more</a>... <br><br>Currently the President and CEO of A. Film L.A., Inc. in Los Angeles,<br>and director of "<a href="http://www.nijntjedefilm.nl">Miffy the Movie</a>."<br><br> Though we are very involved in new techniques, I share a deep passion for Great Classical Animation with everyone at the studio;<br>Frank Thomas and Ollie Johnston's "Illusion of Life" is our bible.<br><br><a href="http://www.afilm.com">Look us up on our website where<br>you can also see our showreels!</a><br><br><a href="http://afilmla.blogspot.com/feeds/posts/default?alt=rss">Subscribe to the <b>RSS Feed</b> here!</a></p> <p class="profile-link"><a rel="author" href="https://www.blogger.com/profile/12707924880609997693">View my complete profile</a></p></div> <!-- End #profile --> <div class="sidebar-center"><h2 class="sidebar-title"><a name="CalcLab">Calculations</a></h2></div> <center> <ul id="calculations"> <font size="-2" color="#79b"> Enter a number in ANY box and click outside it to see the result in the other (works both ways!):</font> <hr width="75%"><FORM method=post> Frames &larr;&rarr; feet-frames<BR> <INPUT type=text name=fr2ft size=4 onFocus=fr2ft.select(); onBlur="CalcExprFR2FT(this.form)"> frs &larr;&rarr; <INPUT type=text name=ft2fr size=5 onFocus=ft2fr.select(); onBlur="CalcExprFT2FR(this.form)"> ft-fr<BR> <font size="-2" color="#79b">E.g. [ 63 ] frs &larr;&rarr; [ 003-15 ] ft-fr</font><BR> <hr width="75%"><FORM method=post> Frames&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&larr;&rarr;&nbsp;&nbsp;MM:SS:FF (24 fps)<BR> <INPUT type=text name=fr2msf size=5 onFocus=fr2msf.select(); onBlur="CalcExprFR2MSF(this.form)"> frs &larr;&rarr; <INPUT type=text name=msf2fr size=8 onFocus=msf2fr.select(); onBlur="CalcExprMSF2FR(this.form)"> M:S:F<BR> <font size="-2" color="#79b">E.g. [ 63 ] frs &larr;&rarr; [ 00:02:15 ] M:S:F</font><BR> </FORM> <hr width="75%"><FORM method=post> Disney fields &larr;&rarr; ACME fields<BR> <INPUT type=text name=d2f size=4 onFocus=d2f.select(); onBlur="CalcExprD2F(this.form)"> DISNEY &larr;&rarr; <INPUT type=text name=f2d size=4 onFocus=f2d.select(); onBlur="CalcExprF2D(this.form)"> ACME<BR> <font size="-2" color="#79b">E.g. [ 5 ] DISNEY &larr;&rarr; [ 10.5 ] ACME</font><BR> </FORM> <hr width="75%"><FORM method=post> BEAT (24 fps) &larr;&rarr; Metronome<BR> <INPUT type=text name=b2m size=4 onFocus=b2m.select(); onBlur="CalcExprB2M(this.form)"> BEAT &larr;&rarr; <INPUT type=text name=m2b size=4 onFocus=m2b.select(); onBlur="CalcExprM2B(this.form)"> bpm<BR> <font size="-2" color="#79b">E.g. [ 10 ] BEAT &larr;&rarr; [ 144 ] bpm</font><hr width="75%"> <font size="-2" color="#79b">JavaScript must be enabled for these to work!</font><BR> </center></FORM></ul> <!-- h2 class="sidebar-title"><a name="DonateLab">Like to help?</a></h2> <ul><form action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_s-xclick"><input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----MIIHTwYJKoZIhvcNAQcEoIIHQDCCBzwCAQExggEwMIIBLAIBADCBlDCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20CAQAwDQYJKoZIhvcNAQEBBQAEgYATOp08HwvMcEwffMYa6zZOt/Qz/4M4dFwsOnTY84GQQw7zakbaqJds2WoIuOGGuLrALdZS1g1VBlNS9XEz9xZZmwZycoY5oCheelwu7pK/Bnlj82EkExsA+udIKF9TmmCR9L30xU5p7m3aLtwrXyYNT0OukmM3MpR5ht3BT/oYGDELMAkGBSsOAwIaBQAwgcwGCSqGSIb3DQEHATAUBggqhkiG9w0DBwQIiTEoRBmB7dSAgah1KzQCuJ3nmIeUwGOMEdsXBSVX4X50ma7MOayOTPHcBKGgWoJsn+aZwHCU5Ig6FNtPNcRj+ZSGuoW43MthkFrB2sg0a1ZtBhDBoC0B9QDanhqnUvav1O3ijbVTcZAF+aYnY8lPcp0/XBlcBMmH1U8Y43YHZTKHLFw1lp+gxINWctp10DFHX+oFaqPXkowyS0Pp3IH5/mOFrdw7/8GwGZq1/s9igo6vRoSgggOHMIIDgzCCAuygAwIBAgIBADANBgkqhkiG9w0BAQUFADCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20wHhcNMDQwMjEzMTAxMzE1WhcNMzUwMjEzMTAxMzE1WjCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMFHTt38RMxLXJyO2SmS+Ndl72T7oKJ4u4uw+6awntALWh03PewmIJuzbALScsTS4sZoS1fKciBGoh11gIfHzylvkdNe/hJl66/RGqrj5rFb08sAABNTzDTiqqNpJeBsYs/c2aiGozptX2RlnBktH+SUNpAajW724Nv2Wvhif6sFAgMBAAGjge4wgeswHQYDVR0OBBYEFJaffLvGbxe9WT9S1wob7BDWZJRrMIG7BgNVHSMEgbMwgbCAFJaffLvGbxe9WT9S1wob7BDWZJRroYGUpIGRMIGOMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExFjAUBgNVBAcTDU1vdW50YWluIFZpZXcxFDASBgNVBAoTC1BheVBhbCBJbmMuMRMwEQYDVQQLFApsaXZlX2NlcnRzMREwDwYDVQQDFAhsaXZlX2FwaTEcMBoGCSqGSIb3DQEJARYNcmVAcGF5cGFsLmNvbYIBADAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4GBAIFfOlaagFrl71+jq6OKidbWFSE+Q4FqROvdgIONth+8kSK//Y/4ihuE4Ymvzn5ceE3S/iBSQQMjyvb+s2TWbQYDwcp129OPIbD9epdr4tJOUNiSojw7BHwYRiPh58S1xGlFgHFXwrEBb3dgNbMUa+u4qectsMAXpVHnD9wIyfmHMYIBmjCCAZYCAQEwgZQwgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tAgEAMAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0xMTA0MjIxNTQ5MTFaMCMGCSqGSIb3DQEJBDEWBBTjc3yVhVY5PmK24Ed9mB+FR3unmDANBgkqhkiG9w0BAQEFAASBgDWAauyCZ9bGv9Danz/vuzzqVC2UE3YywqobfIsWzdiGtn90BaD4pjJrFRQO3z+iDiSucuWM8SSEU9hWyQYGxEONjVbBjCLiDBxjcUeTBcrR34ycWdZhge3D38gF1X6edT4Y409bX5nyZCA5PsPvrRe0mw0tNj3wNS0AGHpufp5h-----END PKCS7----- "><input type="image" src="https://blog.afilmla.net/blog/btn_donate_HP.gif" border="0" name="submit" alt="Donate" --><!-- do not use: input type="image" src="https://www.paypalobjects.com/WEBSCR-640-20110401-1/en_US/i/btn/btn_donate_SM.gif" border="0" name="submit" alt="Donate" --><!-- img alt="" border="0" src="https://www.paypalobjects.com/WEBSCR-640-20110401-1/en_US/i/scr/pixel.gif" width="1" height="1"></form>Help cover my blogging expenses! </ul --> <h2 class="sidebar-title"><a name="MyLinksLab">Links to My Pages</a></h2> <ul> <li><a href="https://afilmla.blogspot.com/">Back to the main page...</a></li> <li><a href="http://www.miffythemovie.com/">Miffy the/my Movie!</a> (<a href="http://www.nijntjedefilm.nl/">NL</a>)</li> <li><a href="https://www.afilm.com/" target="_BLANK">The A. Film Homepage</a></li> <li><a href="https://afilmla.blogspot.com/2008/06/feature-production-numbers.html" target="_BLANK">Disney Production Numbers</a></li> <li><a href="https://www.afilmla.com/blog/DisFieldsUS.htm" target="_BLANK">My Disney Fields & Pegs page</a></li> <li><a href="https://www.imdb.com/name/nm0673853/" target="_BLANK">About me on IMDb...</a></li> <!-- li><a href="http://rejsentilsaturn.blogspot.com/" target="_BLANK">A. Film's Journey to Saturn Blog</a></li --> </ul> <h2 class="sidebar-title"><a name="CatLab">Category Labels</a></h2> <ul> <li><a href="https://afilmla.blogspot.com/search/label/MyPicks" target="_BLANK"><b>&rarr;&nbsp;Important Items!&nbsp;&larr;</b></a></li> <li><a href="https://afilmla.blogspot.com/search/label/A.Film" target="_BLANK">A. Film News</a></li> <li><a href="https://afilmla.blogspot.com/search/label/News" target="_BLANK">News in General</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Auction" target="_BLANK">Profiles and Van Eaton Auctions</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Beatronome" target="_BLANK">Beatronome</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Barsheets" target="_BLANK">Barsheets</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Draft" target="_BLANK"><b>&rarr;&nbsp;Animator Drafts&nbsp;&larr;</b></a></li> <li><a href="https://afilmla.blogspot.com/search/label/Shorts" target="_BLANK">- Shorts Drafts</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Shorts_Powers" target="_BLANK">&nbsp;-- Powers (1928-29)</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Shorts_Columbia" target="_BLANK">&nbsp;-- Columbia (1929-32)</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Shorts_UA" target="_BLANK">&nbsp;-- United Artists (all) (1932-37)</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Shorts_UA_2006" target="_BLANK">&nbsp;-- United Artists (2006 only)</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Shorts_RKO" target="_BLANK">&nbsp;-- RKO (all) (1937-53)</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Shorts_RKO_2006" target="_BLANK">&nbsp;-- RKO (2006 only)</a></li> <li><a href="https://afilmla.blogspot.com/search/label/SnowWhite" target="_BLANK">- Snow White Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Pinocchio" target="_BLANK">- Pinocchio Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Fantasia" target="_BLANK">- Fantasia Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/ReluctantDragon" target="_BLANK">- Reluctant Dragon Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Dumbo" target="_BLANK">- Dumbo Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/ThreeCaballeros" target="_BLANK">- Three Caballeros Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Fun%20and%20Fancy%20Free" target="_BLANK">- Fun and Fancy Free Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/MelodyTime" target="_BLANK">- Melody Time Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/IchabodToad" target="_BLANK">- Ichabod & Mr. Toad Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Cinderella" target="_BLANK">- Cinderella Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Alice" target="_BLANK">- Alice in Wonderland Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/PeterPan" target="_BLANK">- Peter Pan Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/LadyAndTheTramp" target="_BLANK">- Lady and the Tramp Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/SleepingBeauty" target="_BLANK">- Sleeping Beauty Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/101Dalmatians" target="_BLANK">- 101 Dalmatians Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/SwordInTheStone" target="_BLANK">- The Sword in the Stone Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/MaryPoppins" target="_BLANK">&nbsp;-- Mary Poppins Draft (Jolly Holiday)</a></li> <li><a href="https://afilmla.blogspot.com/search/label/JungleBook" target="_BLANK">- Jungle Book Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Rescuers" target="_BLANK">- The Rescuers Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/SmallOne" target="_BLANK">&nbsp;-- The Small One Draft</a></li> <li><a href="https://afilmla.blogspot.com/search/label/FoxHound" target="_BLANK">&nbsp;- The Fox and the Hound</a></li> <li><a href="https://afilmla.blogspot.com/search/label/AAC" target="_BLANK"><b>&rarr;&nbsp;Classes and Lectures&nbsp;&larr;</b></a></li> <li><a href="https://afilmla.blogspot.com/search/label/Patents" target="_BLANK">Patents</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Bill%20Garity" target="_BLANK">Bill Garity</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Video" target="_BLANK">Videos</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Other%20Disney" target="_BLANK">Other Disney Items</a></li> <li><a href="https://afilmla.blogspot.com/search/label/B%C3%B8rge_Ring" target="_BLANK">B&oslash;rge Ring</a></li> <li><a href="https://afilmla.blogspot.com/search/label/Ponderings" target="_BLANK">Thoughts and Opinions</a></li> </ul> <h2 class="sidebar-title"><a name="PrevPostsLab">Previous Posts</a></h2> <ul id="recently"> <li><a href="http://afilmla.blogspot.com/2023/10/images-down-temporarily_1.html">Images back!</a></li> <li><a href="http://afilmla.blogspot.com/2023/06/images-fixed_26.html">Images fixed!</a></li> <li><a href="http://afilmla.blogspot.com/2022/02/brge-ring-would-have-been-101-today.html">B&oslash;rge Ring would have been 101 today...</a></li> <li><a href="http://afilmla.blogspot.com/2021/04/walt-was-honored-for-three-little-pigs_3.html">Walt was honored for Three Little Pigs... And so w...</a></li> <li><a href="http://afilmla.blogspot.com/2021/02/remembering-brge-ring-on-his-100th.html">Remembering B&oslash;rge Ring on his 100th...</a></li> <li><a href="http://afilmla.blogspot.com/2020/11/prod-cm23-grocery-boy_18.html">Prod. CM23 - The Grocery Boy</a></li> <li><a href="http://afilmla.blogspot.com/2019/08/credit-where-it-due_14.html">Credit where it&#39;s due...</a></li> <li><a href="http://afilmla.blogspot.com/2019/07/prod-0136-fox-and-hound-xxiii-seq-013.html">Prod. 0136 - The Fox and the Hound (XXIII) &nbsp;&nbsp;- Seq...</a></li> <li><a href="http://afilmla.blogspot.com/2019/07/prod-0136-fox-and-hound-xxii-seq-092.html">Prod. 0136 - The Fox and the Hound (XXII) &nbsp;&nbsp;- Seq....</a></li> <li><a href="http://afilmla.blogspot.com/2019/07/prod-0136-fox-and-hound-xxi-seq-092.html">Prod. 0136 - The Fox and the Hound (XXI) &nbsp;&nbsp;- Seq. ...</a></li> </ul> <h2 class="sidebar-title"><a name="LinksLab">Important Links to Others</a></h2> <ul> <li><a href="http://d23.disney.go.com/" target="_BLANK">Disney's D23 - have you joined yet?</a></li> <li><a href="http://disneyslostchords.com/" target="_BLANK">Disney's Lost Chords</a></li> <li><a href="http://www.mousetracksonline.com/" target="_BLANK">Greg Ehrbar's Mouse Tracks Online</a></li> <li><a href="http://miehana.blogspot.com" target="_BLANK">Kevin Kidney's Blog</a></li> <li><a href="http://www.disneyshorts.org/index.html" target="_BLANK">Disney Shorts Encyclopedia</a></li> <li><a href="http://www.cartoonbrew.com/" target="_BLANK">CartoonBrew</a></li> <li><a href="http://blackwingdiaries.blogspot.com" target="_BLANK">BlackwingDiaries</a></li> <li><a href="http://mayersononanimation.blogspot.com" target="_BLANK">MayersonOnAnimation</a></li> <li><a href="http://www.michaelspornanimation.com/splog/" target="_BLANK">MichaelSpornAnimation</a></li> <li><a href="http://disneybooks.blogspot.com/" target="_BLANK">Disney History (Didier Ghez)</a></li> <li><a href="http://michaelbarrier.com/" target="_BLANK">Michael Barrier</a></li> <li><a href="http://www.disneyhistoryinstitute.com/" target="_BLANK">Disney History Inst. (Paul Anderson)</a></li> <li><a href="http://msonntag.blogspot.com/" target="_BLANK">Tagtoonz (Mark Sonntag)</a></li> <li><a href="http://andreasdeja.blogspot.com/" target="_BLANK">Andreas Deja's blog</a></li> <li><a href="http://mrfun.squarespace.com/blog/" target="_BLANK">Mr. Fun: Floyd Norman's blog</a></li><!-- http://web.mac.com/floydnorman/Site/Blog_/Blog_.html --> <li><a href="http://michaelperaza.blogspot.com/" target="_BLANK">Michael Peraza's Ink & Paint Club</a></li> <li><a href="http://toonsatwar.blogspot.com/" target="_BLANK">Toons at War (DisneyDave)</a></li> <li><a href="http://2719hyperion.blogspot.com/" target="_BLANK">2719 Hyperion</a></li> <li><a href="http://vintagedisneymemorabilia.blogspot.com/" target="_BLANK">Vintage Disney Collectibles</a></li> <li><a href="http://vintagedisneyalice.blogspot.com/" target="_BLANK">Vintage Disney Alice in Wonderland</a></li> <li><a href="http://cowancollectionanimation.blogspot.com/" target="_BLANK">Cowan Collection: Animation</a></li> <li><a href="http://matterhorn1959.blogspot.com/" target="_BLANK">Stuff from the Park</a></li> <li><a href="http://www.whataboutthad.com/" target="_BLANK">Thad Komorowski's blog</a></li> <li><a href="http://animationguildblog.blogspot.com/" target="_BLANK">The Animation Guild Blog</a></li> <li><a href="http://animationresources.org/" target="_BLANK">The Ex-ASIFA Archives Blog</a></li> <li><a href="http://blabbingonartsandculture.blogspot.com/" target="_BLANK">Steven Hartley's Blabbing on...</a></li> <li><a href="http://animationwhoandwhere.blogspot.com/" target="_BLANK">Animation Who & Where</a></li> <li><a href="http://classicalhanddrawnanimation.freeforums.org/" target="_BLANK">Hand-drawn Animation Forum</a></li> <!-- li><a href="http://www.immaginariofiorentino.com/albertopage/index.html" target="_BLANK">Alberto's Page (check bottom row!)</a></li --> <li><a href="https://alberto-s-pages.webnode.it/animators-until-1970/" target="_BLANK">Alberto's Pages (Current)</a></li> <li><a href="https://www.afilmla.com/blog/AlbertosPage/index.html" target="_BLANK">Alberto's Page (Cached in 2009)</a></li> </ul> <h2 class="sidebar-title"><a name="ArchLab">Archives</a></h2> <ul class="archive-list"> <li><a href="http://afilmla.blogspot.com/2006/05/">May 2006</a></li> <li><a href="http://afilmla.blogspot.com/2006/06/">June 2006</a></li> <li><a href="http://afilmla.blogspot.com/2006/07/">July 2006</a></li> <li><a href="http://afilmla.blogspot.com/2006/08/">August 2006</a></li> <li><a href="http://afilmla.blogspot.com/2006/09/">September 2006</a></li> <li><a href="http://afilmla.blogspot.com/2006/10/">October 2006</a></li> <li><a href="http://afilmla.blogspot.com/2006/11/">November 2006</a></li> <li><a href="http://afilmla.blogspot.com/2006/12/">December 2006</a></li> <li><a href="http://afilmla.blogspot.com/2007/01/">January 2007</a></li> <li><a href="http://afilmla.blogspot.com/2007/02/">February 2007</a></li> <li><a href="http://afilmla.blogspot.com/2007/03/">March 2007</a></li> <li><a href="http://afilmla.blogspot.com/2007/04/">April 2007</a></li> <li><a href="http://afilmla.blogspot.com/2007/05/">May 2007</a></li> <li><a href="http://afilmla.blogspot.com/2007/06/">June 2007</a></li> <li><a href="http://afilmla.blogspot.com/2007/07/">July 2007</a></li> <li><a href="http://afilmla.blogspot.com/2007/08/">August 2007</a></li> <li><a href="http://afilmla.blogspot.com/2007/09/">September 2007</a></li> <li><a href="http://afilmla.blogspot.com/2007/10/">October 2007</a></li> <li><a href="http://afilmla.blogspot.com/2007/11/">November 2007</a></li> <li><a href="http://afilmla.blogspot.com/2007/12/">December 2007</a></li> <li><a href="http://afilmla.blogspot.com/2008/01/">January 2008</a></li> <li><a href="http://afilmla.blogspot.com/2008/02/">February 2008</a></li> <li><a href="http://afilmla.blogspot.com/2008/03/">March 2008</a></li> <li><a href="http://afilmla.blogspot.com/2008/04/">April 2008</a></li> <li><a href="http://afilmla.blogspot.com/2008/05/">May 2008</a></li> <li><a href="http://afilmla.blogspot.com/2008/06/">June 2008</a></li> <li><a href="http://afilmla.blogspot.com/2008/07/">July 2008</a></li> <li><a href="http://afilmla.blogspot.com/2008/08/">August 2008</a></li> <li><a href="http://afilmla.blogspot.com/2008/09/">September 2008</a></li> <li><a href="http://afilmla.blogspot.com/2008/10/">October 2008</a></li> <li><a href="http://afilmla.blogspot.com/2008/11/">November 2008</a></li> <li><a href="http://afilmla.blogspot.com/2008/12/">December 2008</a></li> <li><a href="http://afilmla.blogspot.com/2009/01/">January 2009</a></li> <li><a href="http://afilmla.blogspot.com/2009/02/">February 2009</a></li> <li><a href="http://afilmla.blogspot.com/2009/03/">March 2009</a></li> <li><a href="http://afilmla.blogspot.com/2009/04/">April 2009</a></li> <li><a href="http://afilmla.blogspot.com/2009/05/">May 2009</a></li> <li><a href="http://afilmla.blogspot.com/2009/06/">June 2009</a></li> <li><a href="http://afilmla.blogspot.com/2009/07/">July 2009</a></li> <li><a href="http://afilmla.blogspot.com/2009/08/">August 2009</a></li> <li><a href="http://afilmla.blogspot.com/2009/09/">September 2009</a></li> <li><a href="http://afilmla.blogspot.com/2009/10/">October 2009</a></li> <li><a href="http://afilmla.blogspot.com/2009/11/">November 2009</a></li> <li><a href="http://afilmla.blogspot.com/2009/12/">December 2009</a></li> <li><a href="http://afilmla.blogspot.com/2010/01/">January 2010</a></li> <li><a href="http://afilmla.blogspot.com/2010/02/">February 2010</a></li> <li><a href="http://afilmla.blogspot.com/2010/04/">April 2010</a></li> <li><a href="http://afilmla.blogspot.com/2010/05/">May 2010</a></li> <li><a href="http://afilmla.blogspot.com/2010/06/">June 2010</a></li> <li><a href="http://afilmla.blogspot.com/2010/07/">July 2010</a></li> <li><a href="http://afilmla.blogspot.com/2010/08/">August 2010</a></li> <li><a href="http://afilmla.blogspot.com/2010/09/">September 2010</a></li> <li><a href="http://afilmla.blogspot.com/2010/10/">October 2010</a></li> <li><a href="http://afilmla.blogspot.com/2010/11/">November 2010</a></li> <li><a href="http://afilmla.blogspot.com/2010/12/">December 2010</a></li> <li><a href="http://afilmla.blogspot.com/2011/01/">January 2011</a></li> <li><a href="http://afilmla.blogspot.com/2011/02/">February 2011</a></li> <li><a href="http://afilmla.blogspot.com/2011/04/">April 2011</a></li> <li><a href="http://afilmla.blogspot.com/2011/05/">May 2011</a></li> <li><a href="http://afilmla.blogspot.com/2011/08/">August 2011</a></li> <li><a href="http://afilmla.blogspot.com/2011/10/">October 2011</a></li> <li><a href="http://afilmla.blogspot.com/2011/11/">November 2011</a></li> <li><a href="http://afilmla.blogspot.com/2011/12/">December 2011</a></li> <li><a href="http://afilmla.blogspot.com/2012/01/">January 2012</a></li> <li><a href="http://afilmla.blogspot.com/2012/02/">February 2012</a></li> <li><a href="http://afilmla.blogspot.com/2012/03/">March 2012</a></li> <li><a href="http://afilmla.blogspot.com/2012/04/">April 2012</a></li> <li><a href="http://afilmla.blogspot.com/2012/05/">May 2012</a></li> <li><a href="http://afilmla.blogspot.com/2012/08/">August 2012</a></li> <li><a href="http://afilmla.blogspot.com/2012/09/">September 2012</a></li> <li><a href="http://afilmla.blogspot.com/2012/11/">November 2012</a></li> <li><a href="http://afilmla.blogspot.com/2012/12/">December 2012</a></li> <li><a href="http://afilmla.blogspot.com/2013/01/">January 2013</a></li> <li><a href="http://afilmla.blogspot.com/2013/05/">May 2013</a></li> <li><a href="http://afilmla.blogspot.com/2013/07/">July 2013</a></li> <li><a href="http://afilmla.blogspot.com/2014/03/">March 2014</a></li> <li><a href="http://afilmla.blogspot.com/2014/04/">April 2014</a></li> <li><a href="http://afilmla.blogspot.com/2015/02/">February 2015</a></li> <li><a href="http://afilmla.blogspot.com/2015/04/">April 2015</a></li> <li><a href="http://afilmla.blogspot.com/2015/08/">August 2015</a></li> <li><a href="http://afilmla.blogspot.com/2015/09/">September 2015</a></li> <li><a href="http://afilmla.blogspot.com/2016/06/">June 2016</a></li> <li><a href="http://afilmla.blogspot.com/2017/03/">March 2017</a></li> <li><a href="http://afilmla.blogspot.com/2017/11/">November 2017</a></li> <li><a href="http://afilmla.blogspot.com/2018/01/">January 2018</a></li> <li><a href="http://afilmla.blogspot.com/2018/02/">February 2018</a></li> <li><a href="http://afilmla.blogspot.com/2018/05/">May 2018</a></li> <li><a href="http://afilmla.blogspot.com/2018/08/">August 2018</a></li> <li><a href="http://afilmla.blogspot.com/2018/11/">November 2018</a></li> <li><a href="http://afilmla.blogspot.com/2018/12/">December 2018</a></li> <li><a href="http://afilmla.blogspot.com/2019/04/">April 2019</a></li> <li><a href="http://afilmla.blogspot.com/2019/06/">June 2019</a></li> <li><a href="http://afilmla.blogspot.com/2019/07/">July 2019</a></li> <li><a href="http://afilmla.blogspot.com/2019/08/">August 2019</a></li> <li><a href="http://afilmla.blogspot.com/2020/11/">November 2020</a></li> <li><a href="http://afilmla.blogspot.com/2021/02/">February 2021</a></li> <li><a href="http://afilmla.blogspot.com/2021/04/">April 2021</a></li> <li><a href="http://afilmla.blogspot.com/2022/02/">February 2022</a></li> <li><a href="http://afilmla.blogspot.com/2023/06/">June 2023</a></li> <li><a href="http://afilmla.blogspot.com/2023/10/">October 2023</a></li> </ul> <br><script type="text/javascript" src="http://jh.revolvermaps.com/2/0.js?i=7xnlxxg57sn&amp;d=2&amp;p=3&amp;b=1&amp;w=193&amp;g=1&amp;f=arial&amp;fs=12&amp;r=0&amp;c0=362b05&amp;c1=375363&amp;c2=000000&amp;ic0=0&amp;ic1=0" async="async"></script> <script type="text/javascript" src="http://feedjit.com/serve/?vv=1515&amp;tft=3&amp;dd=0&amp;wid=&amp;pid=0&amp;proid=0&amp;bc=135&amp;tc=ccc&amp;brd1=2D4E70&amp;lnk=B5CDE6&amp;hc=ccc&amp;hfc=2A556B&amp;btn=1E2224&amp;ww=200&amp;wne=10&amp;srefs=0"></script><noscript><a href="http://feedjit.com/">Live Traffic Stats</a></noscript> <script type="text/javascript" src="//rf.revolvermaps.com/0/0/2.js?i=5pr9g63ud5e&amp;m=0&amp;s=178&amp;c=ff0000&amp;t=1" async="async"></script> <p id="powered-by"> <!-- br><a href="http://www.blogger.com"><img src="http://buttons.blogger.com/bloggerbutton1.gif" alt="Powered by Blogger" /></a--></p> </div></div> <!-- End #sidebar --> </div> <!-- End #content --> <!-- Begin #footer --> <div id="footer"><hr /> <p>Copyright © 2006-2023 <a href="http://www.afilm.com/">A. Film L.A., Inc., Los Angeles & Denmark.</a> All rights reserved.</p> <p><a href="http://www.afilm.com/"> <!-- img src="http://www.skydebanen.net/~hp/AFilmLAblog/pix/AFLOGOcob.gif" border="0" --> <img src="https://www.afilmla.com/blog/AFLOGOcob.gif" border="0"> </a></p> </div> <!-- End #footer --> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-44010318-3', 'auto'); ga('require', 'linkid', 'linkid.js'); ga('send', 'pageview'); </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10