注冊(cè) | 登錄讀書好,好讀書,讀好書!
讀書網(wǎng)-DuShu.com
當(dāng)前位置: 首頁(yè)出版圖書科學(xué)技術(shù)計(jì)算機(jī)/網(wǎng)絡(luò)圖形圖像、多媒體、網(wǎng)頁(yè)制作FlashFlash MX ActionScript實(shí)例字典

Flash MX ActionScript實(shí)例字典

Flash MX ActionScript實(shí)例字典

定 價(jià):¥48.00

作 者: 龍馬工作室編著
出版社: 機(jī)械工業(yè)出版社
叢編項(xiàng):
標(biāo) 簽: Flash

ISBN: 9787111120629 出版時(shí)間: 2003-05-01 包裝: 簡(jiǎn)裝本
開(kāi)本: 26cm 頁(yè)數(shù): 496 字?jǐn)?shù):  

內(nèi)容簡(jiǎn)介

  ActionScript是FlashMX所使用的編程語(yǔ)言,它使得網(wǎng)頁(yè)具有更強(qiáng)的交互功能。從Flash 5升級(jí)到FlashMX,最重要的就是ActionScript的升級(jí)。ActionScript增加了大量的對(duì)象,特別是對(duì)MovieClip的控制能力有了大幅度的提升;新提出了組件的概念,并提供了大量組件供編程使用。本書是一本關(guān)于Flash MX ActionScript的實(shí)例字典。本書內(nèi)容按照語(yǔ)法元素進(jìn)行分類,分成動(dòng)作(可以理解為ActionScript的關(guān)鍵字)、運(yùn)算符、函數(shù)、常量與屬性、對(duì)象幾大類,每個(gè)章節(jié)按照功能進(jìn)行分類,便于讀者查找。本書列舉了Flash MX ActionScript全部的動(dòng)作、運(yùn)算符、函數(shù)、常量與屬性。對(duì)于每個(gè)編程元素,都給出至少一段示例代碼和一個(gè)可執(zhí)行的swf文件。本書可作為廣大Flash從業(yè)人員,F(xiàn)lash愛(ài)好者的案頭參考工具書。對(duì)于初學(xué)者系統(tǒng)學(xué)習(xí)ActionScript,也是一本很好的教材。

作者簡(jiǎn)介

暫缺《Flash MX ActionScript實(shí)例字典》作者簡(jiǎn)介

圖書目錄

