Adobe® Flash® Lite 1.x ActionScript™ 语言参考

Size: px
Start display at page:

Download "Adobe® Flash® Lite 1.x ActionScript™ 语言参考"

Transcription

1 ADOBE FLASH LITE 1.x Adobe ActionScript

2 2010/4/28 Copyright 2010 Adobe Systems Incorporated. All rights reserved. Adobe Flash Lite 1.x ActionScript This Language Reference is licensed for use under the terms of the Creative Commons Attribution Non-Commercial 3.0 License. This License allows users to copy, distribute, and transmit the user guide for noncommercial purposes only so long as (1) proper attribution to Adobe is given as the owner of the guide; and (2) any reuse or distribution of the guide contains a notice that use of the guide is governed by these terms. The best way to provide notice is to include the following link. To view a copy of this license, visit Adobe, the Adobe logo, ColdFusion, and Flash are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries. Symbian and all Symbian based marks and logos are trademarks of Symbian Limited. All other trademarks are the property of their respective owners. Adobe Systems Incorporated, 345 Park Avenue, San Jose, California 95110, USA.

3 2010/4/28 iii 1 : Samples : Flash Lite call() chr() duplicatemovieclip() eval () getproperty() gettimer() geturl() gotoandplay() gotoandstop() ifframeloaded() int() length() loadmovie() loadmovienum() loadvariables() loadvariablesnum() mbchr() mblength() mbord() mbsubstring() nextframe() nextscene() Number() on() ord() play() prevframe() prevscene() random() removemovieclip() set() setproperty() stop() stopallsounds()

4 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT iv String() substring() telltarget() togglehighquality() trace() unloadmovie() unloadmovienum() : Flash Lite / (Forward slash) _alpha _currentframe _focusrect _framesloaded _height _highquality _level maxscroll _name _rotation scroll _target _totalframes _visible _width _x _xscale _y _yscale : Flash Lite break case continue do..while else else if for if switch while

