This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type="text/css"> | |
.title { | |
color:red; | |
} | |
.square { | |
background:yellow; | |
border:1px solid red; | |
text-align:center; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Frame 1 | |
var total_bytes = _root.getBytesTotal(); | |
var loaded_bytes = _root.getBytesLoaded(); | |
percent = loaded_bytes/total_bytes; | |
if(percent >=1) gotoAndPlay("_afterLoad"); | |
// Frame 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Como resolver o problema de "broken pipe" do AS3 Bundle no TextMate. | |
#1 Dê permissão de escrita no diretório do Flex SDK (chmod -Rf 777 Diretorio) | |
#2 Configure corretamente o caminho no TextMate | |
#1 TextMate > Preferences | |
#2 Advanced > Shell Variables | |
#3 TM_FLEX_PATH : caminho do diretório do SDK (ex.:/Applications/Util/flex_sdk_3) | |
#3 Desligue o Daemon | |
#4 Reinicie o TextMate | |
#5 Ligue o Daemon |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="320" height="240" id="ID_SWF" name="ID_SWF"> | |
<param name="movie" value="YOUR_SWF.swf"> | |
<param name="allowfullscreen" value="true"> | |
<param name="allowscriptaccess" value="always"> | |
<param name="flashvars" value=""> | |
<embed id="ID_SWF" | |
name="ID_SWF" | |
src="YOUR_SWF.swf" | |
width="320" | |
height="240" |
NewerOlder