第1章 動(dòng)作
1.1 影片控制
1.1.1 gotoAndPlay
1.1.2 gotoAndStop
1.1.3 on
1.1.4 play
1.1.5 stop
1.1.6 stopAllSounds
1.2 瀏覽器
1.2.1 fscommand
1.2.2 getURL
1.2.3 loadMovie
1.2.4 loadVariables
1.2.5 unloadMovie
1.3 影片剪輯控制
1.3.1 duplicateMovieClip
1.3.2 onClipEvent
1.3.3 removeMovieClip
1.3.4 setProperty
1.3.5 startDrag
1.3.6 stopDrag
1.3.7 updateAfterEvent
1.4 變量
1.4.1 delete
1.4.2 var
1.4.3 with
1.5.1 break
1.5.2 switch
1.5.3 case
1.5.4 default
1.5.5 continue
1.5.6 do…while
1.5.7 while
1.5.8 for
1.5.9 for..in
1.5.10 if
1.5.11 else
1.5.12 elseif
1.6 打印
1.7 用戶定義的函數(shù)
1.7.1 call
1.7.2 function
1.7.3 return
1.8 其他動(dòng)作
1.8.1 #initclip
1.8.2 #endinitclip
1.8.3 #include
1.8.4 setInterval
1.8.5 clearInterval
1.8.6 comment
1.8.7 evaluate
1.8.8 trace
第2章 運(yùn)算符
2.1 按位運(yùn)算符.
2.1.1 &(按位邏輯與)
2.1.2 ~(按位邏輯非)
2.1.3 |(按位或)
2.1.4 ^(按位異或)
2.1.5 <>(向左移位)
2.1.6 >>(向右移位)
2.1.7 >>>(無(wú)符號(hào)向右移位)
2.2 比較運(yùn)算符
2.2.1 ==(等于)
2.2.2 ===(全等)
2.2.3 !=(不等于)
2.2.4 !=(不全等)
2.2.5 <(小于)
2.2.6 <=(小于或等于)
2.2.7 >(大于)
2.2.8 >=(大于等于)
2.3 賦值
2.3.1 =(賦值)
2.3.2 +=(加法賦值)
2.3.3 -=(減法賦值)
2.3.4 %=(模賦值)
2.3.5 &=(邏輯與賦值)
2.3.6 *=(相乘賦值)
2.3.7 |=(按位或賦值)
2.3.8 /=(除賦值)
2.3.9 ^=(異或賦值)
2.3.10 <<=(左移賦值)
2.3.11 >>=(右移賦值)
2.3.12 >>>=(無(wú)符號(hào)右移賦值)
2.4 邏輯運(yùn)算符
2.4.1 ! (邏輯非)
2.4.2 &&(邏輯與)
2.4.3 ||(邏輯或)
2.5 算術(shù)運(yùn)算符
2.5.1 +(加號(hào))
2.5.2 -(減/負(fù)號(hào))
2.5.3 %(模)
2.5.4 *(乘號(hào))
2.5.5 /(除號(hào))
2.6 其他運(yùn)算符
2.6.1 ""(字符串分隔符)
2.6.2 ()(括號(hào))
2.6.3 ++(遞增)
2.6.4 --(遞減)
2.6.5 ?:(條件判斷)
2.6.6 instanceof
2.6.7 typeof
2.6.8 void
第3章 函數(shù)
3.1 數(shù)學(xué)函數(shù)
3.1.1 isFinite
3.1.2 isNaN
3.1.3 parseFloat
3.1.4 parselnt
3.2 轉(zhuǎn)換函數(shù)
3.2.1 Boolean
3.2.2 Number
3.2.3 Object
3.2.4 String
3.3 其他函數(shù)
3.3.1 escape
3.3.2 unescape
3.3.3 eval
3.3.4 getProperty
3.3.5 getTimer
3.3.6 getVersion
3.3.7 targetPath.
第4章 常量與屬性
4.1 常量
4.1.1 true
4.1.2 false
4.1.3 newline
4.1.4 null
4.1.5 undefined
4.2 屬性
4.2.1 _global
4.2.2 _alpha
4.2.3 currentframe
4.2.4 _droptarget
4.2.5 _focusrect
4.2.6 framesloaded
4.2.7 _height
4.2.8 width
4.2.9 name
4.2.10 _quality
4.2.11 rotation
4.2.12 soundbuftime
4.2.13 target
4.2.14 totalframes
4.2.15 url
4.2.16 visible
4.2.17 x
4.2.18 _y
4.2.19 xmouse
4.2.20 _ymouse
4.2.21 xscale
4.2.22 _yscale
第5章 對(duì)象
5.1 arguments
5.1.1 callee
5.1.2 length
5.2 Array
5.2.1 new Array
5.2.2 concat
5.2.3 join
5.2.4 pop
5.2.5 push
5.2.6 reverse
5.2.7 shift
5.2.8 unshift
5.2.9 slice
5.2.10 splice
5.2.11 sort
5.2.12 sortOn
5.2.13 toString
5.2.14 length
5.3 Boolean
5.3.1 new Boolean
5.3.2 toString
5.4 Date
5.4.1 new Date
5.4.2 getDate
5.4.3 getDay
5.4.4 getYear
5.4.5 getFullYear
5.4.6 getHours
5.4.7 getMinutes
5.4.8 getSeconds
5.4.9 getMilliseconds
5.4.10 getTime
5.4.11 getMonth
5.4.12 getTimezoneOffset
5.4.13 getUTCDate
5.4.14 getUTCDay
5.4.15 getUTCFullYear
5.4.16 getUTCHours
5.4.17 getUTCMilliseconds
5.4.18 getUTCMinutes
5.4.19 getUTCMonth
5.4.20 getUTCSeconds
5.4.21 setDate
5.4.22 setFullYear
5.4.23 setHours
5.4.24 setMilliseconds
5.4.25 setMinutes
5.4.26 setYear
5.4.27 setMonth
5.4.28 setSeconds
5.4.29 setTime
5.4.30 setUTCDate
5.4.31 SetUTCFullYear
5.4.32 SetUTCHours
5.4.33 SetUTCMilliseconds
5.4.34 SetUTCMinutes
5.4.35 SetUTCMonth
5.4.36 SetUTCSeconds
5.4.37 ToString
5.4.38 UTC
5.5 Function
5.5.1 Apply
5.5.2 Call
5.6 Math
5.6.1 abs
5.6.2 acos
5.6.3 asin
5.6.4 atan
5.6.5 atan2
5.6.6 ceil
5.6.7 cos
5.6.8 exp
5.6.9 floor
5.6.10 log
5.6.11 max
5.6.12 min
5.6.13 pow
5.6.14 random
5.6.15 round
5.6.16 sin
5.6.17 sqrt
5.6.18 tan
5.6.19 E
5.6.20 LN2
5.6.21 LN10
5.6.22 LOG2E
5.6.23 LOG10E
5.6.24 PI
5.6.25 SQRT1_2
5.6.26 SQRT2
5.7 Number
5.7.1 new Number
5.7.2 toString
5.7.3 valueOf
5.7.4 MAX VALUE
5.7.5 MIN VALUE
5.7.6 NaN
5.7.7 NEGATIVE iNFINITY
5.8 Object
5.8.1 new Object
5.8.2 addProperty
5.8.3 registerClass
5.8.4 toString
5.8.5 watch
5.8.6 unwatch
5.9 String
5.9.1 new String
5.9.2 charAt
5.9.3 charCodeAt
5.9.4 concat
5.9.5 fromCharCode
5.9.6 indexOf
5.9.7 lastIndexOf
5.9.8 slice
5.9.9 split
5.9.10 substr
5.9.11 substring
5.9.12 toLowerCase
5.9.13 toUpperCase
5.9.14 length
5.10 Button
5.10.1 GetDepth
5.10.2 Enabled
5.10.3 TabEnabled
5.10.4 TabIndex
5.10.5 TrackAsMenu
5.10.6 UseHandCursor
5.10.7 OnDragOut
5.10.8 OnDragOver
5.10.9 OnKillFocus
5.10.10 OnPress
5.10.11 OnRelease
5.10.12 OnReleaseOutside
5.10.13 OnRollOut
5.10.14 OnRollOver
5.10.15 OnSetFocus
5.11 Capabilities
5.11.1 hasAudio
5.11.2 hasMP3
5.11.3 pixelAspectRatio
5.11.4 sereenColor
5.11.5 screenDPI
5.11.6 sereenResolutionx
5.11.7 sereenResolutionY
5.12 Color
5.12.1 new Color
5.12.2 getRGB
5.12.3 setRGB
5.12.4 setTransform
5.12.5 getTransform
5.13 Key
5.13.1 AddListener
5.13.2 etAscii
5.13.3 GetCode
5.13.4 IsDown
5.13.5 IsToggled
5.13.6 RmoveList
5.13.7 BACKSPACE
5.13.8 CAPSLOCK
5.13.9 CONTROL
5.13.10 DELETEKEY
5.13.11 DOWN
5.13.12 END
5.13.13 ENTER
5.13.14 ESCAPE
5.13.15 OME
5.13.16 INSERT
5.13.17 LEFT
5.13.18 PGDN
5.13.19 PGUP
5.13.20 RIGHT
5.13.21 SHIFT
5.13.22 SPACE
5.13.23 TAB
5.13.24 UP
5.13.25 OnKeyDown
5.13.26 OnKeyUp
5.14 Mouse
5.14.1 AddListener
5.14.2 removeList
5.14.3 show
5.14.4 Hide
5.14.5 onMouseDown
5.14.6 onMouseMove
5.14.7 onMouseUp
5.15 MovieClip
5.15.1 AttachMovie
5.15.2 ereateEmptyMovieClip
5.15.3 createTextField
5.15.4 duplicateMovieClip
5.15.5 getBounds
5.15.6 getBytesLoaded
5.15.7 getBytesTotal
5.15.8 getDepth
5.15.9 getURL
5.15.10 globalToLocal
5.15.11 localToGlobal
5.15.12 gotoAndPlay
5.15.13 gotoAndStop
5.15.14 hitTest
5.15.15 loadMovie
5.15.16 unloadMovie
5.15.17 loadVariables
5.15.18 nextFrame
5.15.19 play
5.15.20 stop
5.15.21 prevFrame
5.15.22 removeMovieClip
5.15.23 setMask
5.15.24 startDrag
5.15.25 stopDrag
5.15.26 swapDepths
5.15.27 lineTo
5.15.28 curveTo
5.15.29 beginFill
5.15.30 beginGradieFile
5.15.31 endFill
5.15.32 clear
5.15.33 lineStyle
5.15.34 moveTo
5.15.35 enabled
5.15.36 hitArea
5.15.37 tabChildren
5.15.38 tabEnabled
5.15.39 tablndex
5.15.40 trackAsMenu
5.15.41 useHandCursor
5.15.42 onDragOut
5.15.43 onDragOver
5.15.44 onEnterFrame
5.15.45 onKeyDown
5.15.46 onKeyUp
5.15.47 onMouseDown
5.15.48 onMouseMove
5.15.49 onMouseUp
5.15.50 onPress
5.15.51 onRelease
5.15.52 onReleaseOutside
5.15.53 onRollOut
5.15.54 onRollOver
5.16 Selection
5.16.1 AddListener
5.16.2 removeListener
5.16.3 getBeginIndex
5.16.4 getCaretIndex
5.16.5 getEndIndex
5.16.6 getFocus
5.16.7 setFocus
5.16.8 setSelection
5.16.9 onSetFocus
5.17 Sound
5.17.1 newSound
5.17.2 attachSound
5.17.3 getBytesLoaded
5.17.4 getBytesTotal
5.17.5 setPan
5.17.6 getPan
5.17.7 setVolume
5.17.8 getVolume
5.17.9 setTrans form
5.17.10 getTransform
5.17.11 start
5.17.12 stop
5.17.13 duration
5.17.14 position
5.17.15 onLoad
5.17.16 onSoundComplete
5.18 Stage
5.18.1 AddListener
5.18.2 removeListener
5.18.3 Height
5.18.4 width
5.18.5 ScaleMode
5.18.6 ShowMenu
5.18.7 OnResize
5.19 TextField
5.19.1 addListener
5.19.2 getDepth
5.19.3 getFontList
5.19.4 background
5.19.5 backgroundColor
5.19.6 border
5.19.7 borderColor
5.19.8 length
5.19.9 hscroll
5.19.10 scroll
5.19.11 bottomScroll
5.19.12 setTextFormat
5.19.13 getTextFormat
5.19.14 replaceSel
5.19.15 setNewTextFormat
5.19.16 getNewTextFormat
5.19.17 removeTextField
5.19.18 autoSize
5.19.19 embedFonts
5.19.20 html
5.19.21 htmlText

本目錄推薦

掃描二維碼
Copyright ? 讀書網(wǎng) ranfinancial.com 2005-2020, All Rights Reserved.
鄂ICP備15019699號(hào) 鄂公網(wǎng)安備 42010302001612號(hào)