5 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT v 5 : Flash Lite add (string concatenation) = (addition assignment) and = (assignment) /* (block comment) , (comma) // (comment) ?: (conditional) (decrement) / (divide) /= (division assignment) (dot) (increment) && (logical AND) ! (logical NOT) (logical OR) % (modulo) %= (modulo assignment) *= (multiplication assignment) * (multiply) (numeric add) == (numeric equality) > (numeric greater than) >= (numeric greater than or equal to) <> (numeric inequality) < (numeric less than) <= (numeric less than or equal to) () (parentheses) " " (string delimiter) eq (string equality) gt (string greater than) ge (string greater than or equal to) ne (string inequality) lt (string less than) le (string less than or equal to) (subtract) = (subtraction assignment) : Flash Lite _capcompoundsound

6 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT vi _cap _caploaddata _capmfi _capmidi _capmms _capmp _capsmaf _capsms _capstreamsound _cap4waykeyas $version fscommand() Launch fscommand2() Escape FullScreen GetBatteryLevel GetDateDay GetDateMonth GetDateWeekday GetDateYear GetDevice GetDeviceID GetFreePlayerMemory GetLanguage GetLocaleLongDate GetLocaleShortDate GetLocaleTime GetMaxBatteryLevel GetMaxSignalLevel GetMaxVolumeLevel GetNetworkConnectStatus GetNetworkName GetNetworkRequestStatus GetNetworkStatus GetPlatform GetPowerSource GetSignalLevel GetTimeHours GetTimeMinutes GetTimeSeconds GetTimeZoneOffset

7 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT vii GetTotalPlayerMemory GetVolumeLevel Quit ResetSoftKeys SetInputTextType SetQuality SetSoftKeys StartVibrate StopVibrate Unescape

8 2010/4/ : Adobe Macromedia Flash Lite Flash Lite 1.x ActionScript Flash Lite 1.x ActionScript Adobe Macromedia Flash 4 ActionScript ActionScript Samples ActionScript Flash Lite Flash Lite ActionScript.zip.zip Samples ActionScript ActionScript ("")

9 2010/4/ : Flash Lite Adobe Macromedia Flash Lite 1.1 ActionScript call() chr() duplicatemovieclip() eval () getproperty() gettimer() geturl() gotoandplay() gotoandstop() ifframeloaded() int() length() loadmovie() loadmovienum() loadvariables() loadvariablesnum() mbchr() mblength() mbord() mbsubstring() nextframe() nextscene() Number() on() ord() play() ASCII SWF SWF URL URL SWF SWF Flash Lite SWF SWF Flash Lite Adobe ColdFusion CGI ASP PHP Perl Flash Lite SWF ColdFusion CGI ASP PHP Perl Flash Lite SWF ASCII 1 ASCII

10 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 3 prevframe() prevscene() 21 random() removemovieclip() set() setproperty() stop() stopallsounds() String() substring() telltarget() togglehighquality() trace() unloadmovie() unloadmovienum() 1 1 duplicatemovieclip() SWF SWF statement(s) target Flash Lite SWF Flash Lite loadmovie()loadmovienum() duplicatemovieclip() Flash Lite loadmovie()loadmovienum() duplicatemovieclip() call() call(frame) call(movieclipinstance:frame) frame movieclipinstance call() call() call() ActionScript call() ActionScript

11 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 4 myscript // to execute functions in frame with label "myscript" thisframe = "myscript"; trace ("Calling the script in frame: " add thisframe); // to execute functions in any other frame on the same timeline call("myscript"); chr() chr(number) number ASCII ASCII 65 A myvar myvar = chr(65); trace (myvar);// Output: A duplicatemovieclip() duplicatemovieclip(target, newname, depth) target newname depth

12 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 5 SWF 1 removemovieclip() duplicatemovieclip() newname originalclip 10 newclip x 100 duplicatemovieclip("originalclip", "newclip", 10); setproperty("newclip", _x, 100); for duplicatemovieclip() clip1 clip2 clip3 for (i = 1; i <= 3; i++) { newname = "clip" add i; duplicatemovieclip("originalclip", newname); removemovieclip() eval () eval(expression) expression expression expression expression undefined eval() eval() "piece" + x piece3eval() y piece3 = "dangerous"; x = 3; y = eval("piece" add x); trace(y);// Output: dangerous.

13 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 6 name1 = "mike"; name2 = "debbie"; name3 = "logan"; for(i = 1; i <= 3; i++) { trace (eval("name" add i));// Output: mike, debbie, logan getproperty() getproperty(my_mc, property) my_mc property my_mc my_mc (_x) xpos = getproperty("person_mc", _x); trace (xpos); // output: -75 setproperty() gettimer() gettimer() SWF timeelapsed SWF

14 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 7 timeelapsed = gettimer(); trace (timeelapsed);// Output: milliseconds of time movie has been playing geturl() geturl(url [, window [, "variables"]]) url URL window HTML Flash Lite window _self _blank _parent _top variables GET POST GET URL POST HTTP URL URL URL Flash Lite 1.0 HTTP HTTPS mailto tel Flash Lite 1.1 SMS MMS Flash Lite geturl() geturl() geturl() geturl() ActionScript Flash Lite mobile.example.com myurl = " on(keypress "1") { geturl(myurl); GET POST GET URL firstname = "Gus"; lastname = "Richardson"; age = 92; geturl(" "_blank", "GET");

15 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 8 ActionScript POST HTTP firstname = "Gus"; lastname = "Richardson"; age = 92; geturl(" "POST"); address subject body Shift-JIS on (release, keypress "#"){ subject = " subject"; body = " body"; geturl("mailto:somebody@anywhere.com", "", "GET"); geturl() on (release, keypress "#"){ geturl("mailto:somebody@anywhere.com?cc=cc@anywhere.com&bcc=bcc@anywhere. com&subject=i am the subject&body=i am the body"); URL +subject +body subject body tel on (release, keypress "#"){ geturl("tel:117"); geturl() SMS mysms = "sms: ?body=sample sms message"; on(keypress "5") { geturl(mysms); geturl() MMS // mms example mymms = "mms: ?body=sample mms message"; on(keypress "6") { geturl(mymms); geturl() // file protocol example filepath = "file://c:/documents/flash/myapp/myvariables.txt"; on(keypress "7") { geturl(filepath);

16 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 9 gotoandplay() gotoandplay([scene,] frame) scene frame scene gotoandplay() 16 SWF on(keypress "7") { gotoandplay(16); gotoandstop() Flash 1.0 gotoandstop([scene,] frame) scene frame scene gotoandstop() 5 SWF on(keypress "8") { gotoandstop(5);

17 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 10 ifframeloaded() ifframeloaded([scene,] frame) { statement(s); scene frame statement(s) ifframeloaded SWF _framesloaded SWF _framesloaded ifframeloaded _framesloaded if else ifframeloaded SWF 10 trace() frame number 10 is loaded frame loaded: 10 ifframeloaded(10) { trace ("frame number 10 is loaded"); output = "frame loaded: 10"; _framesloaded int() int(value) value distance mydistance

18 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 11 distance = ; //trace ("distance = " add distance add " and rounded to:" add int(distance)); // Output: distance = 2.08 and rounded to: 2 mydistance = "3.8"; //trace ("mydistance = " add int(mydistance)); // Output: 3 length() length(expression) length(variable) expression variable "Hello" length("hello"); 5 = "someone@example.com"; if (length( ) > 6) { //trace (" appears to have enough characters to be valid"); loadmovie() loadmovie(url, target [, method]) url SWF URL URL 0 SWF URL file:/// target SWF

19 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 12 method HTTP GET POST GET URL POST HTTP SWF SWF Flash Lite SWF loadmovienum() loadmovie() SWF SWF SWF SWF SWF unloadmovie() loadmovie() SWF SWF circle.swf mysquare loadmovie("circle.swf", "mysquare"); // Equivalent statement: loadmovie("circle.swf", _level0.mysquare); _level loadmovienum() unloadmovie() unloadmovienum() loadmovienum() loadmovienum(url, level [, method]) url SWF URL URL 0 SWF Flash Lite Flash SWF SWF level Flash Lite SWF method HTTP GET POST GET URL POST HTTP SWF SWF Flash Lite Flash Lite SWF loadmovienum() SWF HTML SWF loadmovie() loadmovienum()

20 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 13 Flash Lite 0 loadmovienum() SWF Flash Lite SWF _leveln SWF N SWF SWF SWF SWF SWF 0 Flash Lite 0 0 SWF SWF unloadmovienum() loadmovienum() SWF SWF 2 loadmovienum(" 2); _level loadmovie() unloadmovienum() loadvariables() loadvariables(url, target [, variables]) url URL SWF Web url SWF target variables HTTP GET POST GET URL POST HTTP ColdFusion CGI Active Server Page (ASP) PHP Perl SWF URL MIME application/x-www-form-urlencoded CGI company=adobe&address=600+townsend&city=san+francisco&zip=94103 loadvariablesnum() loadvariables()

21 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 14 // load variables from text file on local file system (Symbian Series 60) on(release, keypress "1") { filepath = "file://c:/documents/flash/myapp/myvariables.txt"; loadvariables(filepath, _root); // load variables (from server) into a movieclip urlpath = " loadvariables(urlpath, "myclip_mc"); loadmovienum() loadvariablesnum() unloadmovie() loadvariablesnum() loadvariablesnum(url, level [, variables]) url URL SWF Web url SWF level Flash Lite variables HTTP GET POST GET URL POST HTTP ColdFusion CGI ASP PHP Perl Flash Lite SWF URL MIME application/x-www-form-urlencoded CGI company=adobe&address=600+townsend&city=san+francisco&zip=94103 Flash Lite SWF loadvariablesnum() SWF HTML SWF loadvariables() loadvariablesnum() geturl() loadmovie() loadmovienum() loadvariables()

22 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 15 mbchr() mbchr(number) number ASCII ASCII trace (mbchr(65)); // Output: A trace (mbchr(97)); // Output: a trace (mbchr(36)); // Output: $ mystring = mbchr(51) - mbchr(49); trace ("result = " add mystring);// Output: result = 2 mblength() mbsubstring() mblength() mblength(string) string mystring mystring = mbchr(36) add mbchr(50); trace ("string length = " add mblength(mystring)); // Output: string length = 2

23 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 16 mbchr() mbsubstring() mbord() mbord(character) character mystring mystring = "A"; trace ("ord = " add mbord(mystring));// Output: 65 mystring = "$120"; for (i=1; i<=length(mystring); i++) { char = substring(mystring, i, 1); trace ("char ord = " add mbord(char));// Output: 36, 49, 50, 48 mbchr() mbsubstring() mbsubstring() mbsubstring(value, index, count) value index count

24 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 17 mystring mystring = mbchr(36) add mbchr(49) add mbchr(50) add mbchr(48); trace (mbsubstring(mystring, 0, 2));// Output: $1 mbchr() nextframe() nextframe() on (release) { nextframe(); prevframe() nextscene() nextscene() 1

25 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 18 1 on(release) { nextscene(); prevscene() Number() Number(expression) expression expression expression expression expression expression true 1 expression false 0 expression expression e- 3 expression undefined -1 mystring mynumber 5 myresult Number() mystring = "55"; mynumber = Number(myString); myresult = mynumber + 5; trace (myresult); // Output: 60 trace (Number(true)); // Output: 1 on()

26 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 19 on(event) { // statement(s) statement(s) event event event ({) event press release rollout rollover keypress "key" 8 mytext maxscroll on (keypress "8") { if (mytext.scroll < mytext.maxscroll) { mytext.scroll++; ord() ord(character) character ASCII ASCII ord() A ASCII trace ("multibyte number = " add ord("a"));// Output: multibyte number = 65

27 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 20 play() play() if Steve play() Steve SWF alert stop(); if (name == "Steve") { play(); else { alert="you are not Steve!"; prevframe() prevframe() 1 on(release) { prevframe(); nextframe()

28 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 21 prevscene() prevscene() 1 on(release) { prevscene(); nextscene() random() random(value) value 0 value //pick random number between 0 and 5 mynumber = random(5); trace (mynumber); // Output: could be 0,1,2,3,4 //pick random number between 5 and 10 mynumber = random(5) + 5; trace (mynumber); // Output: could be 5,6,7,8,9

29 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 22 Flash Lite 1.1 // select random name from list mynames1 = "Mike"; mynames2 = "Debbie"; mynames3 = "Logan"; ran = random(3) + 1; ranname = "mynames" add ran; trace (eval(ranname));// Output: will be mike, debbie, or logan removemovieclip() removemovieclip(target) target duplicatemovieclip() duplicatemovieclip() second_mc duplicatemovieclip("person_mc", "second_mc", 1); second_mc:_x = 55; second_mc:_y = 85; removemovieclip("second_mc"); duplicatemovieclip() set() set(variable, expression) variable expression expression

30 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 23 variable SWF SWF true false SWF orig_x_pos ship x SWF on(release) { set("orig_x_pos", getproperty("ship", _x)); on(release) { orig_x_pos = ship._x; setproperty() setproperty(target, property, value/expression) target property value expression star _alpha 30% on(release) { setproperty("star", _alpha, "30"); getproperty()

31 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 24 stop() stop() SWF stop() on(release) { stop(); stopallsounds() stopallsounds() SWF SWF on(release) { stopallsounds(); String()

32 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 25 String(expression) expression expression expression expression expression true false expression (/) birthyearnum 1976 String() eq 1976 birthyearnum = 1976; birthyearstr = String(birthYearNum); if (birthyearstr eq "1976") { trace ("birthyears match"); substring() substring(string, index, count) string index count 1 String 0 Hello World origstring = "Hello World!"; newstring = substring(origstring, 0, 5); trace (newstring);// Output: Hello

33 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 26 telltarget() telltarget(target) { statement(s); target statement(s) true statement(s) target telltarget() telltarget() telltarget() telltarget() ball ball 1 stop() 5 telltarget() ball 2 on(keypress "5") { telltarget("ball") { gotoandplay(2); togglehighquality() togglehighquality() Flash Lite SWF Flash Lite SWF

34 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 27 on(release) { togglehighquality(); trace() trace(expression) expression Flash SWF expression SWF expression trace() JavaScript alert trace() SWF trace() while i = 0; while (i++ < 5){ trace("this is execution " add i); unloadmovie() unloadmovie(target) target Flash Lite loadmovie() loadmovienum() duplicatemovieclip() 3 draggable_mc movie.swf 4

35 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 28 on (keypress "3") { unloadmovie ("/draggable_mc"); loadmovienum("movie.swf", 4); 3 4 on (keypress "3") { unloadmovienum(4); loadmovie() unloadmovienum() unloadmovienum(level) level (_leveln) Flash Lite loadmovie() loadmovienum() duplicatemovieclip() Flash Lite SWF unloadmovienum() SWF HTML SWF loadmovienum()

36 2010/4/ : Flash Lite Adobe Macromedia Flash Lite 1.x / (Forward slash) _alpha _currentframe _focusrect _framesloaded _height _highquality _level maxscroll _name _rotation scroll _target _totalframes _visible _width _x _xscale _y _yscale alpha SWF SWF _leveln _level SWF loadmovienum() SWF Flash Player _leveln N. SWF scroll Flash Lite x (percentage) y (percentage) / (Forward slash) Flash Lite 1.0

37 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 30 / /targetpath /:varname Macromedia Flash 5 _root (:) (/) 1 car /:car 2 mc1 car /mc1/:car 3 mc1 mc2 car /mc1/mc2/:car 4 mc2 car mc2/:car _alpha my_mc:_alpha my_mc alpha _alpha 0 _alpha 0 my_mc _alpha 30% on(release) { telltarget("my_mc") { _alpha = 30;

38 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 31 _currentframe my_mc:_currentframe my_mc _currentframe gotoandstop() my_mc 5 telltarget("my_mc") { gotoandstop(_currentframe + 5); gotoandstop() _focusrect _focusrect = Boolean; SWF true false _focusrect = false; _framesloaded my_mc:_framesloaded

39 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 32 SWF SWF SWF SWF _framesloaded SWF loader _xscale if (_framesloaded >= _totalframes) { gotoandplay ("Scene 1", "start"); else { telltarget("loader") { _xscale = (_framesloaded/_totalframes)*100; _height my_mc:_height on(release) { telltarget("my_mc") { _height = 200; _highquality _highquality SWF 2 1 0

40 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 33 SWF _highquality = 1; togglehighquality() _level _leveln _leveln _level SWF loadmovienum() SWF Flash Player _leveln N SWF Flash Lite SWF _level0 _level0 SWF SWF SWF _level0 SWF loadmovienum() Flash Lite SWF _level0 SWF SWF SWF SWF 1 SWF 6 loadmovienum("myswf.swf", 1); // at least 1 frame later telltarget(_level1) { gotoandstop(6); loadmovie() maxscroll Flash Lite 1.1 variable_name:maxscroll

41 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 34 maxscroll scroll 8 mytext maxscroll on(keypress "8") { if (mytext:scroll < mytext:maxscroll) { mytext:scroll++; scroll _name my_mc:_name my_mc bigrose trace(bigrose:_name); _rotation my_mc:_rotation my_mc:_rotation = 450 my_mc:_rotation = 90 2 my_mc 15

42 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 35 on (keypress "2") { my_mc:_rotation += 15; scroll textfieldvariablename:scroll scroll Flash Lite scroll 2 mytext on(keypress "2") { if (mytext:scroll > 1) { mytext:scroll--; maxscroll _target my_mc:_target my_mc _totalframes my_mc:_totalframes

43 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 36 my_mc myswf.swf 1 25 loadmovienum("myswf.swf", 1); // 25 frames later in the main timeline if (_level1._framesloaded >= _level1._totalframes) { telltarget("_level1/") { gotoandstop("mylabel"); else { // loop... _visible my_mc:_visible my_mc _visible false _visible false 3 my_mc 4 on(keypress "3") { my_mc:_visible = 0; on(keypress "4") { my_mc:_visible = 1; _width my_mc:_width

44 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 37 5 width on(keypress "5") { my_mc:_width = 10; _x my_mc:_x my_mc x (0,0) my_mc on(keypress "6") { my_mc:_x = 10; _xscale, _y, _yscale _xscale my_mc:_xscale (percentage) (0,0) _x _y 50% _x 100% 7 my_mc

45 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 38 on(keypress "7") { my_mc:_xscale = 10; _x, _y, _yscale _y my_mc:_y my_mc y (0,0) my_mcy y (0,0) 10 on(keypress "1") { my_mc:_y = 10; _x, _xscale, _yscale _yscale my_mc:_yscale (percentage) (0,0) _x _y 50% _y 100% 1 my_mc 10%

46 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 39 on(keypress "1") { my_mc:_yscale = 10; _x, _xscale, _y

47 2010/4/ : Flash Lite Adobe Macromedia Flash Lite 1.x ActionScript break case continue do..while else else if for if switch while Flash Lite switch case expression switch expression statements true if false if false init condition true statement SWF true Flash Lite curly braces ({) false Flash Lite if switch true true break break for do..while while switch break Flash Lite break ActionScript case switch break

48 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 41 i = 0; while (true) { if (i >= 100) { i++; case do..while for switch while case case expression: statements expression statements switch case expression switch expression statements switch case mynum 1 case 1 trace() mynum 2 case 2 trace() number case default trace() switch (mynum) { case 1: trace ("case 1 tested true"); case 2: trace ("case 2 tested true"); case 3: trace ("case 3 tested true"); default: trace ("no case tested true") case break 1 A B

49 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 42 switch (mynum) { case 1: trace ("A"); case 2: trace ("B"); default: trace ("D") switch continue continue while continue Flash do..while continue Flash for continue Flash for while continue Flash Lite i = 0; while (i < 10) { if (i % 3 == 0) { i++; continue; trace(i); i++; do..while continue Flash Lite

50 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 43 i = 0; do { if (i % 3 == 0) { i++; continue; trace(i); i++; while (i < 10); for continue Flash Lite i 3 0 trace(i) for (i = 0; i < 10; i++) { if (i % 3 == 0) { continue; trace(i); do..while for while do..while do { statement(s) while (condition) statement(s) condition true statement(s) condition true 10 i = 0; do { //trace (i); // output: 0,1,2,3,4,5,6,7,8,9 i++; while (i<10); break continue for while

51 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 44 else if (condition){ t-statement(s); else { f-statement(s); condition true false t-statement(s) true f-statement(s) false if false else currenthighestdepth = 1; if (currenthighestdepth == 2) { //trace ("currenthighestdepth is 2"); else { //trace ("currenthightestdepth is not 2"); if else if if (condition){ statement(s); else if (condition){ statement(s); condition true false statement(s) if false

52 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 45 if false else if true Flash else if curly braces ({) else if false Flash elseif else if person_mc.xpos = 100; leftbound = 0; rightbound = 100; if (person_mc.xpos <= leftbound) { //trace ("Clip is to the far left"); else if (person_mc.xpos >= rightbound) { //trace ("Clip is to the far right"); else { //trace ("Your clip is somewhere in between"); if for for (init; condition; next) { statement(s); init condition true false false next (++) (--) statement(s) init condition true statement for for..in _x _y for sum = 0; for (i = 1; i <= 100; i++) { sum = sum + i;

53 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite (increment) (decrement)-- do..while while if if (condition) { statement(s); condition true false statement(s) true SWF true Flash Lite curly braces ({) false Flash Lite if name "Erica" play() if(name eq "Erica"){ play(); switch switch (expression){ caseclause: [defaultclause:] expression caseclause switch expression case defaultclause switch expression case defaul ActionScript if switch true

54 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 47 Switch default true default mynum 1 case 1 trace() mynum 2 case 2 trace() number case default trace() switch (mynum) { case 1: trace ("case 1 tested true"); case 2: trace ("case 2 tested true"); case 3: trace ("case 3 tested true"); default: trace ("no case tested true") case break 1 A B switch (mynum) { case 1: trace ("A"); case 2: trace ("B"); default: trace ("D") case while while(condition) { statement(s); condition while statement(s) true true

55 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 48 true false while true while condition 2 condition true true 3 while while 3 statement(s) 4 1 i 10 i = 0; while(i < 10) { trace ("i = " add ++i);// Output: 1,2,3,4,5,6,7,8,9 continue do..while for

56 2010/4/ : Flash Lite Adobe Macromedia Flash Lite 1.x ActionScript add (string concatenation) += (addition assignment) expression1+ expression2 expression1 and logical AND = (assignment) expression2 expression1 /* (block comment) (/*) (*/) ActionScript, (comma) expression1 expression2 expression2 // (comment) (//) ActionScript?: (conditional) Flash Lite expression1 expression1 true expression2 expression3 (decrement) expression 1 (--expression) expression 1 (expression--) expression 1 expression 1 / (divide) expression1 expression2 /= (division assignment) expression1 / expression2 expression1. (dot) ++ (increment) expression 1 (++expression) expression 1 (expression++) expression 1 expression 1 && (logical AND) expression1 false false expression1 true expression2 expression2 true true false! (logical NOT) expression true!expression false x && y false!(x && y) true (logical OR) expression1 expression2 true true false false OR true true % (modulo) expression1 expression2 expression modulo %= (modulo assignment) expression1 % expression2 expression1

