User Pascal Immerzeel - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T18:52:57Zhttp://stackoverflow.com/feeds/user/1729http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/635103/flash-cant-reach-movie-clip/676548#6765480Answer by Pascal Immerzeel for Flash, cant reach movie clip.Pascal Immerzeel2009-03-24T08:40:10Z2009-03-24T08:40:10Z<p>If I understand correctly, the code is on the button and you want the parent timeline to react on roll actions.</p>
<p>so try the following:</p>
<pre><code>on (rollOver) {
_parent.gotoAndPlay('fadein');
}
</code></pre>
<p>The key thing is the <strong>_parent</strong>, which obviously will address the parent of the button.</p>
http://stackoverflow.com/questions/164382/flash-banners-conflicting-with-pop-up-blockers/615018#6150180Answer by Pascal Immerzeel for Flash Banners Conflicting with Pop-Up Blockers?Pascal Immerzeel2009-03-05T14:33:40Z2009-03-05T14:33:40Z<p>Use this code, with <strong>allowscriptaccess='always'</strong> and <strong>wmode='transparant'</strong> or <strong>'opaque'</strong> in the HTML code on the Flash element.</p>
<pre><code>private function click(event : MouseEvent) : void {
getURL(LoaderInfo(root.loaderInfo).parameters.clic kTag);
}
private function getURL(url : String, window : String = "_blank") : void {
var browser : String = ExternalInterface.call("function getBrowser(){return
navigator.userAgent}") as String;
if (browser.indexOf("Firefox") != -1 || browser.indexOf("MSIE 7.0") != -1) {
ExternalInterface.call('window.open("' + url + '","' + window + '")');
} else {
navigateToURL(new URLRequest(url), window);
}
}
</code></pre>
http://stackoverflow.com/questions/4689/recommended-fonts-for-programming/56010#5601019Answer by Pascal Immerzeel for Recommended Fonts for Programming?Pascal Immerzeel2008-09-11T08:18:36Z2008-09-11T08:18:36Z<p>I use <a href="http://www.bitstream.com/font_rendering/products/dev_fonts/vera.html" rel="nofollow">Bitstream Vera Sans Mono</a>, but you need to activate ClearType to get it readable .</p>
<p>I like the 'Illegal1 = O0' readablility test, mentioned earlier in this thread, thanks for that.</p>
http://stackoverflow.com/questions/46332/how-to-organize-a-complex-flash-project/51348#513481Answer by Pascal Immerzeel for How to organize a complex Flash projectPascal Immerzeel2008-09-09T07:27:21Z2008-09-09T07:27:21Z<p>I adopted the Project Naming guidelines from Blitz:</p>
<p><a href="http://labs.blitzagency.com/?p=20" rel="nofollow">Blitz Project Naming Conventions & Organizational Guidelines</a></p>
<p>My DEV_Source is divided in database/flash/flex directories.</p>
<p>The Flex directory is standard to the Adobe conventions, but the flash has a custom setup.</p>
<p>bin -- Output of SWF, contains JS and index.html<br />
classes -- AS3 code<br />
doc -- AS Doc output of code <br />
libs -- 3rd party libraries and components<br />
src -- FLA files (set the Publish settings to compile in bin)<br />
test -- AS Unit test cases of classes<br /></p>
http://stackoverflow.com/questions/33441/what-free-and-preferably-open-source-development-tools-for-windows-would-you-reco/51336#513360Answer by Pascal Immerzeel for What free and preferably open source development tools for windows would you recomend?Pascal Immerzeel2008-09-09T07:09:34Z2008-09-09T07:09:34Z<p>FLASH DEVELOPMENT</p>
<p>Not all are open source, but at least free to use.</p>
<ul>
<li>Eclipse </li>
<li>Vim</li>
<li>Flex SDK</li>
<li>FlashDevelop</li>
<li>Subversion / TortoiseSVN</li>
<li>FreeCommander</li>
<li>Firefox (Firebug)</li>
<li>Powerflasher SOS Max</li>
<li>WinSCP</li>
<li>Star-Tools SQL-Front</li>
</ul>
http://stackoverflow.com/questions/14435/class-designer/14460#144600Answer by Pascal Immerzeel for Class designerPascal Immerzeel2008-08-18T11:05:14Z2008-08-18T11:05:14Z<p>I use pen and paper. </p>
<p>For all planning purposes, it's the fastest way.
I get lost in layout and finetuning when I use a UML package.</p>
<p>But that is my burden.. :-)</p>
http://stackoverflow.com/questions/164382/flash-banners-conflicting-with-pop-up-blockers/615018#615018Comment by Pascal Immerzeel on Flash Banners Conflicting with Pop-Up Blockers?Pascal Immerzeel2009-06-02T09:47:39Z2009-06-02T09:47:39ZWe choose to go back to AS2 again for simple sales banners. Mainly because of this problem.
Also most banner hosting providers don't support AS3(!).
We do use it for Rich Media Layers/Expandables and other formats, because the hosting provider for those banners supports it.