안녕하세요. 전에 이어서 플래쉬에서의 파일업로드를 구체적으로 설명하죠.
따라해보세요.
System.security.allowDomain("http://localhost/");//이 도메인을 설정해주지 않으면 PHP쪽에서 파일을 업로드 받지 못합니다. 그러니 여기서 http://localhost/는 PHP파일이 있는 웹서버의 url이지요. 전 내 컴에 php서버를 구축했으니까localhost로 됩니다.
import flash.net.FileReference;//파일을 다르기위해서 필요한 패키지의 참조입니다.
var allTypes:Array = new Array();
var imageTypes:Object = new Object();
imageTypes.description = "Images (*.jpg, *.jpeg, *.gif, *.png)";
imageTypes.extension = "*.jpg; *.jpeg; *.gif; *.png";
allTypes.push(imageTypes);//파일의 타입을 어레이로 설정합니다.
var listener:Object = new Object();//파일참조클래스변수를 위한 리스너를 만듭니다. 꼭이렇게 하는거 아니고요.
listener.onSelect = function(file:FileReference):Void {
trace("onSelect: " + file.name);
trace(this);
if(!file.upload("http://localhost/fileupload.php")) {//파일업로드합니다.
trace("Upload dialog failed to open.");
}
}
listener.onCancel = function(file:FileReference):Void {//파일선택취소했을때처리
trace("onCancel");
}
listener.onOpen = function(file:FileReference):Void {//파일열기했을떄처리
trace("onOpen: " + file.name);
}
listener.onProgress = function(file:FileReference, bytesLoaded:Number, bytesTotal:Number):Void {
trace("onProgress with bytesLoaded: " + bytesLoaded + " bytesTotal: " + bytesTotal);
}
listener.onComplete = function(file:FileReference):Void {//업로드완성
trace("onComplete: " + file.name);
}
listener.onHTTPError = function(file:FileReference):Void {
trace("onHTTPError: " + file.name);
}
listener.onIOError = function(file:FileReference):Void {
trace("onIOError: " + file.name);
}
listener.onSecurityError = function(file:FileReference, errorString:String):Void {
trace("onSecurityError: " + file.name + " errorString: " + errorString);
}
var fileRef:FileReference = new FileReference();
fileRef.addListener(listener);
fileRef.browse(allTypes);//파일다이얼로그열기 여기서 파일을 선택하지요.
구체적인 설명이 요구되시면 문의 부탁...
안녕
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 1230 |
|
18년 전 | 1995 | |
| 1229 |
|
18년 전 | 2928 | |
| 1228 |
|
18년 전 | 2621 | |
| 1227 | 18년 전 | 2917 | ||
| 1226 | 18년 전 | 2353 | ||
| 1225 |
|
18년 전 | 2424 | |
| 1224 | 18년 전 | 2735 | ||
| 1223 |
|
18년 전 | 3979 | |
| 1222 |
mixdesign
|
18년 전 | 2623 | |
| 1221 |
|
18년 전 | 2739 | |
| 1220 | 18년 전 | 3201 | ||
| 1219 | 18년 전 | 2905 | ||
| 1218 | 18년 전 | 2092 | ||
| 1217 |
|
18년 전 | 2540 | |
| 1216 | 18년 전 | 2547 | ||
| 1215 |
mixdesign
|
18년 전 | 4031 | |
| 1214 |
|
18년 전 | 4783 | |
| 1213 | 18년 전 | 2312 | ||
| 1212 |
mixdesign
|
18년 전 | 2482 | |
| 1211 |
|
18년 전 | 2418 | |
| 1210 | 18년 전 | 3755 | ||
| 1209 |
mixdesign
|
18년 전 | 2371 | |
| 1208 |
mixdesign
|
18년 전 | 2374 | |
| 1207 |
mixdesign
|
18년 전 | 1715 | |
| 1206 |
mixdesign
|
18년 전 | 1997 | |
| 1205 |
mixdesign
|
18년 전 | 2697 | |
| 1204 |
mixdesign
|
18년 전 | 3576 | |
| 1203 | 18년 전 | 3084 | ||
| 1202 | 18년 전 | 2967 | ||
| 1201 | 18년 전 | 2027 | ||
| 1200 | 18년 전 | 4120 | ||
| 1199 | 18년 전 | 2158 | ||
| 1198 | 18년 전 | 4191 | ||
| 1197 | 18년 전 | 2500 | ||
| 1196 | 18년 전 | 2348 | ||
| 1195 |
|
18년 전 | 3461 | |
| 1194 | 18년 전 | 2234 | ||
| 1193 | 18년 전 | 2141 | ||
| 1192 | 18년 전 | 3271 | ||
| 1191 | 18년 전 | 3948 | ||
| 1190 | 18년 전 | 2202 | ||
| 1189 |
|
18년 전 | 2348 | |
| 1188 |
|
18년 전 | 3823 | |
| 1187 | 18년 전 | 2703 | ||
| 1186 | 18년 전 | 3345 | ||
| 1185 | 18년 전 | 2771 | ||
| 1184 | 18년 전 | 1659 | ||
| 1183 | 18년 전 | 2119 | ||
| 1182 | 18년 전 | 3688 | ||
| 1181 |
mermaid
|
18년 전 | 2913 | |
| 1180 | 18년 전 | 2967 | ||
| 1179 | 18년 전 | 3602 | ||
| 1178 | 18년 전 | 2162 | ||
| 1177 |
|
18년 전 | 2275 | |
| 1176 | 18년 전 | 3166 | ||
| 1175 | 18년 전 | 1852 | ||
| 1174 |
|
18년 전 | 2218 | |
| 1173 |
|
18년 전 | 2522 | |
| 1172 | 18년 전 | 1763 | ||
| 1171 | 18년 전 | 2100 | ||
| 1170 | 18년 전 | 1987 | ||
| 1169 | 18년 전 | 2501 | ||
| 1168 | 18년 전 | 1920 | ||
| 1167 | 18년 전 | 1715 | ||
| 1166 | 18년 전 | 1742 | ||
| 1165 | 18년 전 | 1723 | ||
| 1164 | 18년 전 | 2764 | ||
| 1163 | 18년 전 | 1552 | ||
| 1162 |
|
18년 전 | 5665 | |
| 1161 |
이걸~어쩌나~
|
18년 전 | 2391 | |
| 1160 | 18년 전 | 1658 | ||
| 1159 | 18년 전 | 4701 | ||
| 1158 | 18년 전 | 2048 | ||
| 1157 | 18년 전 | 4839 | ||
| 1156 | 18년 전 | 3183 | ||
| 1155 | 18년 전 | 2126 | ||
| 1154 | 18년 전 | 1825 | ||
| 1153 |
BEST79
|
18년 전 | 2098 | |
| 1152 | 18년 전 | 1721 | ||
| 1151 | 18년 전 | 1834 | ||
| 1150 | 18년 전 | 1833 | ||
| 1149 |
inniskun
|
18년 전 | 2474 | |
| 1148 |
|
18년 전 | 3491 | |
| 1147 |
|
18년 전 | 5971 | |
| 1146 |
|
18년 전 | 3859 | |
| 1145 | 18년 전 | 3055 | ||
| 1144 | 18년 전 | 2129 | ||
| 1143 | 18년 전 | 2398 | ||
| 1142 | 18년 전 | 2185 | ||
| 1141 |
|
18년 전 | 2297 | |
| 1140 | 18년 전 | 2402 | ||
| 1139 | 18년 전 | 2839 | ||
| 1138 | 18년 전 | 2530 | ||
| 1137 | 18년 전 | 1985 | ||
| 1136 | 18년 전 | 3125 | ||
| 1135 | 18년 전 | 3584 | ||
| 1134 | 18년 전 | 3829 | ||
| 1133 |
자반고등어
|
18년 전 | 3332 | |
| 1132 | 18년 전 | 3379 | ||
| 1131 | 18년 전 | 2561 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기