57 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 50 *= (multiplication assignment) expression1 * expression2 expression1 * (multiply) + (numeric add) == (numeric equality) expression1 expression2 true > (numeric greater than) expression1 expression2 true expression1 expression2 false >= (numeric greater than or equal to) expression1 expression2(true) expression1 expression2(false) <> (numeric inequality) expression1 expression2 false < (numeric less than) expression1 expression2 true expression1 expression2 false <= (numeric less than or equal to) expression1 expression2 true false () (parentheses) " " (string delimiter) ActionScript eq (string equality) gt (string greater than) ge (string greater than or equal to) ne (string inequality) lt (string less than) le (string less than or equal to) expression1 expression2 true false expression1 expression2 expression1 expression2 true false expression1 expression2 expression1 expression2 true false expression1 expression2 expression1 expression2 true false expression1 expression2 expression1 expression2 true false expression1 expression2 expression1 expression2 true false (subtract) -= (subtraction assignment) expression1 - expression2 expression1 add (string concatenation) string1 add string2

58 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 51 string1, string2 catalog constr = "cat" add "alog"; trace (constr);// output: catalog + (numeric add) += (addition assignment) expression1 += expression2 expression1, expression2 (arithmetic compound assignment) expression1 + expression2 expression1 x += y; x = x + y; addition (+) addition assignment (+=) addition assignment (+=) x y x = 5; y = 10; x += y; trace(x);// output: 15 + (numeric add)

