'소스/웹'에 해당되는 글 3건

  1. 2011.07.02 Numeric HTML entity
  2. 2011.07.02 플래시 타이틀 소스
  3. 2011.06.30 SyntaxHighlighter 3.0.83

  =
! = !
" = "
# = #
$ = $
% = %
& = &
' = '
( = (
) = )
* = *
+ = +
, = ,
- = -
. = .
/ = /
0 = 0
1 = 1
2 = 2
3 = 3
4 = 4
5 = 5
6 = 6
7 = 7 
8 = 8
9 = 9
: = :
&#59; = ;
&#60; = <
&#61; = =
&#62; = >
&#63; = ?
&#64; = @
&#65; = A
&#66; = B
&#67; = C
&#68; = D
&#69; = E
&#70; = F
&#71; = G
&#72; = H
&#73; = I
&#74; = J
&#75; = K
&#76; = L
&#77; = M
&#78; = N
&#79; = O
&#80; = P
&#81; = Q
&#82; = R
&#83; = S
&#84; = T
&#85; = U
&#86; = V
&#87; = W
&#88; = X
&#89; = Y
&#90; = Z
&#91; = [
&#92; =
&#93; = ]
&#94; = ^
&#95; = _
&#96; = `
&#97; = a
&#98; = b
&#99; = c
&#100; = d
&#101; = e
&#102; = f
&#103; = g
&#104; = h
&#105; = i
&#106; = j
&#107; = k
&#108; = l
&#109; = m
&#110; = n
&#111; = o
&#112; = p
&#113; = q
&#114; = r
&#115; = s
&#116; = t
&#117; = u
&#118; = v
&#119; = w
&#120; = x
&#121; = y
&#122; = z
&#123; = {
&#124; = |
&#125; = }
&#126; = ~

'소스 > ' 카테고리의 다른 글

플래시 타이틀 소스  (0) 2011.07.02
SyntaxHighlighter 3.0.83  (0) 2011.06.30
Posted by lemonT


ActionScript2
Stage.align="LT";
Stage.scaleMode = "noScale";
Stage.showMenu = false;
var TF:TextFormat = new TextFormat();
sx = Stage.width;
TF.letterSpacing = -3.000000E-001;
if (_root.isContent == "Y"){
	//tit_txt.text = "<a href=" + _root.titleLink + ">" + _root.titleText + "</a>";
	tit_txt.htmlText = "<a href=\'" + _root.titleLink + "\'>" + _root.titleText + "</a>";
	tit_txt.setTextFormat(TF);
	detail_txt.htmlText = " <a href=\'" + _root.cateLink + "\'>" + _root.detailText + "</a>" +  " | "
						 + _root.dateText;
	tit_txt.autoSize = true;
	detail_txt.autoSize = true;
	/* if(tit_txt._width>(sx-10)){
		exc = (((sx-10)/tit_txt._width+20))*100-1;
		tit_txt._yscale = tit_txt._xscale=exc;
		tit_txt.autoSize = true;
		tit_txt._x = 4;
		//tit_txt.autoSize = true;
	}
	tit_txt._x = (int(((sx-10)-tit_txt._width)/2))+8
	detail_txt._x = (int(((sx-10)-detail_txt._width)/2))+8 */
}else{
	tit_txt.htmlText = _root.titleText;
	tit_txt.setTextFormat(TF);
	detail_txt._visible = true;
}


skin.html
<head>
	...
<script language="javascript"  src="./images/flashWrite.js" type="text/javascript">
	...
</head>
	...
<div class="titleWrap">
<script language="javascript">
flashWrite("./images/title.swf","650","50","title_flash","#ffffff","isContent=Y
	&titleText=* &titleLink=
	&detailText=
	&dateText=&cateLink=");
</script>
	...


참조 : http://www.panopt.net/tt/171

'소스 > ' 카테고리의 다른 글

Numeric HTML entity  (0) 2011.07.02
SyntaxHighlighter 3.0.83  (0) 2011.06.30
Posted by lemonT


<!-- skin.html <head>사이에 입력 --> <link rel="stylesheet" type="text/css" href="./images/shCoreDefault.css" /> <!-- skin.html </s_t3>위에 입력 --> <!-- SyntaxHighlighter 시작 --> <script type="text/javascript" src="./images/shCore.js"></script> <script type="text/javascript" src="./images/shAutoloader.js"></script> <script type="text/javascript"> //<![CDATA[ SyntaxHighlighter.autoloader( 'applescript ./images/shBrushAppleScript.js', 'actionscript3 as3 ./images/shBrushAS3.js', 'bash shell ./images/shBrushBash.js', 'coldfusion cf ./images/shBrushColdFusion.js', 'cpp c ./images/shBrushCpp.js', 'c# c-sharp csharp ./images/shBrushCSharp.js', 'css ./images/shBrushCss.js', 'delphi pascal ./images/shBrushDelphi.js', 'diff patch pas ./images/shBrushDiff.js', 'erl erlang ./images/shBrushErlang.js', 'groovy ./images/shBrushGroovy.js', 'java ./images/shBrushJava.js', 'jfx javafx ./images/shBrushJavaFX.js', 'js jscript javascript ./images/shBrushJScript.js', 'perl pl ./images/shBrushPerl.js', 'php ./images/shBrushPhp.js', 'text plain ./images/shBrushPlain.js', 'py python ./images/shBrushPython.js', 'ruby rails ror rb ./images/shBrushRuby.js', 'sass scss ./images/shBrushSass.js', 'scala ./images/shBrushScala.js', 'sql ./images/shBrushSql.js', 'vb vbnet ./images/shBrushVb.js', 'xml xhtml xslt html ./images/shBrushXml.js' ); SyntaxHighlighter.config.bloggerMode = true; // SyntaxHighlighter.config.stripBrs = true; // SyntaxHighlighter.defaults['html-script'] = True; SyntaxHighlighter.all(); //]]> </script> <!-- SyntaxHighlighter 끝 --> <!-- 포스팅예 --> <PRE class=brush:html;first-line:6;highlight:[11,15,27]> 내용 </pre>

'소스 > ' 카테고리의 다른 글

Numeric HTML entity  (0) 2011.07.02
플래시 타이틀 소스  (0) 2011.07.02
Posted by lemonT