1 LEVEL Adobe Flex Builder SDK

Size: px
Start display at page:

Download "1 LEVEL Adobe Flex Builder SDK"

Transcription

1 UNIX -Adobe Flex - e e e e e e055714

2 1 LEVEL Adobe Flex Builder SDK LEVEL1 Flex LEVEL MXML Action Script LEVEL MXML Action Script LEVEL LEVEL5 TODO To Do list

3 8 Level crossdomain.xml

4 1 LEVEL 0 LEVEL0 Flex 1.1 Adobe Flex Flex Flex Flash Player 9 Adobe Flash Adobe Flex Flex 1.2 Adobe Flex Builder SDK Builder Flex Builder Eclipse IDEIntegrated Development Environment:Eclipse Eclipse Builder SDK SDK(Software Development Kit) emacs CUI mxmlc hogehoge.mxml 1

5 2 LEVEL1 Flex 2.1 Flex Flex 2.2 <mx:script> <![CDATA[ import mx.controls.alert; private function onclick():void { var message:string; var num:int = Math.floor( Math.random() * 4 ) + 1; if (num == 1){ message = ""; else if (num == 2) { message = ""; else if (num == 3) { message = ""; else { message = ""; Alert.show( message ); ]]> </mx:script> 2

6 2.3 1: 2.4 Math.random Math.floor 0 1: Math.random 0 1 Math.floor num,1,2,3,4 else if 3

7 3 LEVEL2 3.1 MXML MouseEvent mousemove MouseEvent.MOUSE MOVE mousedown MouseEvent.MOUSE DOWN mouseup MouseEvent.MOUSE UP click MouseEvent.CLICK mousewheel MouseEvent.MOUSE WHEEL doubleclick MouseEvent.DOUBLE CLICK 2: MXML <mx:image id="a_img" initialize="oninit()" mousemove="onmousemove(event)" /> MXML Image initialize mousemove 4

8 3.4 Action Script import flash.events.mouseevent; private function oninit():void { a_img.graphics.beginfill(0xffffff); a_img.graphics.drawrect(0,0,this.width,this.height); a_img.graphics.endfill(); private function onmousemove(event:mouseevent):void { if (!event.buttondown) return; var x:number = a_img.mousex; var y:number = a_img.mousey; a_img.graphics.beginfill(0xff0000); a_img.graphics.drawcircle(x, y, 4); a_img.graphics.endfill(); oninit() mousemove onmousemove onmousemove event.buttondown 3.5 2: 5

9 4 LEVEL3 4.1 Flex Web Flex Builder 4.3 MXML <mx:textinput id="disp_txt" x="10" y="10" width="263"/> <mx:button x="10" y="40" label="7" width="42" height="42" click="onclick(event)"/> <mx:button x="60" y="40" label="8" width="42" height="42" click="onclick(event)"/> <mx:button x="110" y="40" label="9" width="42" height="42" click="onclick(event)"/> <mx:button x="10" y="90" label="4" width="42" height="42" click="onclick(event)"/> <mx:button x="60" y="90" label="5" width="42" height="42" click="onclick(event)"/> <mx:button x="110" y="90" label="6" width="42" height="42" click="onclick(event)"/> <mx:button x="10" y="140" label="1" width="42" height="42" click="onclick(event)"/> <mx:button x="60" y="140" label="2" width="42" height="42" click="onclick(event)"/> <mx:button x="110" y="140" label="3" width="42" height="42" click="onclick(event)"/> <mx:button x="10" y="190" label="0" width="42" height="42" click="onclick(event)"/> 6

10 4.4 Action Script private function onclick(event:mouseevent):void { var btn:button = event.target as Button; var str:string = btn.label; // if (str == "C") { clear(); return; // if (str.match(/[0-9\.]/)) { addnum(str); return; // eval(str); (MouseEvent )event target event.target as Buttontarget Object Button label label 7

11 4.5 3: = 11 8

12 5 LEVEL4 5.1 Flex RSS 6 4: 6.1 <mx:datagrid width="100%" height="100%" dataprovider="{a_service.lastresult.channel.item"> <mx:columns> <mx:datagridcolumn headertext="" datafield="title"/> <mx:datagridcolumn headertext="" width="100"> <mx:itemrenderer> <mx:component> <mx:hbox height="32" horizontalalign="center"> 9

13 <mx:image source="{data.image.url"/> 6.2 <mx:httpservice id="a_service" url="feed://weather.livedoor.com/forecast/rss/47/136.xml" useproxy="false" resultformat="e4x"/> </mx:application> HTTPService 10

14 7 LEVEL5 TODO 7.1 To Do list Flex TODO TODO TODO 7.2 5: 6: 11

15 7.3 TODO TODO TODO Image Text -----AppTodoList.mxml----- <!-- --> <mx:component id="todo_grid_renderer"> <mx:hbox height="32"> <mx:image source="{data.icon.png" verticalalign="middle" horizontalalign="center" height="32"/> <mx:text width="100%" height="100%" text="{data.text" selectable="false"/> </mx:hbox> </mx:component> 7.4 DragManager Button DragMAnager.acceptDragDrop() -----AppTodoListAction.as----- private function acceptdrop(event:dragevent):void { DragManager.acceptDragDrop(event.currentTarget as UIComponent); dragenter 12

16 -----AppTodoList.mxml----- <mx:button width="100%" height="38" label="edit" click="edititem()" dragenter="acceptdrop(event)" dragdrop="edititem()" edit.png )"/> dragdrop 7: 7.5 ArrayCollection SharedObject -----AppTodoListAction.as----- save_so = SharedObject.getLocal("todo.data"); TODO ArrayCollection todo items 13

17 -----AppTodoListAction.as----- if (save_so.data.items) { todo_items = save_so.data.items; -----AppTodoListAction.as----- private function savetostrage():void { save_so.data.items = todo_items; 14

18 8 Level6 8.1 API API : 9: 8.3 /**/ 15

19 <mx:panel title="" width="100%" height="100%"> <mx:vbox width="100%" height="100%"> <mx:hbox width="100%"> <mx:label text=""/> /*keyword_txt */ <mx:textinput text="" id="keyword_txt" width="100%" keyup="if(event.keycode==13) a_service.send()"/> </mx:hbox> /**/ <mx:hdividedbox width="100%" height="100%"> <mx:list width="100%" height="100%" id="a_list" /* URL */ dataprovider="{a_service.lastresult.info.photo" labelfield="photo_title" click="a_img.source= a_list.selecteditem.image_url;"/> <mx:image id="a_img" width="100%" height="100%" click="navigatetourl(new URLRequest(a_list.selectedItem.url))"/> </mx:hdividedbox> </mx:vbox> </mx:panel> <mx:httpservice id="a_service" resultformat="e4x" /* URL*/ url= > <mx:request> /**/ <limit>10</limit> <keyword>{keyword_txt.text</keyword> /* creativecommons */ <copyright>creativecommons</copyright> </mx:request> </mx:httpservice> 16

20 9 Flash Player Web Flash Player SWF SWF Web crossdomain.xml Web Web crossdomain.xml 9.1 crossdomain.xml <?xml version="1.0"?> <cross-domain-policy> <allow-access-from domain="~hogeip ~" /> </cross-domain-policy> [1] Adobe Flex2 ISBN [2] ActionScript3.0 ISBN [3] Adobe - Flex 2 - Web 17

untitled

untitled Flex 2010 1 21 5106139 5106144 1 -------------------------------------------------------------------------------------------------p3 ----------------------------------------------------------------------------------------------p4

More information

Flex2とS2Flex2とAIR紹介

Flex2とS2Flex2とAIR紹介 Flex2 S2Flex2 AIR 2007.11.11 The Seasar Project Akabana!"#$%&'()*+*',-.& /012 1 2 3 4 5 6 Flex 7 mxml

More information

CNO2009_Enquete_Report.key

CNO2009_Enquete_Report.key 1 2 55% 45% 3 3 3 25 2 22 15 16 1 5 7 8 5 1 1 2 2 3 3 4 4 Web Web Web 1 3 3 3 3 14 15 17 27 5 1 15 2 25 3 5 1 1 6 6 41 42 1 2 3 4 5 6 CSS Nite mixi mixi 21 5 9 5 1 4 1 12 16 12 7 6 12 18 24 3 7 7 6 5 4

More information

Microsoft PowerPoint - G-1_Flexでつくる初めてのRIA.ppt

Microsoft PowerPoint - G-1_Flexでつくる初めてのRIA.ppt Flex 3 でつくるはじめての RIA ( リッチインターネットアプリケーション ) たいらひでかづ アドビ認定インストラクター (ACI) 1 Who is this guy? たいらひでかづ m-school インストラクター Flex および Flash アドビ認定インストラクター (ACI) *A 10 point footnote can go here, if necessary 2

More information

ch31.dvi

ch31.dvi 1 1 1.1 1.1.1 ( ) ( 1.1 ): [ ] [ ] CPU[ + ] [ ] CPU( ) ( 1 2 1 1.1: ( 1.1 ): ( ) [ ] ( )[ ] + ( ) (+ ) ( ) ( ) 1.1. 3 1.2: ( ) ( ) ( 1.2) 4 1 1.3: 120m/ (432km/h) 0.5 2m/ 1 ( 1 ) ( ) ( ) ( 1.3) 1.1. 5

More information

--- サーバ側処理 Java servlet の例 // 通常の Java servlet での POST で受信と同じ protected void dopost(httpservletrequest request, HttpServletResponse response) throws S

--- サーバ側処理 Java servlet の例 // 通常の Java servlet での POST で受信と同じ protected void dopost(httpservletrequest request, HttpServletResponse response) throws S 2 サーバとの連携と BlazeDS Flex アプリケーションではクライアント ( ブラウザ ) で処理できる機能が多いですが データベースへのアクセスや クライアントでは負担が大きい処理などはサーバ側で行います また パソコンのローカルディスクへのアクセスのように セキュリティの都合でクライアントで直接処理できない場合は一旦サーバにアップロードするなどして処理します 2-1 ファイルアップロードファイルをアップロードする場合は

More information

: : : TSTank 2

: : : TSTank 2 Java (8) 2008-05-20 Lesson6 Lesson5 Java 1 Lesson 6: TSTank1, TSTank2, TSTank3 java 2 car1 car2 Car car1 = new Car(); Car car2 = new Car(); car1.setcolor(red); car2.setcolor(blue); car2.changeengine(jet);

More information

untitled

untitled Ajax Web Ajax http://www.openspc2.org/javascript/ajax/ajax_stu dy/index.html Life is beautiful Ajax http://satoshi.blogs.com/life/2005/06/ajax.html Ajax Ajax Asynchronous JavaScript + XML JavaScript XML

More information

No 1 p3 2 P4 3 P5 4 P6 5 P7 6 P8 7 P9 8 P10 9 P11 10 80 PR Web P12 11 Blender DCG P13 12 P14 13 QR P15 14 P16 15 P17 16 Flash Web P18 17 Flash ActionScript P19 18 MML DTM P20 19 JAVA P21 i-appli 20 Flash

More information

Adobe AIR のセキュリティ

Adobe AIR のセキュリティ ADOBE AIR http://help.adobe.com/ja_jp/legalnotices/index.html iii................................................................. 1.....................................................................

More information

Flash Player ローカル設定マネージャー

Flash Player ローカル設定マネージャー ADOBE FLASH PLAYER http://help.adobe.com/ja_jp/legalnotices/index.html iii................................................................................................................. 1...........................................................................................................

More information

Windowsユーザでも 手軽に作れるiPhoneアプリ

Windowsユーザでも 手軽に作れるiPhoneアプリ Windows ユーザでも 手軽に作れる iphone アプリ 株式会社フォーサイト バリュー テクノロジー 山本健一 1 2 はじめに iphone アプリを開発するために必要なもの ( 一例 ) OS 開発言語 開発キット Mac OS X 10.5.3 以降 Objective-C iphone SDK 開発環境 Xcode 4.3 iphone SDK は Windows 上では動かせません

More information

JavaScript の使い方

JavaScript の使い方 JavaScript Release10.5 JavaScript NXJ JavaScript JavaScript JavaScript 2 JavaScript JavaScript JavaScript NXJ JavaScript 1: JavaScript 2: JavaScript 3: JavaScript 4: 1 1: JavaScript JavaScript NXJ Static

More information

サンプルの 実 行 結 果 (F1を 押 した 場 合 ) Keyboard イベントのプロパティ shiftkey, ctrlkey, altkey はそれぞれ true でキーが 押 されている 状 態 を 表 します 尚 charcode の 値 は 英 語 キーボードの 値 です 例 えば

サンプルの 実 行 結 果 (F1を 押 した 場 合 ) Keyboard イベントのプロパティ shiftkey, ctrlkey, altkey はそれぞれ true でキーが 押 されている 状 態 を 表 します 尚 charcode の 値 は 英 語 キーボードの 値 です 例 えば 3 キーボードとマウス 操 作 性 を 重 視 したインタラクティブなアプリケーションを 作 るにはキーボードやマウスの 処 理 は 必 須 です Flex の 既 存 のコンポーネントでもかなり 高 度 な 処 理 が 可 能 ですが ActionScript でキー ボードイベントやマウスイベントを 使 えばより 高 度 な 入 力 処 理 を 自 由 に 作 れます 3-1 キーボードイベント

More information

paper.pdf

paper.pdf Cop: Web 1,a) 1,b) GUI, UI,,., GUI, Java Swing., Web HTML CSS,. CSS,, CSS,.,, HTML CSS Cop. Cop, JavaScript,,. Cop, Web,. Web, HTML, CSS, JavaScript, 1., GUI, Web., HTML CSS (UI), JavaScript, Web GUI.

More information

JavaScript 1.! DOM Ajax Shelley Powers,, JavaScript David Flanagan, JavaScript 2

JavaScript 1.! DOM Ajax Shelley Powers,, JavaScript David Flanagan, JavaScript 2 JavaScript (2) 1 JavaScript 1.! 1. 2. 3. DOM 4. 2. 3. Ajax Shelley Powers,, JavaScript David Flanagan, JavaScript 2 (1) var a; a = 8; a = 3 + 4; a = 8 3; a = 8 * 2; a = 8 / 2; a = 8 % 3; 1 a++; ++a; (++

More information

LiveCode初心者開発入門サンプル

LiveCode初心者開発入門サンプル / About LiveCode 01:... 11 02: Create... 15 set 03:... 21 name title LiveCode 04:... 29 global local width height 05:... 37 Controls Tools Palette Script Editor message handler 06:... 52 RGB 07:... 63

More information

16 COBBLE PAD A Service Framework for Coordinating Distributed Information Appliances : G01P093-9

16 COBBLE PAD A Service Framework for Coordinating Distributed Information Appliances : G01P093-9 16 COBBLE PAD A Service Framework for Coordinating Distributed Information Appliances : 2005 2 1G01P093-9 harumin@ruri.waseda.jp i,.,.,,., GUI GUI.,,, GUI COBBLE PAD. COBBLE PAD, GUI,,. ii Abstract Following

More information

1 Google

1 Google 1 Google 2 (URL) (HTML, ) 3 4 Lynx 5 NCSA Mosaic Unix, Mac, Windoes 6 Firefox Internet Explorer Google 7 Google Google 8 9 Google http://maps.google.co.jp/ 10 11 12 13 GIS (Geographical Information System)

More information

『赤すぐ』『妊すぐ』<出産・育児トレンド調査2003>

『赤すぐ』『妊すぐ』<出産・育児トレンド調査2003> 79.9 1.6 UP 86.6% 7.0 UP 61.3% 12.7UP 18-24 3 66.6 3.0 UP 38.7 0.7 UP 14.8 1.9 UP 13.3 0.3UP 4 1 024 1.23 0.01down Topics 5 79.9 1.6UP 7.0 UP 12.7U 3.5 0.4 UP 3.4 0.4 UP 6 73.1% 5.7 UP 75.0% 71.2% 7 53.9%

More information

(()) () ( ) () () () () () () ( ) () () () () () () () () () () () () ( ) () ( ) () () () ( ) () () () () () ( ) () () () () ( ) () ( ) () () ( ) () ( ) () () () () () () () () () () () () () () () ()

More information

1 105 2 4 50 3 ISBN 4 25 2013 1 ISBN 5 128p ISBN978-4-8340-0013-9 ISBN 2

1 105 2 4 50 3 ISBN 4 25 2013 1 ISBN 5 128p ISBN978-4-8340-0013-9 ISBN 2 1 2 39 3 14 13 16 17 36 21 30 32 1 1 105 2 4 50 3 ISBN 4 25 2013 1 ISBN 5 128p ISBN978-4-8340-0013-9 ISBN 2 39 32p ISBN978-4-251-00517-5 62p ISBN978-4-00-110579-7 1 33p ISBN978-4-477-01141-7 3 32p ISBN978-4-591-01270-3

More information

ISBN 0 00 00 00 0 0 ISBN 0 0 ISBN---.000-0

ISBN 0 00 00 00 0 0 ISBN 0 0 ISBN---.000-0 ISBN 0 00 00 00 0 0 ISBN 0 0 ISBN---.000-0 0 ISBN 0 00 00 00 0 0 ISBN 0 0 ISBN---.000-0 ISBN 0 00 00 00 0 0 ISBN 0 0 ISBN---.000-0 ISBN 0 00 00 00 0 0 ISBN 0 0 ISBN---.000-0 ISBN 0 00 00 00 0 0 ISBN 0

More information

0 00 000 000 ISBN 0 0 0 ISBN 0 0 0 ISBN---.00-

0 00 000 000 ISBN 0 0 0 ISBN 0 0 0 ISBN---.00- 0 0 0 --- -0--0-- 00 0 00-0 0 0 0 0 000-00- 0 00 000 000 ISBN 0 0 0 ISBN 0 0 0 ISBN---.00- 0 00 000 000 ISBN 0 0 0 ISBN 0 0 0 ISBN---.00- ISBN 0 0 0 ISBN 0 0 0 0 00 000 000 ISBN---.00- 0 00 000 000 ISBN

More information

496

496 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 ISBN4-258-17041-0

More information

() () () () ( ) () () () () () () () () () () () () () () () () () () () () () () ( () () () () () () () () () () () () ) () ( ) () () ( ) () () () () () () () () () () () () () () () () () () () ()()

More information

2

2 2 485 1300 1 6 17 18 3 18 18 3 17 () 6 1 2 3 4 1 18 11 27 10001200 705 2 18 12 27 10001230 705 3 19 2 5 10001140 302 5 () 6 280 2 7 ACCESS WEB 8 9 10 11 12 13 14 3 A B C D E 1 Data 13 12 Data 15 9 18 2

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Biz/Browser 2005 118 Biz/Browser Rich Client Biz/Browser Macromedia Flash MX Curl Surge Runtime Adobe Acrobat B2B B2C OLAP Biz/Designer CRS Chain Reflection Script Flash MX Pro 2004 SWF Action Script Surge

More information

ACS電子ジャーナル利用マニュアル

ACS電子ジャーナル利用マニュアル American Chemical Society ACS Web Edition & Journal Archives American Chemical Society ACS 4 Web Edition 2002 7 1879 Journal Archives ACS 1...2 2 2-1...3 2-2...4 2-3...5 3 3-1 Abstract...6 3-2 Full Text

More information

Adobe LiveCycle Workbench 11 のインストール

Adobe LiveCycle Workbench 11 のインストール Adobe LiveCycle - Workbench 10 http://help.adobe.com/ja_jp/legalnotices/index.html iii 1 1.1............................................................................................ 1 1.2..............................................................................................................

More information

HTML Flash Alt 2

HTML Flash Alt 2 1 HTML Flash Alt 2 [ ] [ ] HTML CSS [ ] 3 1 BGM 4 TAB IT 5 Ver1.0 HTML HTML HTML HTML URL HTML HTML.HTML.HTM 6 HTML h1 h6 *1 HTML title *1 7 HTML img ALT *1 *1 ALT HTML img ALT ALT img ALT ALT * - ALT

More information

第 8 回の内容 クライアントサイド処理 JavaScript の基礎

第 8 回の内容 クライアントサイド処理 JavaScript の基礎 第 8 回の内容 クライアントサイド処理 JavaScript の基礎 クライアントサイド処理 クライアントサイド / サーバサイド クライアントサイド サーバサイド Web ブラウザ Web サーバ 動的な Web ページ Web ブラウザ Web サーバ Web ブラウザ Web サーバ リソース生成 描画 描画 リソース生成 再描画 描画 再描画 描画 リソース生成 再描画 動的な Web ページとページ遷移

More information

Windows Macintosh 18 Java Windows 21 Java Macintosh

Windows Macintosh 18 Java Windows 21 Java Macintosh 2 2 2 6 6 6 12 16 17 18 Windows Macintosh 18 Java Windows 21 Java Macintosh 23 25 26 26 27 33 34 40 48 55 57 60 Sun Sun Microsystems Java Java Sun Microsystems, Inc. Microsoft Windows Windows Microsoft

More information

untitled

untitled Visual Basic.NET 1 ... P.3 Visual Studio.NET... P.4 2-1 Visual Studio.NET... P.4 2-2... P.5 2-3... P.6 2-4 VS.NET(VB.NET)... P.9 2-5.NET... P.9 2-6 MSDN... P.11 Visual Basic.NET... P.12 3-1 Visual Basic.NET...

More information

Microsoft PowerPoint - diip ppt

Microsoft PowerPoint - diip ppt 2006 年度デザイン情報学科情報処理 III 第 12 回マウスによる制御 ブロック崩し の部品 ボール直径 10pixel の円ラケット横 60pixel 縦 10pixel, マウスにより左右に移動ブロック横 50pixel 縦 20pixel,28 個 (7 個 4 段 ) 壁 ( フィールド ) 横 400pixel 縦 600pixel 2006 年度デザイン情報学科情報処理 III 2

More information

Microsoft PowerPoint - 201409_秀英体の取組み素材(予稿集).ppt

Microsoft PowerPoint - 201409_秀英体の取組み素材(予稿集).ppt 1 2 3 4 5 6 7 8 9 10 11 No Image No Image 12 13 14 15 16 17 18 19 20 21 22 23 No Image No Image No Image No Image 24 No Image No Image No Image No Image 25 No Image No Image No Image No Image 26 27 28

More information

オンラインテスト

オンラインテスト 1. 2. JavaScript 3. Perl 4. CGI 1. WWW HTML WWW World Wide Web HTML Hyper Text Markup Language XML, XHTML Java (.java) JavaApplet (.class,.jar) JavaServlet (.jsp) JavaScript (.html) CGI (.cgi) SSI (.shtml)

More information

SGML HTML XML Markup Language Web HTML HTML SGML Standard Generalized Markup Language Markup Language DTD Document Type Definition XML SGML Markup Language HTML XML HTML XML JavaScript JAVA CGI HTML Web

More information

macromedia Dreamweaver macromedia Fireworks macromedia Flash

macromedia Dreamweaver macromedia Fireworks macromedia Flash Web 1030231 15 1 27 1 1 2 2 3 3.1 macromedia Dreamweaver 3 3.2 macromedia Fireworks 4 3.3 macromedia Flash 5 4 4.1 6 4.2 7 5 5.1 31 5.2 40 5.3 49 6 57 58 59 1 Flash 1 2 Web Flash Flash Web 2 3 3.1 macromedia

More information

第7回 Javascript入門

第7回 Javascript入門 Slide URL https://vu5.sfc.keio.ac.jp/slide/ Web 情報システム構成法第 9 回 JavaScript 入門 (2) 萩野達也 (hagino@sfc.keio.ac.jp) 1 JavaScript 入門 ( 前回 ) オブジェクト指向について JavaScriptの誕生プロトタイプベースのオブジェクト指向 言語 構文および制御構造 代入条件文繰り返し関数

More information

BASICとVisual Basic

BASICとVisual Basic Visual Basic BASIC Visual Basic BASICBeginner's All purpose Symbolic Instruction Code Visual Basic Windows BASIC BASIC Visual Basic Visual Basic End Sub .Visual Basic Visual Basic VB 1-1.Visual Basic

More information

e10s におけるプロセス間通信の基本 219 HACK #34 Components.manager.removeBootstrappedManifestLocati on() function shutdown(adata, areason) { const IOService =

e10s におけるプロセス間通信の基本 219 HACK #34 Components.manager.removeBootstrappedManifestLocati on() function shutdown(adata, areason) { const IOService = e10s におけるプロセス間通信の基本 219 Components.manager.removeBootstrappedManifestLocati on() function shutdown(adata, areason) { const IOService = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService);

More information

07_経営論集2010 小松先生.indd

07_経営論集2010 小松先生.indd 19 1 2009 105 123 Web Web Web Web World Wide Web WWW OS 1990 WWW Web HTML CSS JavaScript Web 1 WWW 2 Web Web 3 Web 4 HTML5 5 Web Web 3 1970 WWW HTML Web WWW WWW WWW WWW WWW 105 Web WWW 2 Web 1 1 NTT NTT

More information

untitled

untitled 2007 IT G Google Map API WEB2.0 2007 8 23 GoogleMapAPI GoogleMapAPI Google Web URL XHTML JavaScript GoogleMAP LHACA FFFTP TeraPad Haruhiro Unno Japan Electronics College 1 GoogleMapAPI Web Google GMail

More information

-2-

-2- -1- -2- -3- -4- -5- -6- -7- -8- 10-9- -10-1 2 -11-1 1-12- -13- -14- Plan Do Check Action Check Action 1 -15- -16- -17- -18- -19- -20- -21- -22- 10 2 9 3 9 2 1 10 2 9 3 6 4 1 6 6 10 2 10 2 11 1 8 1 8 4

More information

平成20年度内部評価実施結果報告書《本編》

平成20年度内部評価実施結果報告書《本編》 10 11 12 13 14 15 16 17 Plan Do Check Action 1 2 3 4 146 13 20 43 44 45 62 104 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47

More information

untitled

untitled 1 1 2 3 2 1 ( 0) 2000 00 3 4 Check Action Do Plan 5 6 14001 5000 5000 1000 1000 7 8 9 10 2004 0.1 0.1 0.0 0.0 0.0 15.3 483.5 0.4 11 12 13 14 http://kankyou.pref.shizuoka.jp/seikan/seikanindex.htm 15 16

More information

ORCA (Online Research Control system Architecture)

ORCA (Online Research Control system Architecture) ORCA (Online Research Control system Architecture) ORCA Editor Ver.1.2 1 9 10 ORCA EDITOR 10 10 10 Java 10 11 ORCA Editor Setup 11 ORCA Editor 12 15 15 ORCA EDITOR 16 16 16 16 17 17 ORCA EDITOR 18 ORCA

More information

CodeIgniter Con 2011, Tokyo Japan, February

CodeIgniter Con 2011, Tokyo Japan, February CodeIgniter Con 2011, Tokyo Japan, February 19 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 http://www.iviking.org/fx.php/ 25 26 10 27 28 29 30 31

More information

Microsoft Word - jpluginmanual.doc

Microsoft Word - jpluginmanual.doc TogoDocClient TogoDocClient... i 1.... 1 2. TogoDocClient... 1 2.1.... 1 2.1.1. JDK 5.0... 1 2.1.2. Eclipse... 1 2.1.3.... 1 2.1.4.... 2 2.2.... 3 2.2.1.... 3 2.2.2.... 4 2.3. Eclipse Commands... 5 2.3.1....

More information

SmartBrowser_document_build30_update.pptx

SmartBrowser_document_build30_update.pptx SmartBrowser Update for ios / Version 1.3.1 build30 2017 年 8 月 株式会社ブルーテック 更新内容 - 概要 ios Version 1.3.1 build28 の更新内容について 1. 設定をQRから読み込み更新する機能 2.URLをQRから読み込み画面遷移する機能 3.WEBページのローカルファイル保存と外部インテントからの起動 4.JQuery-LoadImageライブラリの組み込み

More information

Level1_ key

Level1_ key HTML5 1 2019 8 1.5 API ( ) 1.5.1 API 1.5.2 API 1.5.3 API 1.5.4 API!2 HTML5 Web HTML5 Web Web HTML5 Web Web Web Web Web HTML5!3 Web HTML5 Web HTML Web Web Web API Web HTML Web Web!4 1 2 HTML/HTML5 HTML5

More information

help gem gem gem my help

help gem gem gem my help hikiutils 1234 2017 3 1 1 6 1.0.1 help gem................... 7 gem.................................... 7 gem................................... 7 my help.................................. 7 my help......................

More information

JTS Google App Engine S119325

JTS Google App Engine S119325 JTS Google App Engine S119325 1 3 1.1.............................. 3 1.2.............................. 3 1.3.............................. 4 2 Google App Engine 5 2.1 Google App Engine.....................

More information

2 2 2 6 9 9 10 14 18 19 21 22 22 Java 23 24 25 25 26 30 31 32 39 46 53 55 58 2 2.0 2.0R Ver.2.0R Java Java 2.0 2.0R 2.0R 2.0 Ver2.0 2.0R Ver2.0R 19 Sun Sun Microsystems Java Java Sun Microsystems, Inc.

More information

( )$("canvas").drawarc({strokestyle:"red", x:100, y:100, radius:20, start:0, end:360); drawline(x1:, y1:,... xn:, yn:) drawline n 2 n 3 x1: y1: xn: yn

( )$(canvas).drawarc({strokestyle:red, x:100, y:100, radius:20, start:0, end:360); drawline(x1:, y1:,... xn:, yn:) drawline n 2 n 3 x1: y1: xn: yn 0.1. jquaery jcanvas jquery John Resig OSS JavaScript Web JavaScript jquery jquery 1 0.2. jcanvas jcanvas 0.3. jcanvas HTML5 Canvas Canvas jcanvas jcanvas jquery Canvas API jcanvas Grouping Layer jcanvas

More information

nopcommerce 2.2 2.1.6 Adobe Flash ( 1 ) 1 nopcommerce 2.2 ( [5, p.3-4] )

nopcommerce 2.2 2.1.6 Adobe Flash ( 1 ) 1 nopcommerce 2.2 ( [5, p.3-4] ) nopcommerce 2.2 NopCommerce (Ver.2.3) NopCommerce 2.1.1 (OS) Windows 7 Windows Vista Windows XP Windows Server 2003 Windows Server 2008 2.1.2 Web Internet Information Service (IIS) 6.0 2.1.3 ASP.NET 4.0

More information

Version C 1 2 3 4 5 1 2 3 4 5 6 7 8 9 0 A 1 2 1 3 4 5 1 1 2 1 1 1 2 4 5 6 7 8 3 1 2 C a b c d e f g A A B C B a b c d e f g 3 4 4 5 6 7 8 1 2 a b 1 2 a b 1 2 1 2 5 4 1 23 5 6 6 a b 1 2 e c d 3

More information

A/B (2010/10/08) Ver kurino/2010/soft/soft.html A/B

A/B (2010/10/08) Ver kurino/2010/soft/soft.html A/B A/B (2010/10/08) Ver. 1.0 kurino@math.cst.nihon-u.ac.jp http://edu-gw2.math.cst.nihon-u.ac.jp/ kurino/2010/soft/soft.html 2010 10 8 A/B 1 2010 10 8 2 1 1 1.1 OHP.................................... 1 1.2.......................................

More information

ActionScript Flash Player 8 ActionScript3.0 ActionScript Flash Video ActionScript.swf swf FlashPlayer AVM(Actionscript Virtual Machine) Windows

ActionScript Flash Player 8 ActionScript3.0 ActionScript Flash Video ActionScript.swf swf FlashPlayer AVM(Actionscript Virtual Machine) Windows ActionScript3.0 1 1 YouTube Flash ActionScript3.0 Face detection and hiding using ActionScript3.0 for streaming video on the Internet Ryouta Tanaka 1 and Masanao Koeda 1 Recently, video streaming and video

More information

Gray [6] cross tabulation CUBE, ROLL UP Johnson [7] pivoting SQL 3. SuperSQL SuperSQL SuperSQL SQL [1] [2] SQL SELECT GENERATE <media> <TFE> GENER- AT

Gray [6] cross tabulation CUBE, ROLL UP Johnson [7] pivoting SQL 3. SuperSQL SuperSQL SuperSQL SQL [1] [2] SQL SELECT GENERATE <media> <TFE> GENER- AT DEIM Forum 2017 E3-1 SuperSQL 223 8522 3 14 1 E-mail: {tabata,goto}@db.ics.keio.ac.jp, toyama@ics.keio.ac.jp,,,, SuperSQL SuperSQL, SuperSQL. SuperSQL 1. SuperSQL, Cross table, SQL,. 1 1 2 4. 1 SuperSQL

More information

山梨県ホームページ作成ガイドライン

山梨県ホームページ作成ガイドライン 17 7 ...1...4...4...4...4...5...5 W3C...5...6...6...6...7...8...8...10...10...10... 11...12...12...13...13...13...14...14...14...15...15...16...16...16...16...16...17...18 15 (2003 ) 69.7 81.1 43.6 19.6

More information

untitled

untitled 0120-888-089 0120-919-498 160-83381-26-1TEL. 03-3349-3111 URL http://www.sjnk.co.jp/ 160-83381-26-1 TEL. 03-3349-3111 URL http://www.sompo-japan.co.jp/ 100-89653-7-3 TEL. 0120-919-498 URL http://www.nipponkoa.co.jp/

More information

農林金融2015年5月号

農林金融2015年5月号 4 5 4 4 4 4 2014 5 14 7 2050 1412 15 3 19 1800 1 1 2 2 2 126 2 3 1 2 1 2 3 4 1 1 2 2 1 1 2014 3 2 126 2 2 3 1 40 30 20 10 0 2014 26 287 339 393 399 361 2 2 11 1 3 25 4 4 5 5 19898993 96 3 2000 1 1 1 5

More information

表紙.PDF

表紙.PDF 2 3 4 2001 2010 33 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 H18 21 22 23 24 25 26 27 28 29 30 31 32 33 300 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 410-8601 055-934-4747 Fax 055-933-1412

More information

Drive-by Download RIG Exploit Kit

Drive-by Download RIG Exploit Kit 2017 StarC Drive-by Download 1 1 2 2 2.1 Drive-by Download.................................... 2 2.2 RIG Exploit Kit......................................... 2 2.3.............................................

More information

アプリケーション

アプリケーション アプリケーション開発 お絵かきソフト 目次 お絵かきソフトを作ってみよう... 3 絵を書く枠と場所表示を作る... 3 マウスの動きを見てみよう... 4 絵を書く準備をします... 5 絵を書くとはどういうことか... 5 では線画を描いてみよう... 6 マウスをドラッグしたときだけ線を引くように改造する... 8 お絵かきソフトを作ってみよう 今回は お絵かきソフトを作ってみましょう マウスを動かして線画を書いてみましょう

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション FlashDevelop( フラッシュ デベロップ ) について 2011/03/27 作成 佐野尚之 1 本ドキュメントのライセンスについて この作品は クリエイティブ コモンズの Attribution 3.0 Unported ライセンスの下でライセンスされています この使用許諾条件を見るには http://creativecommons.org/licenses/by/3.0/ をチェックするか

More information

スライド 1

スライド 1 広告原稿規定動画 2016.3.10 版 入稿素材についての注意事項 1 ご入稿の場合は 以下のファイルをご用意ください 広告配信につきましては Sizmek 社の広告配信サーバーを利用しております 入稿素材 ファイル形式 バージョン 容量 サイズ ( 左右 天地 ) アニメーション秒数 備考 1: 動画 FLV WMV MP4 F4V - 10MB 以内 16:9( 動画画角 ) 30 秒以内停止

More information

Visual Studio2008 C# で JAN13 バーコードイメージを作成 xbase 言語をご利用の現場でバーコードの出力が必要なことが多々あります xbase 言語製品によっては 標準でバーコード描画機能が付加されているものもあるようで す C# では バーコードフォントを利用したりバー

Visual Studio2008 C# で JAN13 バーコードイメージを作成 xbase 言語をご利用の現場でバーコードの出力が必要なことが多々あります xbase 言語製品によっては 標準でバーコード描画機能が付加されているものもあるようで す C# では バーコードフォントを利用したりバー Visual Studio2008 C# で JAN13 バーコードイメージを作成 xbase 言語をご利用の現場でバーコードの出力が必要なことが多々あります xbase 言語製品によっては 標準でバーコード描画機能が付加されているものもあるようで す C# では バーコードフォントを利用したりバーコード OCX や バーコード対応レ ポートツールが豊富にありますので それほど困ることは無いと思われます

More information