59 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 52 and condition1 and condition2 condition1, condition2 true false logical AND and turns score 3 75 You Win the Game! turns = 2; score = 77; winner = (turns <= 3) and (score >= 75); if (winner) { trace("you Win the Game!"); else { trace("try Again!"); // output: You Win the Game! && (logical AND) = (assignment) expression1 = expression2 expression1 expression2 expression2 expression1 assignment (=) weight

60 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 53 weight = 5; assignment (=) greeting greeting = "Hello, " and personname; /* (block comment) Flash Lite 1.0 /* comment */ /* comment comment */ comment (/*) (*/) ActionScript //(comment delimiter) /* comment delimiter comment delimiter (*/) (/*) (/*) (*/) // (comment), (comma) expression1, expression2 expression1, expression2 expression1 expression2 expression2

61 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 54 comma (,) parentheses () parentheses () comma v = 0; v = 4, 5, 6; trace(v); // output: 4 comma (,) parentheses () comma parentheses () v = 0; v = (4, 5, 6); trace(v); // output: 6 comma (,) parentheses () comma z++ z 1 v = 0; z = 0; v = v + 4, z++, v + 6; trace(v); // output: 4 trace(z); // output: 1 parentheses () comma (,) parentheses () v = 0; z = 0; v = (v + 4, z++, v + 6); trace(v); // output: 6 trace(z); // output: 1 for () (parentheses) // (comment) Flash Lite 1.0 // comment comment comment delimiter (//) ActionScript

62 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 55 // Record the X position of the ball movie clip. ballx = ball._x; // Record the Y position of the ball movie clip. bally = ball._y; // Record the X position of the bat movie clip. batx = bat._x; // Record the Y position of the bat movie clip. baty = bat._y; /* (block comment)?: (conditional) expression1? expression2 : expression3 expression1 x < 5 expression2 expression3 Flash Lite expression1 expression1 true expression2 expression3 x z expression1 true x = 5; y = 10; z = (x < 6)? x: y; trace (z);// output: 5 (decrement) expression expression

63 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 56 expression 1 (--expression) expression 1 (expression--) expression 1 expression 1 awidth 2 (awidth - 1 = 2) bwidth awidth = 3; bwidth = --awidth; // The bwidth value is equal to 2. awidth 2 (awidth - 1 = 2) awidth bwidth awidth = 3; bwidth = awidth--; // The bwidth value is equal to 3. / (divide) expression1 / expression2 expression1, expression2 expression1 expression trace(22.0 / 7.0); /= (division assignment) expression1 /= expression2 expression1, expression2

64 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 57 expression1/expression2 expression1 x /= y x = x / y /= x = 10; y = 2; x /= y; // The expression x now contains the value 5.. (dot) instancename.variable instancename.childinstance.variable instancename childinstance person_mc haircolor person_mc.haircolor /person_mc:haircolor / (Forward slash) ++ (increment)

65 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 58 ++expression expression++ expression 1 (++expression) expression 1 (expression++) expression 1 expression 1 ++ while i = 0; while (i++ < 5){ trace("this is execution " + i); ++ a = ""; i = 0; while (i < 10) { a = a add (++i) add ","; trace(a);// output: 1,2,3,4,5,6,7,8,9,10, 1,2,3,4,5,6,7,8,9,10, ++ a = ""; i = 0; while (i < 10) { a = a add (i++) add ","; trace(a);// output: 0,1,2,3,4,5,6,7,8,9, 0,1,2,3,4,5,6,7,8,9, && (logical AND) expression1 && expression2 expression1, expression2

66 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 59 expression1 false false expression1 true expression2 expression2 true true false && turns score 3 75 You Win the Game! turns = 2; score = 77; winner = (turns <= 3) && (score >= 75); if (winner) { trace("you Win the Game!"); else { trace("try Again!"); x xpos = 50; if (xpos >= 20 && xpos <= 80) { trace ("the xpos is in between 20 and 80");! (logical NOT)!expression expression true!expression false x && y false!(x && y) true!!true false!false true happy false if!happy true trace()

67 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 60 happy = false; if (!happy) { trace("don't worry, be happy"); (logical OR) expression1 expression2 expression1, expression2 expression1 expression2 true true false false logical OR true true logical OR Flash Lite true true 1 if true true theminimum = 10; themaximum = 250; start = false; if (theminimum > 25 themaximum > 200 start){ trace("the logical OR test passed"); % (modulo) expression1 % expression2 expression1, expression2 expression1 expression2 expression modulo

68 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 61 Flash Lite Flash SWF % expression1 - int(expression1/expression2) * expression2 modulo Flash Player modulo (%) trace (12 % 5);// output: 2 trace (4.3 % 2.1);// output: %= (modulo assignment) expression1 %= expression2 expression1, expression2 expression1% expression2 expression1 x %= y x = x % y 4 x x = 14; y = 5; trace(x %= y);// output: 4 % (modulo) *= (multiplication assignment) expression1 *= expression2 expression1, expression2

69 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 62 expression1 * expression2 expression1 x *= y x = x * y 1 50 x x = 5; y = 10; trace (x *= y);// output: 50 2 (=) x y i = 5; x = 4-6; y = i + 2; trace(x *= y);// output: -14 * (multiply) expression1 * expression2 expression1, expression * *

70 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 63 + (numeric add) expression1 + expression2 expression1, expression trace (2 + 3); trace ( ); add (string concatenation) == (numeric equality) expression1 == expression2 expression1, expression2 <> expression1 expression2 true <> equal true false

71 2010/4/28 FLASH LITE 1.X ACTIONSCRIPT Flash Lite 64 trees = 7; bushes = "7"; shrubs = "seven"; trace (trees == "7");// output: 1(true) trace (trees == bushes);// output: 1(true) trace (trees == shrubs);// output: 0(false) eq (string equality) > (numeric greater than) expression1 > expression2 expression1, expression2 expression1 expression2 true expression1 expression2 false true false trace(3.14 > 2);// output: 1(true) trace(1 > 2);// output: 0(false) gt (string greater than) >= (numeric greater than or equal to) expression1 >= expression2 expression1, expression2

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM CHAPTER 6 SQL SQL SQL 6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM 3. 1986 10 ANSI SQL ANSI X3. 135-1986

More information

(CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787

(CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787 Web (CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787 1092 1/ 16 30.75 748 2005 1 1 2005 1 1 : 1 3 100

More information

加 快 审 阅 和 标 记 工 作 流 程 Acrobat X 通 过 提 供 一 种 可 靠 的 文 件 格 式 扩 展 了 Office 和 SharePoint 的 协 作 服 务, 可 以 使 用 大 多 数 桌 面 应 用 程 序 生 成 这 种 格 式 并 使 用 Acrobat 或 免

加 快 审 阅 和 标 记 工 作 流 程 Acrobat X 通 过 提 供 一 种 可 靠 的 文 件 格 式 扩 展 了 Office 和 SharePoint 的 协 作 服 务, 可 以 使 用 大 多 数 桌 面 应 用 程 序 生 成 这 种 格 式 并 使 用 Acrobat 或 免 使 用 Adobe Acrobat X 增 强 与 Microsoft SharePoint 及 Microsoft Office 的 协 作 通 过 将 基 于 PDF 的 工 作 流 程 集 成 到 SharePoint 和 Office 平 台 缩 短 项 目 审 阅 周 期 目 录 1: 内 容 概 要 1: 协 作 难 题 2: 加 快 审 阅 和 标 记 工 作 流 程 3: Adobe

More information

Adobe® Flash® 的 Adobe® ActionScript® 3.0 程式設計

Adobe® Flash® 的 Adobe® ActionScript® 3.0 程式設計 337 18 Adobe Flash CS4 Professional MovieClip ActionScript Flash ActionScript Flash Flash Flash MovieClip MovieClip ActionScript ( ) MovieClip Flash Sprite ActionScript MovieClip ActionScript 3.0 Shape

More information

1. 2. Flex Adobe 3.

1. 2. Flex Adobe 3. 1. 2. Flex Adobe 3. Flex Adobe Flex Flex Web Flex Flex Flex Adobe Flash Player 9 /rich Internet applications/ria Flex 1. 2. 3. 4. 5. 6. SWF Flash Player Flex 1. Flex framework Adobe Flex 2 framework RIA

More information

发行说明, 7.0.1 版

发行说明, 7.0.1 版 发 行 说 明 Websense Web Security Websense Web Filter 7.0.1 版 本 版 本 的 新 特 点 Websense Web Security 和 Websense Web Filter 的 7.0.1 版 本 均 已 本 地 化 为 以 下 语 言 : 法 语 德 语 意 大 利 语 日 语 葡 萄 牙 语 简 体 中 文 西 班 牙 语 繁 体 中 文

More information

Logitech Wireless Combo MK45 English

Logitech Wireless Combo MK45 English Logitech Wireless Combo MK45 Setup Guide Logitech Wireless Combo MK45 English................................................................................... 7..........................................

More information

Microsoft Word - 01.DOC

Microsoft Word - 01.DOC 第 1 章 JavaScript 简 介 JavaScript 是 NetScape 公 司 为 Navigator 浏 览 器 开 发 的, 是 写 在 HTML 文 件 中 的 一 种 脚 本 语 言, 能 实 现 网 页 内 容 的 交 互 显 示 当 用 户 在 客 户 端 显 示 该 网 页 时, 浏 览 器 就 会 执 行 JavaScript 程 序, 用 户 通 过 交 互 式 的

More information

Applied Biosystems StepOne™ Real-Time PCR System Quick Reference Card for Installation

Applied Biosystems StepOne™ Real-Time PCR System Quick Reference Card for Installation Applied Biosystems StepOne Real-Time PCR System StepOne 系统安装 快速参考卡 本文档提供在并置布局中安装 StepOne 系统的简明指导 有关 完整步骤或独立安装步骤 请参阅 Applied Biosystems StepOne Real-Time PCR System 安装 联网和维护指南 目录 1. 安装准备........................................

More information

p.2 1 <HTML> 2 3 <HEAD> 4 <TITLE> </TITLE> 5 </HEAD> 6 7 <BODY> 8 <H3><B> </B></H3> 9 <H4><I> </I></H4> 10 </BODY> </HTML> 1. HTML 1. 2.

p.2 1 <HTML> 2 3 <HEAD> 4 <TITLE> </TITLE> 5 </HEAD> 6 7 <BODY> 8 <H3><B> </B></H3> 9 <H4><I> </I></H4> 10 </BODY> </HTML> 1. HTML 1. 2. 2005-06 p.1 HTML HyperText Mark-up Language 1. HTML Logo, Pascal, C++, Java HTML 2. HTML (tag) 3. HTML 4. HTML 1. HTML 2. 3. FTP HTML HTML html 1. html html html cutehtmleasyhtml 2. wyswyg (What you see

More information

使用 Adobe® Extension Manager CS4

使用 Adobe® Extension Manager CS4 ADOBE EXTENSION MANAGER CS4 2008 Adobe Systems Incorporated. Windows Mac OS Adobe Extension Manager 2.0 Adobe Systems Incorporated : Adobe Systems Incorporated Adobe Systems Incorporated Adobe, the Adobe

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Perl CGI 1 Perl CGI 2 Perl CGI 3 Perl CGI 4 1. 2. 1. #!/usr/local/bin/perl 2. print "Content-type: text/html n n"; 3. print " n"; 4. print " n"; 3. 4.

More information

Microsoft Word - 改版式网页全文.doc

Microsoft Word - 改版式网页全文.doc 第 4 章 Dreamweaver CS3 高 级 篇 4.1 表 单 概 述 表 单 是 用 来 收 集 浏 览 者 的 用 户 名 密 码 E-mail 地 址 个 人 爱 好 和 联 系 地 址 等 用 户 信 息 的 输 入 区 域 集 合 浏 览 者 填 写 表 单 的 方 式 一 般 是 输 入 文 本 选 择 单 选 按 钮 或 复 选 框 以 及 从 下 拉 列 表 框 中 选 择

More information

软件测试(TA07)第一学期考试

软件测试(TA07)第一学期考试 一 判 断 题 ( 每 题 1 分, 正 确 的, 错 误 的,20 道 ) 1. 软 件 测 试 按 照 测 试 过 程 分 类 为 黑 盒 白 盒 测 试 ( ) 2. 在 设 计 测 试 用 例 时, 应 包 括 合 理 的 输 入 条 件 和 不 合 理 的 输 入 条 件 ( ) 3. 集 成 测 试 计 划 在 需 求 分 析 阶 段 末 提 交 ( ) 4. 单 元 测 试 属 于 动

More information

1 4 1.1 4 1.2..4 2..4 2.1..4 3.4 3.1 Java.5 3.1.1..5 3.1.2 5 3.1.3 6 4.6 4.1 6 4.2.6 5 7 5.1..8 5.1.1 8 5.1.2..8 5.1.3..8 5.1.4..9 5.2..9 6.10 6.1.10

1 4 1.1 4 1.2..4 2..4 2.1..4 3.4 3.1 Java.5 3.1.1..5 3.1.2 5 3.1.3 6 4.6 4.1 6 4.2.6 5 7 5.1..8 5.1.1 8 5.1.2..8 5.1.3..8 5.1.4..9 5.2..9 6.10 6.1.10 Java V1.0.1 2007 4 10 1 4 1.1 4 1.2..4 2..4 2.1..4 3.4 3.1 Java.5 3.1.1..5 3.1.2 5 3.1.3 6 4.6 4.1 6 4.2.6 5 7 5.1..8 5.1.1 8 5.1.2..8 5.1.3..8 5.1.4..9 5.2..9 6.10 6.1.10 6.2.10 6.3..10 6.4 11 7.12 7.1

More information

Microsoft Word - Functional_Notes_3.90_CN.doc

Microsoft Word - Functional_Notes_3.90_CN.doc GeO-iPlatform Functional Notes GeO Excel Version 3.90 Release Date: December 2008 Copyrights 2007-2008. iplatform Corporation. All rights reserved. No part of this manual may be reproduced in any form

More information

Microsoft Word - 苹果脚本跟我学.doc

Microsoft Word - 苹果脚本跟我学.doc AppleScript for Absolute Starters 2 2 3 0 5 1 6 2 10 3 I 13 4 15 5 17 6 list 20 7 record 27 8 II 32 9 34 10 36 11 44 12 46 13 51 14 handler 57 15 62 63 3 AppleScript AppleScript AppleScript AppleScript

More information

Chn 116 Neh.d.01.nis

Chn 116 Neh.d.01.nis 31 尼 希 米 书 尼 希 米 的 祷 告 以 下 是 哈 迦 利 亚 的 儿 子 尼 希 米 所 1 说 的 话 亚 达 薛 西 王 朝 二 十 年 基 斯 流 月 *, 我 住 在 京 城 书 珊 城 里 2 我 的 兄 弟 哈 拿 尼 和 其 他 一 些 人 从 犹 大 来 到 书 珊 城 我 向 他 们 打 听 那 些 劫 后 幸 存 的 犹 太 人 家 族 和 耶 路 撒 冷 的 情 形

More information

使用 Adobe® Extension Manager CS4

使用 Adobe® Extension Manager CS4 ADOBE EXTENSION MANAGER CS4 2008 Adobe Systems Incorporated Windows Mac OS Adobe Extension Manager 2.0 Adobe Systems Incorporated Adobe Systems Incorporated Adobe Systems Incorporated Adobe, the Adobe

More information

科学计算的语言-FORTRAN95

科学计算的语言-FORTRAN95 科 学 计 算 的 语 言 -FORTRAN95 目 录 第 一 篇 闲 话 第 1 章 目 的 是 计 算 第 2 章 FORTRAN95 如 何 描 述 计 算 第 3 章 FORTRAN 的 编 译 系 统 第 二 篇 计 算 的 叙 述 第 4 章 FORTRAN95 语 言 的 形 貌 第 5 章 准 备 数 据 第 6 章 构 造 数 据 第 7 章 声 明 数 据 第 8 章 构 造

More information

epub 94-3

epub 94-3 3 A u t o C A D L AY E R L I N E T Y P E O S N A P S T Y L E X R E F - AutoLISP Object ARX A u t o C A D D C L A u t o C A D A u t o d e s k P D B D C L P D B D C L D C L 3.1 Wi n d o w s A u t o C A D

More information

Epson

Epson WH / MS CMP0087-00 TC WH/MS EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Corporation Microsoft and Windows are registered trademarks of Microsoft Corporation. Mac and Mac OS are registered trademarks

More information

User’s Manual

User’s Manual V7 用 户 手 册 亿 图 为 您 专 业 图 表 设 计 提 供 最 佳 解 决 方 案 2004-2014 EdrawSoft. All right reserved. Edraw and Edraw logo are registered trademarks of EdrawSoft. 目 录 亿 图 怎 样 优 越 于 其 他 软 件... 5 亿 图 7 个 新 功 能... 6 为

More information

Panaboard Overlayer help

Panaboard Overlayer help Panaboard Overlayer Image Capture Software for Electronic Whiteboard (Panaboard) ... 3... 5... 6... 13...14 Panaboard Overlayer 1. 2. 3. 4. 4-1. 4-2. [ / ] ( ) 4-3. 5. 6. 6-1. 6-2. [ / ] ( ) 7. Panaboard

More information

epub 61-2

epub 61-2 2 Web Dreamweaver UltraDev Dreamweaver 3 We b We b We Dreamweaver UltraDev We b Dreamweaver UltraDev We b We b 2.1 Web We b We b D r e a m w e a v e r J a v a S c r i p t We b We b 2.1.1 Web We b C C +

More information

C/C++语言 - 分支结构

C/C++语言 - 分支结构 C/C++ Table of contents 1. if 2. if else 3. 4. 5. 6. continue break 7. switch 1 if if i // colddays.c: # include int main ( void ) { const int FREEZING = 0; float temperature ; int cold_ days

More information

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile..

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile.. WebSphere Studio Application Developer IBM Portal Toolkit... 1/21 WebSphere Studio Application Developer IBM Portal Toolkit Portlet Doug Phillips (dougep@us.ibm.com),, IBM Developer Technical Support Center

More information

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information

:5-6

:5-6 License Agreement for Bible Texts These Scriptures: May not be altered or modified in any form. They must remain in their original context. May not be sold or offered for sale in any form. May not be used

More information

Microsoft Word - ch02.doc

Microsoft Word - ch02.doc 第 2 章 认 识 Dreamweaver 8 教 学 提 示 :Dreamweaver 是 一 款 功 能 强 大 的 可 视 化 的 网 页 编 辑 与 管 理 软 件 利 用 它, 不 仅 可 以 轻 松 地 创 建 跨 平 台 和 跨 浏 览 器 的 页 面, 也 可 以 直 接 创 建 具 有 动 态 效 果 的 网 页 而 不 用 自 己 编 写 源 代 码 Dreamweaver 8

More information

ebook121-20

ebook121-20 20 ASCII Call me Ishmael Call me Ishmael Å n o 9 9 % 6 e s c a p e s h i f t s h i f t I have 27 sisters 208 1 8 ( 2 7 ) 10 111 2 7 2 7, 5 1874 Emile Baudot 1877 Donald Murray 1931 C C I T T (ITU) N O.

More information

1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源

1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源 1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源 B. 啟 用 智 慧 型 裝 置 的 無 線 Wi-Fi C. 選 擇 無 線 網 路 名 稱 "edimax.setup"

More information

EMC® VNX® Series VNX8000™ Block 安装指南

EMC® VNX® Series VNX8000™ Block 安装指南 EMC VNX Series VNX8000 Block 安 装 指 南 300-999-791 REV 05 版 权 所 有 2014-2015 EMC Corporation 保 留 所 有 权 利 中 国 印 刷 发 布 日 期 : 2015 年 2 月 EMC 确 信 本 出 版 物 在 发 布 之 日 内 容 准 确 无 误 本 出 版 物 中 的 信 息 可 随 时 更 改 而 不 另

More information

Perl

Perl Perl 磊 Goal Introduction The first perl program Basical coding style Variable Data structure Control structure Regular expression Lab Reference Outline The first perl program Just type this following string

More information

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc References (Section 5.2) Hsuan-Tien Lin Deptartment of CSIE, NTU OOP Class, March 15-16, 2010 H.-T. Lin (NTU CSIE) References OOP 03/15-16/2010 0 / 22 Fun Time (1) What happens in memory? 1 i n t i ; 2

More information

Microsoft Word - PHP7Ch01.docx

Microsoft Word - PHP7Ch01.docx PHP 01 1-6 PHP PHP HTML HTML PHP CSSJavaScript PHP PHP 1-6-1 PHP HTML PHP HTML 1. Notepad++ \ch01\hello.php 01: 02: 03: 04: 05: PHP 06:

More information

PowerPoint Presentation

PowerPoint Presentation TOEFL Practice Online User Guide Revised September 2009 In This Guide General Tips for Using TOEFL Practice Online Directions for New Users Directions for Returning Users 2 General Tips To use TOEFL Practice

More information

TX-NR3030_BAS_Cs_ indd

TX-NR3030_BAS_Cs_ indd TX-NR3030 http://www.onkyo.com/manual/txnr3030/adv/cs.html Cs 1 2 3 Speaker Cable 2 HDMI OUT HDMI IN HDMI OUT HDMI OUT HDMI OUT HDMI OUT 1 DIGITAL OPTICAL OUT AUDIO OUT TV 3 1 5 4 6 1 2 3 3 2 2 4 3 2 5

More information

入學考試網上報名指南

入學考試網上報名指南 入 學 考 試 網 上 報 名 指 南 On-line Application Guide for Admission Examination 16/01/2015 University of Macau Table of Contents Table of Contents... 1 A. 新 申 請 網 上 登 記 帳 戶 /Register for New Account... 2 B. 填

More information

2 2 3 DLight CPU I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AM

2 2 3 DLight CPU I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AM Oracle Solaris Studio 12.2 DLight 2010 9 2 2 3 DLight 3 3 6 13 CPU 16 18 21 I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AMP Apache MySQL

More information

C/C++ 语言 - 循环

C/C++ 语言 - 循环 C/C++ Table of contents 7. 1. 2. while 3. 4. 5. for 6. 8. (do while) 9. 10. (nested loop) 11. 12. 13. 1 // summing.c: # include int main ( void ) { long num ; long sum = 0L; int status ; printf

More information

GCSE Mathematics Question Paper Unit 2 March 2012

GCSE Mathematics Question Paper Unit 2 March 2012 Centre Number Surname Candidate Number For Examiner s Use Other Names Candidate Signature Examiner s Initials General Certificate of Secondary Education Higher Tier March 2012 Pages 2 3 4 5 Mark Mathematics

More information

四川省普通高等学校

四川省普通高等学校 四 川 省 普 通 高 等 学 校 计 算 机 应 用 知 识 和 能 力 等 级 考 试 考 试 大 纲 (2013 年 试 行 版 ) 四 川 省 教 育 厅 计 算 机 等 级 考 试 中 心 2013 年 1 月 目 录 一 级 考 试 大 纲 1 二 级 考 试 大 纲 6 程 序 设 计 公 共 基 础 知 识 6 BASIC 语 言 程 序 设 计 (Visual Basic) 9

More information

CANVIO_AEROCAST_CS_EN.indd

CANVIO_AEROCAST_CS_EN.indd 简 体 中 文...2 English...4 SC5151-A0 简 体 中 文 步 骤 2: 了 解 您 的 CANVIO AeroCast CANVIO AeroCast 无 线 移 动 硬 盘 快 速 入 门 指 南 欢 迎 并 感 谢 您 选 择 TOSHIBA 产 品 有 关 您 的 TOSHIBA 产 品 的 详 情, 请 参 阅 包 含 更 多 信 息 的 用 户 手 册 () 安

More information

untitled

untitled 1 Outline 料 類 說 Tang, Shih-Hsuan 2006/07/26 ~ 2006/09/02 六 PM 7:00 ~ 9:30 聯 ives.net@gmail.com www.csie.ntu.edu.tw/~r93057/aspnet134 度 C# 力 度 C# Web SQL 料 DataGrid DataList 參 ASP.NET 1.0 C# 例 ASP.NET 立

More information

國立中山大學學位論文典藏

國立中山大學學位論文典藏 i Examinations have long been adopting for the selection of the public officials and become an essential tradition in our country. For centuries, the examination system, incorporated with fairness, has

More information

(Microsoft Word - \261M\303D\263\370\247i\247\3572.doc)

(Microsoft Word - \261M\303D\263\370\247i\247\3572.doc) FLASH 的 動 畫 實 作 專 題 學 生 :I4B50 潘 俊 安 指 導 教 授 : 嚴 威 助 理 教 授 大 同 大 學 資 訊 工 程 學 系 專 題 報 告 中 華 民 國 九 十 六 年 一 月 - 1 - 圖 表 目 錄... - 3 - 第 一 章 概 述... - 4-1.1 專 題 動 機... - 4-1.1.1 政 府 政 策... - 4-1.1.2 個 人 興 趣...

More information

<4D F736F F D D342DA57CA7DEA447B14D2DA475B57BBB50BADEB27AC3FEB14DA447B8D5C344>

<4D F736F F D D342DA57CA7DEA447B14D2DA475B57BBB50BADEB27AC3FEB14DA447B8D5C344> 1. 請 問 誰 提 出 積 體 電 路 (IC) 上 可 容 納 的 電 晶 體 數 目, 約 每 隔 24 個 月 (1975 年 更 改 為 18 個 月 ) 便 會 增 加 一 倍, 效 能 也 將 提 升 一 倍, 也 揭 示 了 資 訊 科 技 進 步 的 速 度? (A) 英 特 爾 (Intel) 公 司 創 始 人 戈 登. 摩 爾 (Gordon Moore) (B) 微 軟 (Microsoft)

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 177 [P179] (1) - [P181] [P182] (2) - for [P183] (3) - switch [P184] [P187] [P189] [P194] 178 [ ]; : : int var; : int var[3]; var 2293620 var[0] var[1] 2293620

More information

Microsoft Word - 中三選科指南 2014 subject

Microsoft Word - 中三選科指南 2014 subject 必 修 科 目 簡 介 < < < 1. 中 文 > > > 本 科 的 公 開 評 核 以 課 程 發 展 議 會 與 香 港 考 試 及 評 核 局 聯 合 編 訂 的 中 國 語 文 科 課 程 及 評 估 指 引 ( 中 四 至 中 六 ) 為 根 據 目 標 本 科 主 要 評 核 考 生 : (1) 讀 寫 聽 說 能 力 思 維 能 力 審 美 能 力 和 自 學 能 力 ; (2)

More information

VHDL(Statements) (Sequential Statement) (Concurrent Statement) VHDL (Architecture)VHDL (PROCESS)(Sub-program) 2

VHDL(Statements) (Sequential Statement) (Concurrent Statement) VHDL (Architecture)VHDL (PROCESS)(Sub-program) 2 VHDL (Statements) VHDL(Statements) (Sequential Statement) (Concurrent Statement) VHDL (Architecture)VHDL (PROCESS)(Sub-program) 2 (Assignment Statement) (Signal Assignment Statement) (Variable Assignment

More information

KDC-U5049 KDC-U4049 Made for ipod, and Made for iphone mean that an electronic accessory has been designed to connect specifically to ipod, or iphone,

KDC-U5049 KDC-U4049 Made for ipod, and Made for iphone mean that an electronic accessory has been designed to connect specifically to ipod, or iphone, KDC-U5049 KDC-U4049 Made for ipod, and Made for iphone mean that an electronic accessory has been designed to connect specifically to ipod, or iphone, respectively, and has been certified by the developer

More information

(Microsoft Word - \261M\256\327\272\353\302\262\263\370\247iEnd.doc)

(Microsoft Word - \261M\256\327\272\353\302\262\263\370\247iEnd.doc) 摘 要 長 榮 大 學 資 訊 管 理 學 系 畢 業 專 案 實 作 專 案 編 號 : 旅 遊 行 程 規 劃 - 以 台 南 市 為 例 Tour Scheduling for Tainan City CJU-IM- PRJ-096-029 執 行 期 間 : 95 年 2 月 13 日 至 96 年 1 月 20 日 陳 貽 隆 陳 繼 列 張 順 憶 練 哲 瑋 專 案 參 與 人 員 :

More information

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn Xi III Zebra XI III 1 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn 230V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666

More information

Learn_Perl 3-02.pdf

Learn_Perl 3-02.pdf 2 2. 1 h e l l o h e l l o 23 2 4 2.2 2.2.1 2.2.2 d o u b l e 1 e - 1 0 0 1 e 1 0 0 i n t e g e r 2 5 1.25 2.000 3.0 7.25e45 # 7.25 10 45-6.5e24 # 6.5 10 24 # -12e-24 # 12 10-24 # -1.2E-23 # -- E 2.2.3

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

Windows XP

Windows XP Windows XP What is Windows XP Windows is an Operating System An Operating System is the program that controls the hardware of your computer, and gives you an interface that allows you and other programs

More information

Index of Zhengtong Daozang

Index of Zhengtong Daozang Golden Elixir Reference Series, 2 Index of Zhengtong Daozang edited by Fabrizio Pregadio Golden Elixir Press 2008 This work is distributed according to the Creative Commons Attribution-Noncommercial-Share

More information

Page 1 of 21 中 文 简 体 中 文 繁 体 邮 箱 搜 索 本 网 站 搜 索 搜 索 网 站 首 页 今 日 中 国 中 国 概 况 法 律 法 规 公 文 公 报 政 务 互 动 政 府 建 设 工 作 动 态 人 事 任 免 新 闻 发 布 当 前 位 置 : 首 页 >> 公 文 公 报 >> 国 务 院 文 件 >> 国 务 院 文 件 中 央 政 府 门 户 网 站 www.gov.cn

More information

untitled

untitled 說 參 例 邏 邏 1. 說 2. 數 數 3. 8 4. 理念 李 龍老 立 1. 理 料 2. 理 料 3. 數 料 4. 流 邏 念 5. 良 6. 讀 行 行 7. 行 例 來 邏 1. 說 說 識 量 2. 說 理 類 3. 數 數 念 4. 令 5. 良 6. 流 邏 念 7. 說 邏 理 力 1. 2. 3. 4. 5. 列 念 1 參 1. ( Visual Basic 例 ) (1)

More information

Microsoft Word - linux命令及建议.doc

Microsoft Word - linux命令及建议.doc Linux 操 作 系 统 命 令 集 1 基 本 命 令 查 看 系 统 信 息 : uname -a 修 改 密 码 : passwd 退 出 : logout(exit) 获 取 帮 助 : man commands 2 文 件 和 目 录 命 令 显 示 当 前 工 作 目 录 : pwd 改 变 所 在 目 录 : cd cd - 切 换 到 上 一 次 使 用 的 目 录 cd 切 换

More information

13 根 据 各 种 网 络 商 务 信 息 对 不 同 用 户 所 产 生 的 使 用 效 用, 网 络 商 务 信 息 大 致 可 分 为 四 级, 其 中 占 比 重 最 大 的 是 ( A ) A 第 一 级 免 费 信 息 B 第 二 级 低 收 费 信 息 C 第 三 级 标 准 收 费

13 根 据 各 种 网 络 商 务 信 息 对 不 同 用 户 所 产 生 的 使 用 效 用, 网 络 商 务 信 息 大 致 可 分 为 四 级, 其 中 占 比 重 最 大 的 是 ( A ) A 第 一 级 免 费 信 息 B 第 二 级 低 收 费 信 息 C 第 三 级 标 准 收 费 助 理 电 子 商 务 考 试 真 题 试 题 第 一 部 分 : 理 论 部 分 一 单 项 选 择 题 1 ( B ) 是 信 息 系 统 的 核 心 组 成 部 分 A 逻 辑 模 型 B 数 据 库 C 概 念 模 型 D 以 上 全 部 2 ping www.163.com -t 中 参 数 t 的 作 用 是 :( A ) A 进 行 连 续 测 试 B 在 新 窗 口 中 显 示 C

More information

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish 我 难 度 : 高 级 对 们 现 不 在 知 仍 道 有 听 影 过 响 多 少 那 次 么 : 研 英 究 过 文 论 去 写 文 时 作 的 表 技 引 示 巧 言 事 : 部 情 引 分 发 言 该 生 使 在 中 用 过 去, 而 现 在 完 成 时 仅 表 示 事 情 发 生 在 过 去, 并 的 哪 现 种 在 时 完 态 成 呢 时? 和 难 过 道 去 不 时 相 关? 是 所 有

More information

3-1 Wii ( )

3-1 Wii ( ) 03 3-1 3-2 3-3 3-4 3-5 3-1 Wii ( ) 3-2 3-3 8 8 3-4 3-5 3-4 3-3 3-2 3-5 8 ( sin cos ) 3-4 3-5 3-2 CH03_key4.fla ActionScript 3 12 "block_mc" + + "_" + 8 block_mc2_3 x_num y_num 1 01 02 03 04 05 06 07 08

More information

填 写 要 求 1. 以 word 文 档 格 式 如 实 填 写 各 项 2. 表 格 文 本 中 外 文 名 词 第 一 次 出 现 时, 要 写 清 全 称 和 缩 写, 再 次 出 现 时 可 以 使 用 缩 写 3. 本 表 栏 目 未 涵 盖 的 内 容, 需 要 说 明 的, 请 在

填 写 要 求 1. 以 word 文 档 格 式 如 实 填 写 各 项 2. 表 格 文 本 中 外 文 名 词 第 一 次 出 现 时, 要 写 清 全 称 和 缩 写, 再 次 出 现 时 可 以 使 用 缩 写 3. 本 表 栏 目 未 涵 盖 的 内 容, 需 要 说 明 的, 请 在 附 件 4 精 品 在 线 开 放 课 程 申 报 书 学 校 名 称 课 程 名 称 广 东 科 学 技 术 职 业 学 院 Java 面 向 对 象 程 序 设 计 课 程 类 别 专 业 基 础 课 专 业 核 心 课 所 属 专 业 课 程 负 责 人 申 报 日 期 推 荐 单 位 软 件 技 术 刘 晓 英 2016 年 6 月 1 日 计 算 机 工 程 技 术 学 院 广 东 省 教

More information

Microsoft Word - (web)_F.1_Notes_&_Application_Form(Chi)(non-SPCCPS)_16-17.doc

Microsoft Word - (web)_F.1_Notes_&_Application_Form(Chi)(non-SPCCPS)_16-17.doc 聖 保 羅 男 女 中 學 學 年 中 一 入 學 申 請 申 請 須 知 申 請 程 序 : 請 將 下 列 文 件 交 回 本 校 ( 麥 當 勞 道 33 號 ( 請 以 A4 紙 張 雙 面 影 印, 並 用 魚 尾 夾 夾 起 : 填 妥 申 請 表 並 貼 上 近 照 小 學 五 年 級 上 下 學 期 成 績 表 影 印 本 課 外 活 動 表 現 及 服 務 的 證 明 文 件 及

More information

(Microsoft Word - Motion Program \270\305\264\272\276\363 \307\245\301\366 \271\327 \270\361\302\367.doc)

(Microsoft Word - Motion Program \270\305\264\272\276\363 \307\245\301\366 \271\327 \270\361\302\367.doc) : TBFAT-G5MP-MN004-11 1 GX Series PLC Program Manual 2 GX Series PLC Program Manual Contents Contents...3 1... 1-1 1.1... 1-2 1.2... 1-3 1.2.1... 1-3 1.2.2... 1-4 1.2.3... 1-4 1.2.4... 1-6 1.3... 1-7 1.3.1...

More information

EK-STM32F

EK-STM32F STMEVKIT-STM32F10xx8 软 件 开 发 入 门 指 南 目 录 1 EWARM 安 装... 1 1.1 第 一 步 : 在 线 注 册... 1 1.2 第 二 步 : 下 载 软 件... 2 1.3 第 三 步 : 安 装 EWARM... 3 2 基 于 STMEVKIT-STM32F10xx8 的 示 例 代 码 运 行... 6 2.1 GPIO Demo... 6 2.2

More information

audiogram3 Owners Manual

audiogram3 Owners Manual USB AUDIO INTERFACE ZH 2 AUDIOGRAM 3 ( ) * Yamaha USB Yamaha USB ( ) ( ) USB Yamaha (5)-10 1/2 AUDIOGRAM 3 3 MIC / INST (XLR ) (IEC60268 ): 1 2 (+) 3 (-) 2 1 3 Yamaha USB Yamaha Yamaha Steinberg Media

More information

2/14 Buffer I12, /* x=2, buffer = I 1 2 */ Buffer I243, /* x=34, buffer = I 2 43 */ x=56, buffer = I243 Buffer I243I265 code_int(int x, char *buffer)

2/14 Buffer I12, /* x=2, buffer = I 1 2 */ Buffer I243, /* x=34, buffer = I 2 43 */ x=56, buffer = I243 Buffer I243I265 code_int(int x, char *buffer) 1/14 IBM Rational Test RealTime IBM, 2004 7 01 50% IBM Rational Test RealTime IBM Rational Test RealTime 1. 50% IBM Rational Test RealTime IBM Rational Test RealTime 2. IBM Rational Test RealTime Test

More information

els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8

els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8 els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8 Yamaha ELS-0/0C..8 LCD ELS-0/0C v. typeu LCD ELS-0/0C typeu / -6 / [SEARCH] / - ZH ELS-0/0C.8 els0xu_zh_nf_v8.book Page Wednesday, June,

More information

untitled

untitled 2006 6 Geoframe Geoframe 4.0.3 Geoframe 1.2 1 Project Manager Project Management Create a new project Create a new project ( ) OK storage setting OK (Create charisma project extension) NO OK 2 Edit project

More information

Microsoft Word - ChineseSATII .doc

Microsoft Word - ChineseSATII .doc 中 文 SAT II 冯 瑶 一 什 么 是 SAT II 中 文 (SAT Subject Test in Chinese with Listening)? SAT Subject Test 是 美 国 大 学 理 事 会 (College Board) 为 美 国 高 中 生 举 办 的 全 国 性 专 科 标 准 测 试 考 生 的 成 绩 是 美 国 大 学 录 取 新 生 的 重 要 依

More information

untitled

untitled 14 100061 315@ptpress.com.cn http://www.ptpress.com.cn 010-67132692 787 1092 1/16 2004 6 1 1 000 2004 6 1 ISBN 7-115-12444-2/TP 4087 25.00 010 67129223 18 16 20 10 Office XP Photoshop CS CorelDRAW 11&Illustrator10

More information

LEETCODE leetcode.com 一 个 在 线 编 程 网 站, 收 集 了 IT 公 司 的 面 试 题, 包 括 算 法, 数 据 库 和 shell 算 法 题 支 持 多 种 语 言, 包 括 C, C++, Java, Python 等 2015 年 3 月 份 加 入 了 R

LEETCODE leetcode.com 一 个 在 线 编 程 网 站, 收 集 了 IT 公 司 的 面 试 题, 包 括 算 法, 数 据 库 和 shell 算 法 题 支 持 多 种 语 言, 包 括 C, C++, Java, Python 等 2015 年 3 月 份 加 入 了 R 用 RUBY 解 LEETCODE 算 法 题 RUBY CONF CHINA 2015 By @quakewang LEETCODE leetcode.com 一 个 在 线 编 程 网 站, 收 集 了 IT 公 司 的 面 试 题, 包 括 算 法, 数 据 库 和 shell 算 法 题 支 持 多 种 语 言, 包 括 C, C++, Java, Python 等 2015 年 3 月 份

More information

PowerPoint Presentation

PowerPoint Presentation ITM omputer and ommunication Technologies Lecture #4 Part I: Introduction to omputer Technologies Logic ircuit Design & Simplification ITM 計算機與通訊技術 2 23 香港中文大學電子工程學系 Logic function implementation Logic

More information

天主教永年高級中學綜合高中課程手冊目錄

天主教永年高級中學綜合高中課程手冊目錄 天 主 教 永 年 高 級 中 學 綜 合 高 中 課 程 手 冊 目 錄 壹 學 校 背 景. 貳 教 育 理 念 與 教 育 目 標. 3 一 規 劃 理 念...3 二 教 育 目 標...3 參 畢 業 要 求. 5 一 總 學 分 數...5 二 必 選 修 學 分 數...5 三 必 須 參 加 活 動...9 四 成 績 評 量 方 式...9 肆 課 程 概 述.. 9 一 課 程

More information

BlackBerry Classic Smartphone-用户指南

BlackBerry Classic Smartphone-用户指南 BlackBerry Classic Smartphone 版 本 : 10.3.1 用 户 指 南 发 布 日 期 : 2015-03-02 SWD-20150302151727377 目 录 设 置 和 基 本 知 识... 6 当 前 版 本 的 新 特 色...6 BlackBerry 智 能 手 机 简 介... 14 设 备 一 览... 14 BlackBerry Classic 键...16

More information

untitled

untitled 1 .NET 利 [] [] 來 說 切 切 理 [] [ ] 來 說 拉 類 類 [] [ ] 列 連 Web 行流 來 了 不 不 不 流 立 行 Page 類 Load 理 Response 類 Write 料 Redirect URL Response.Write("!! ives!!"); Response.Redirect("WebForm2.aspx"); (1) (2) Web Form

More information

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63>

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63> 2010 年 理 工 类 AB 级 阅 读 判 断 例 题 精 选 (2) Computer mouse How does the mouse work? We have to start at the bottom, so think upside down for now. It all starts with mouse ball. As the mouse ball in the bottom

More information

Microsoft PowerPoint - Lecture7II.ppt

Microsoft PowerPoint - Lecture7II.ppt Lecture 8II SUDOKU PUZZLE SUDOKU New Play Check 軟體實作與計算實驗 1 4x4 Sudoku row column 3 2 } 4 } block 1 4 軟體實作與計算實驗 2 Sudoku Puzzle Numbers in the puzzle belong {1,2,3,4} Constraints Each column must contain

More information

目录

目录 目 录 1 系 统 概 述... 1 1.1 主 要 功 能... 1 1.2 工 作 环 境 要 求... 2 1.2.1 硬 件 环 境... 2 1.2.2 操 作 系 统... 2 1.2.3 数 据 库... 2 1.2.4 浏 览 器... 2 2 安 装 卸 载... 3 2.1 安 装 步 骤... 3 2.2 使 用 加 密 狗... 5 2.3 卸 载 步 骤... 6 3 新

More information

自然辩证法索引

自然辩证法索引 自 然 与 科 学 技 术 哲 学 名 词 索 引 上 海 交 通 大 学 可 信 任 数 字 技 术 实 验 室 制 Copyright 2009 Trust Digital Technology Laboratory, Shanghai Jiao Tong University. Permission is hereby granted, free of charge, to any person

More information

untitled

untitled 1 Outline 流 ( ) 流 ( ) 流 ( ) 流 ( ) 流 ( ) 狀 流 ( ) 利 來 行流 if () 立 行 ; else 不 立 行 ; 例 sample2-a1 (1) 列 // 料 Console.Write(""); string name = Console.ReadLine(); Console.WriteLine(" " + name + "!!"); 例 sample2-a1

More information

Microsoft Word - Entry-Level Occupational Competencies for TCM in Canada200910_ch _2_.doc

Microsoft Word - Entry-Level Occupational Competencies for TCM in Canada200910_ch _2_.doc 草 稿 致 省 級 管 理 單 位 之 推 薦 書 二 零 零 九 年 十 月 十 七 日 加 拿 大 中 醫 管 理 局 聯 盟 All rights reserved 序 言 加 拿 大 中 醫 管 理 局 聯 盟, 於 二 零 零 八 年 一 月 至 二 零 零 九 年 十 月 間, 擬 定 傳 統 中 醫 執 業 之 基 礎 文 件 由 臨 床 經 驗 豐 富 之 中 醫 師 教 育 者 及

More information

VB程序设计教程

VB程序设计教程 高 等 学 校 教 材 Visual Basic 程 序 设 计 教 程 魏 东 平 郑 立 垠 梁 玉 环 石 油 大 学 出 版 社 内 容 提 要 本 书 是 按 高 等 学 校 计 算 机 程 序 设 计 课 程 教 学 大 纲 编 写 的 大 学 教 材, 主 要 包 括 VB 基 础 知 识 常 用 程 序 结 构 和 算 法 Windows 用 户 界 面 设 计 基 础 文 件 处

More information

untitled

untitled II III IV V VI VII VIII IX 2 ASP 1 ASP 3 4 ASP Web CGI ISAPI OLEISAPI Perl IDC ASP dbweb Perl IDC ASP dbweb IDC 1 ASP 5 Web Web DLL 6 ASP 1 ASP 7 8 ASP 1 ASP 9 10 ASP 1 ASP 11 12 ASP 1 ASP 13 14 ASP 1

More information

RUN_PC連載_8_.doc

RUN_PC連載_8_.doc PowerBuilder 8 (8) Web DataWindow ( ) DataWindow Web DataWindow Web DataWindow Web DataWindow PowerDynamo Web DataWindow / Web DataWindow Web DataWindow Wizard Web DataWindow Web DataWindow DataWindow

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

WinMDI 28

WinMDI 28 WinMDI WinMDI 2 Region Gate Marker Quadrant Excel FACScan IBM-PC MO WinMDI WinMDI IBM-PC Dr. Joseph Trotter the Scripps Research Institute WinMDI HP PC WinMDI WinMDI PC MS WORD, PowerPoint, Excel, LOTUS

More information

1.ai

1.ai HDMI camera ARTRAY CO,. LTD Introduction Thank you for purchasing the ARTCAM HDMI camera series. This manual shows the direction how to use the viewer software. Please refer other instructions or contact

More information

Adobe® InDesign® CS5 篩選器讀我檔案

Adobe® InDesign® CS5 篩選器讀我檔案 ADOBE INDESIGN CS5 2010/5/21 2010 Adobe Systems Incorporated and its licensors. All rights reserved. Adobe InDesign CS5 - Windows Mac OS This user guide is protected under copyright law, furnished for

More information

Microsoft Word - PS2_linux_guide_cn.doc

Microsoft Word - PS2_linux_guide_cn.doc Linux For $ONY PlayStatioin2 Unofficall General Guide Language: Simplified Chinese First Write By Beter Hans v0.1 Mail: hansb@citiz.net Version: 0.1 本 人 是 菜 鸟 + 小 白 欢 迎 指 正 错 误 之 处, 如 果 您 有 其 他 使 用 心 得

More information

untitled

untitled JavaEE+Android - 6 1.5-2 JavaEE web MIS OA ERP BOSS Android Android Google Map office HTML CSS,java Android + SQL Sever JavaWeb JavaScript/AJAX jquery Java Oracle SSH SSH EJB+JBOSS Android + 1. 2. IDE

More information

說 明 中 國 語 文 課 程 補 充 指 引 ( 非 華 語 學 生 ) 已 於 二 零 零 八 年 十 一 月 公 布, 並 於 十 二 月 連 同 各 種 配 套 教 學 參 考 資 料 派 發 學 校 我 們 建 議 有 收 取 非 華 語 學 生 的 學 校 採 用 補 充 指 引 考 慮

說 明 中 國 語 文 課 程 補 充 指 引 ( 非 華 語 學 生 ) 已 於 二 零 零 八 年 十 一 月 公 布, 並 於 十 二 月 連 同 各 種 配 套 教 學 參 考 資 料 派 發 學 校 我 們 建 議 有 收 取 非 華 語 學 生 的 學 校 採 用 補 充 指 引 考 慮 本 教 材 由 優 質 教 育 基 金 贊 助 地 利 亞 修 女 紀 念 學 校 ( 百 老 匯 ) 編 訂 現 經 教 育 局 課 程 發 展 處 調 適 整 理, 上 載 內 聯 網, 以 供 收 取 非 華 語 學 生 的 學 校 參 考 試 用 說 明 中 國 語 文 課 程 補 充 指 引 ( 非 華 語 學 生 ) 已 於 二 零 零 八 年 十 一 月 公 布, 並 於 十 二 月

More information

2005 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A. Sun Sun Berkeley BSD UNIX X/Open Company, Ltd. / Sun Sun Microsystems Su

2005 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A. Sun Sun Berkeley BSD UNIX X/Open Company, Ltd. / Sun Sun Microsystems Su Java Desktop System Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. : 819 0675 10 2005 2 2005 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, CA 95054 U.S.A. Sun Sun Berkeley

More information

<4D6963726F736F667420576F7264202D20B169B74FC5EF2020A8E2A9A4B0EABB79B1D0ACECAED1A56AA8E5B8D6BA71BFEFBFFDA4A7ACE3A8732E646F63>

<4D6963726F736F667420576F7264202D20B169B74FC5EF2020A8E2A9A4B0EABB79B1D0ACECAED1A56AA8E5B8D6BA71BFEFBFFDA4A7ACE3A8732E646F63> 國 立 臺 北 教 育 大 學 人 文 藝 術 學 院 語 文 與 創 作 學 系 語 文 教 學 碩 士 班 ( 暑 期 班 ) 碩 士 論 文 Master Program of Language Instruction ( Summer Program) Department of Language and Creative Writing College of Humanities and

More information

coverage2.ppt

coverage2.ppt Satellite Tool Kit STK/Coverage STK 82 0715 010-68745117 1 Coverage Definition Figure of Merit 2 STK Basic Grid Assets Interval Description 3 Grid Global Latitude Bounds Longitude Lines Custom Regions

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 49 [P.51] C/C++ [P.52] [P.53] [P.55] (int) [P.57] (float/double) [P.58] printf scanf [P.59] [P.61] ( / ) [P.62] (char) [P.65] : +-*/% [P.67] : = [P.68] : ,

More information