Upload Images Using Flash?
Can I upload images or docs from a flash interface? If I create the component or something like that?
FlashKit > Flash Help > Flash MX
Posted on: 09-13-2002, 04:20 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Is It Possible To Upload Images From CMS To Update Images In Flash Movie?
Hi,
I've got some developers working on a job that I'm project managing. Check it out by clicking here.
On the home page, you will notice a Flash movie of images of cars that fade into each other. My client wants to know if it's possible for him to be able to update the images of the cars (when the model gets out-of-date) from the CMS. Is there a way of updating the images from the CMS? The site is scripted in php on a Linux server. Any help will be greatly appreciated.
Regards,
Dan
Upload Images Using Flash
Hi all,
Was wonder if is it possible for flash to have a function that allow user to broswe image in their harddisc and upload to a server.
Will that be possible?
Chup
Upload Images Using Flash
Hi all,
Was wonder if is it possible for flash to have a function that allow user to broswe image in their harddisc and upload to a server.
Will that be possible?
Chup
[F8] Upload And Display Images In Flash?
I've tried alot of tutorials for uploading images and viewing them. All the methods have been using flash 8 and php
Ive decided to try and get working flash 8's sample they provide in the tutorial folder.
Heres my attempt:
http://www.webdesignhull.lincoln.ac....fileupload.swf
When you upload a file nothing appears.. I assume its supposed to load in that .swf and be saved in the images folder..
Please can someone tell me how to get this working!
Below is the action script and php.
actionscript used in fileupload.swf:
Code:
System.security.allowDomain("http://www.helpexamples.com");
import flash.net.FileReference;
// The listener object listens for FileReference events.
var listener:Object = new Object();
// When the user selects a file, the onSelect() method is called, and
// passed a reference to the FileReference object.
listener.onSelect = function(selectedFile:FileReference):Void {
// Update the TextArea to notify the user that Flash is attempting to
// upload the image.
statusArea.text += "Attempting to upload " + selectedFile.name + "
";
// Upload the file to the PHP script on the server.
selectedFile.upload("http://www.webdesignhull.lincoln.ac.uk/jecgardner/upload_flash/uploadFile.php");
};
// When the file begins to upload the onOpen() method is called, so
// notify the user that the file is starting to upload.
listener.onOpen = function(selectedFile:FileReference):Void {
statusArea.text += "Opening " + selectedFile.name + "
";
};
// Once the file has uploaded, the onComplete() method is called.
listener.onComplete = function(selectedFile:FileReference):Void {
// Notify the user that Flash is starting to download the image.
statusArea.text += "Downloading " + selectedFile.name + " to player
";
// Add the image to the ComboBox component.
imagesCb.addItem(selectedFile.name);
// Set the selected index of the ComboBox to that of the most recently-
// added image.
imagesCb.selectedIndex = imagesCb.length - 1;
// Call the custom downloadImage() function.
downloadImage();
};
var imageFile:FileReference = new FileReference();
imageFile.addListener(listener);
uploadBtn.addEventListener("click", uploadImage);
imagesCb.addEventListener("change", downloadImage);
imagePane.addEventListener("complete", imageDownloaded);
// If the image does not download, the event object's total property
// will equal -1. In that case, display a message to the user.
function imageDownloaded(event:Object):Void {
if(event.total == -1) {
imagePane.contentPath = "Message";
}
}
// When the user selects an image from the ComboBox, or when the downloadImage()
// function is called directly from the listener.onComplete() method,
// the downloadImage() functino sets the contentPath of the ScrollPane in order
// to start downloading the image to the player.
function downloadImage(event:Object):Void {
imagePane.contentPath = "http://www.webdesignhull.lincoln.ac.uk/jecgardner/upload_flash/images/" + imagesCb.value;
}
// When the user clicks the button Flash calls the uploadImage() function,
// and it opens a file browser dialog.
function uploadImage(event:Object):Void {
imageFile.browse([{description: "Image Files", extension: "*.jpg;*.gif;*.png"}]);
}
This is the uploadFile.php script im using:
PHP Code:
<?php
//path to storage
$storage = 'http://www.webdesignhull.lincoln.ac.uk/jecgardner/upload_flash/images/';
// add current datetime to filename
$now= date("Y-m-d_Gis_");
//path name of file for storage
$uploadfile = "$storage/" . basename( $now.$_FILES['Filedata']['name'] );
//$uploadfile = "$storage/" . basename( $_FILES['Filedata']['name'] );
//if the file is moved successfully
if ( move_uploaded_file( $_FILES['Filedata']['tmp_name'] , $uploadfile ) ) {
echo( '1 ' . $_FILES['Filedata']['name']);
//file failed to move
}else{
echo( '0');
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title> Upload Page </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
</head>
<body>
<h3>Upload Successful</h3>
</body>
</html>
How To Upload Images In Flash/php Securely?
the following PHP works when uploading an image but its not secure:
PHP Code:
<?php//create the directory if doesn't exists (should have write permissons)if(!is_dir("./files")) mkdir("./files", 0755); //move the uploaded filemove_uploaded_file($_FILES['Filedata']['tmp_name'], "./files/".$_FILES['Filedata']['name']);chmod("./files/".$_FILES['Filedata']['name'], 0777);}?>
The code below is my attempt at making it secure but it still doesn't work:
PHP Code:
<?phpif (($_FILES["uploaded_file"]["type"] == "image/jpeg") && ($_FILES["uploaded_file"]["size"] < 350000)){//create the directory if doesn't exists (should have write permissons)if(!is_dir("./files")) mkdir("./files", 0755); //move the uploaded filemove_uploaded_file($_FILES['Filedata']['tmp_name'], "./files/".$_FILES['Filedata']['name']);chmod("./files/".$_FILES['Filedata']['name'], 0777);}?>
Any ideas what I'm doing wrong?
I added this line into the code and theres no errors but it just gives an error when trying to upload a file with the flash upload page??!!?
PHP Code:
if (($_FILES["uploaded_file"]["type"] == "image/jpeg") && ($_FILES["uploaded_file"]["size"] < 350000)){
This is the flash upload url:
http://www.webdesignhull.lincoln.ac..../flash_upload/
all files 'uploaded' are stored in this directory:
http://www.webdesignhull.lincoln.ac...._upload/files/
I just changed that line trying with "Filedata" and also I tried change it 'Filedata':
PHP Code:
if (($_FILES['Filedata']['type'] == "image/jpeg") && ($_FILES['Filedata']['size'] < 350000)){
this still doesn't work.
Upload Images To Server With Flash, PHP, A Prayer?
Upload images to server with Flash?
Don't know if its possible but I thought I'd ask.
I'm building a simple Content Management System for my website, so I can update it quickly. Site uses text files to display text and load other flash movies into the main flash file. I've already built the backend to update the text files using flash and PHP, through the browser window. Works fine. Thats done.
Next, what I would like to be able to do is upload jpegs on my desktop, into a folder on the server where my site is. Basically ftping through the web browser, using PHP and flash.
Haven't tried it yet, thought I'd ask first see if someone could point me in the right direction...
Upload Images To Online Flash Gallery
hey all - wonder if anyone can help me with this.
Does anyone have a links to tutorials or done anything like this before that they might be able to share some details about?
What i need is the ability to browse for a image file, upload it and dynamically loads itself into the online gallery, all in flash.
Really not sure where to start with this one
thx in advance!
Jtec23
The Age Old Question: Upload Images To MYSQL Or Images To Webserver?
hi guys, im having trouble deciding on the approach to go about.
i want peopel to be able to upload images so should i have them upload it into a db using BLOB or should i have them upload it to the web server?
i've been reading people say that the web server is probably better to use, but i dont know about that using AS.
anyone got a preference or a good approach?
I don't mind doing either one, but i don't know, i read some folks are paranoid about DB corruption.
any advice, let me know.
UPload Images From MX
Was wondering if any clever people have figured out a way to create a file browser button within flash. I have an HTML page i created with form elements - mostly file browse elements. The form submits to a cgi on my server for uploading. I htought wiht the new components I could handle this form data and create a little ftp engine wihtin my new website--but so far no such luck. Add the fact I'm not really MR ACTIONSCRIPT ----so I turn to the experts.
Here is an example of the form itself:
http://www.jonathandapra.com/browse/another.htm this is what I am trying to create. ANy ideas or help for FLash MX would be appreciated.
Upload Images - How?
Hi all, i want make a photo album where can user upload his image on the web. How is it possible to make it?
I can use ASP script on my server.
Thanks for any suggestion.
Jan.
Upload Images
Hello i wounder if theres a way to make an flash file were you can upload images (150x150),type in som text and send it like a card to your mail.
.._______________________________________
./.. ______________........_____________.
|...|..............|Name:.|_____________||...<---Type in stuff here
|...|..............|Age:..|_____________||
|...|..............|Skill:|_____________||
|...|......Upload..|Tools:|_____________||
|...|The image here|Other:|_____________||
|...|..............|.....................|
|...|______________|.....................|
.\_______________________________________/
...............________________________________
Send to Mail:|________________________________|
All i have to know is how to upload and send it all like a card.
Can I Upload Images /
Hi,
Can I upload images in a flash made Desktop application on my local machine and save them in a specific location.
Please help ?
Dynamic Upload Of Images
Hi there,
Does anyone know and perhaps having an example of making a movie with some images that dynamically can be changed via a xml file or ...?
I hope anyone can help me out!
Thanks,
Thomas
How Upload Images On Server
Hi all, i want make a photo album where can user upload his image on the web. How is it possible to make it?
I can use ASP script on my server.
Thanks for any suggestion.
Jan.
Upload / Browse Images
hello all
i was wondering if anybody know how to create a form in flash with a section that allows the user to upload an image of there choice and send it to me via email?? doest that make sense??
basically if they were filling out my flash form and they wanted to send me a picture of there work (..like you see a browse button and you can submit a jpg) can this be done in flash??
thanks hope it makes sense?!
shrav
[F8] Upload Images Directy Into The SWF
Does anyone know whether (and if so, how) is possible to upload an image directly from your hard drive to an online SWF?
I mean without uploading the image first to a server.
Thanks in advance for your help
Resizing Images On Upload
I wish to automatically rezise files as I upload them, and I am at a loss to understand how I might achieve this. Here is the code I am using (it allows for multiple file selection):
ActionScript Code:
var fileRefList:FileReferenceList = new FileReferenceList();
fileRefList.addEventListener(Event.SELECT, selectHandler);
fileRefList.browse();
function selectHandler(event:Event):void
{
var request:URLRequest = new URLRequest("http://www.[yourdomain].com/upload/");
var file:FileReference;
var files:FileReferenceList = FileReferenceList(event.target);
var selectedFileArray:Array = files.fileList;
for (var i:uint = 0; i < selectedFileArray.length; i++)
{
file = FileReference(selectedFileArray[i]);
file.addEventListener(Event.COMPLETE, completeHandler);
try
{
file.upload(request);
}
catch (error:Error)
{
trace("Unable to upload files.");
}
}
}
function completeHandler(event:Event):void
{
trace("uploaded");
}
I wish to resize the files as they are uploaded. I have thought about importing them as sprites, then saving them as bitmaps, then uploading them:
ActionScript Code:
public static function spriteToBitmap(sprite:Sprite, smoothing:Boolean = false):Bitmap
{
var bitmapData:BitmapData = new BitmapData(sprite.width, sprite.height, true, 0×00FFFFFF);
bitmapData.draw(sprite);
return new Bitmap(bitmapData, “auto”, smoothing);
}
but I cannot work out how to actually get the sprite into the AVM before it uploads.
Any ideas?
(desperate-ish)
Any ideas?
Upload And Scaling Of Images
I am working on a project for logomaking where the clients can create their own design and submit to us for purpose of printing.For this,I need to upload images(1 or more) at runtime and then scale them as per the need. Then, after that the customized flash document must be presented as pdf or image format,when the user finishes with customization.
If any of you have any idea on how to implement this,please help me on this.
I Want To Upload Images To The Server
people who Im doing a site for want to be able to upload images to the site database from their site... I know how to do it using regular HTML forms, but would rather do it from within a flash movie... (having the user be able to browse their hard-drive and select a picture to upload)...
thanks for the help!
ivan
How To Upload And Resize Images
I'd like to create a small flash app the allows users to upload images and the flash script will resize the image.
Any suggestions?
Upload And View Images
I've tried a few tutorials and none have been successful. One being kirupa's http://www.kirupa.com/developer/flas...erence_pg1.htm
What happened with this the file uploaded but I couldnt view it.. I didnt know where it uploaded it.. I made the files folder and added the php page but I cant figure out why it doesnt work.
Heres the link to my attempt at kirupa's file uploader:
http://www.jamesgardner.lincoln.ac.u...leUploader.swf
When you upload a file I assume it should go into this folder:
http://www.jamesgardner.lincoln.ac.u...oader/uploads/
This is the php used on upload.php
PHP Code:
<?php if (is_uploaded_file($_FILES['Filedata']['tmp_name'])){ $uploadDirectory="http://www.jamesgardner.lincoln.ac.uk/flash_uploader/uploads/"; $uploadFile=$uploadDirectory.basename($_FILES['Filedata']['name']); copy($_FILES['Filedata']['tmp_name'], $uploadFile); }?>
This is the tutorial im curreny trying: http://www.flash-db.com/Tutorials/upload/
You can see my latest attempt at this url
http://www.jamesgardner.lincoln.ac.u...sh8/upload.swf
I dont know why I cant get it to work.. Ive got access to cpanel and im not sure how to give the folder file permissions. This being said Ive got CHMODD 777 on the upload_flash8 folder and when you go to upload.php
(http://www.jamesgardner.lincoln.ac.u...sh8/upload.php)
theres this error:
Warning: chmod(): Operation not permitted in /home2/jamesgar/public_html/upload_flash8/upload.php on line 6
If anyone knows how to get this working then please let me know!
the upload.php script is:
PHP Code:
<?php//create the directory if doesn't exists (should have write permissons)if(!is_dir("./files")) mkdir("./files", 0755); //move the uploaded filemove_uploaded_file($_FILES['Filedata']['tmp_name'], "./files/".$_FILES['Filedata']['name']);chmod("./files/".$_FILES['Filedata']['name'], 0777);?>
the action script on upload.swf is:
Code:
//Allow this domain
System.security.allowDomain("http://localhost/");
import flash.net.FileReference;
// The listener object listens for FileReference events.
var listener:Object = new Object();
// When the user selects a file, the onSelect() method is called, and
// passed a reference to the FileReference object.
listener.onSelect = function(selectedFile:FileReference):Void {
//clean statusArea and details area
statusArea.text = details.text = ""
// Flash is attempting to upload the image.
statusArea.text += "Attempting to upload " + selectedFile.name + "
";
// Upload the file to the PHP script on the server.
selectedFile.upload("upload.php");
};
// the file is starting to upload.
listener.onOpen = function(selectedFile:FileReference):Void {
statusArea.text += "Uploading " + selectedFile.name + "
";
};
//Possible file upload errors
listener.onHTTPError = function(file:FileReference, httpError:Number):Void {
imagePane.contentPath = "error";
imagePane.content.errorMSG.text = "HTTPError number: "+httpError +"
File: "+ file.name;
}
listener.onIOError = function(file:FileReference):Void {
imagePane.contentPath = "error";
imagePane.content.errorMSG.text = "IOError: "+ file.name;
}
listener.onSecurityError = function(file:FileReference, errorString:String):Void {
imagePane.contentPath = "error";
imagePane.content.errorMSG.text = "SecurityError: "+SecurityError+"
File: "+ file.name;
}
// the file has uploaded
listener.onComplete = function(selectedFile:FileReference):Void {
// Notify the user that Flash is starting to download the image.
statusArea.text += "Upload finished.
Now downloading " + selectedFile.name + " to player
";
//Show file details
details.text = ""
for(i in selectedFile) details.text +="<b>"+i+":</b> "+selectedFile[i]+"
"
// Call the custom downloadImage() function.
downloadImage(selectedFile.name);
};
var imageFile:FileReference = new FileReference();
imageFile.addListener(listener);
uploadBtn.onPress = uploadImage;
imagePane.addEventListener("complete", imageDownloaded);
// Call the uploadImage() function, opens a file browser dialog.
function uploadImage(event:Object):Void {
imageFile.browse([{description: "Image Files", extension: "*.jpg;*.gif;*.png"}]);
}
// If the image does not download, the event object's total property
// will equal -1. In that case, display am error message
function imageDownloaded(event:Object):Void {
if(event.total == -1) {
imagePane.contentPath = "error";
}
}
// show uploaded image in scrollPane
function downloadImage(file:Object):Void {
imagePane.contentPath = "./files/" + file;
}
stop()
Resize Images Before Upload
hello,
I am creating an upload tool for an image gallery. The swf uploads the files with filereference to a php files which resizes the images. But when the images are larger than 600kb it fails, php runs out of memory and I can't edit the php.ini file on the server.
So my solution is to resize the images before uploading them, this saves also bandwidth.
But there is only one problem, I don't know how I can do this. Is there someone who can help me?
Kristof
How To Make The User Able To Upload It's Own Images Into The Swf
Hello everyone,
I really hope that someone can help me solve this problem. I need to write a code which will make the users able to upload their images from their PC to the swf file which is on the web. I have no idea how to do that. Then they will have to be able to interact with the image- resize, move and so on, which I gues has to be done as first is created empty movie clip and the custom image is placed in it, then just will use the usual movie clip control scripts.
I will apreaciate any help in that matter.
Allowing Users To Upload Images
Hi,
how can Flash allow users to upload images to the swf from their own computer?
I presume it would need some kind of back-end php stuff on the server, but I'm not sure where to start. Anyone know of a tutorial or previous thread?
thanks !
Resize Images: Upload Or Viewing?
Hey everyone,
I am using the photo gallery (click to view tutorial). However, I'm trying to determine what is better: Resizing images to fit the photoGallery's size requirements via Uploading (e.g. PHP) or Resizing images via a code in AS. My appologies if this has been covered elsewhere in this forum. I searched and read, but could not find answer to my question. I can find examples that resize the boarder to fit the image (e.g. http://www.kirupa.com/forum/showthre...gallery+resize). However, I want the boarder to remain the same size and image to just resize accordingly.
Thanks and let me know if I need to clarify my post,
John Bailey
Load Images From Localhost And Upload Elsewhere?
I'm making a plugin for an application that uploads files, but I've run into a problem.
Basically, the applications sends XML via POST to a page, containing the URLs of the files hosted on a local (to the user) server.
I was initially going to tackle this through PHP, but it turns out that the local server will only accept connections through localhost, so no external IP access.
I then moved to javascript, but xmlhttprequest won't load files from localhost due to XSS issues.
Is this possible in Flash? I'd need to give flash the URL of images, then have flash upload them elsewhere.
Upload Images And Change The Current Image
hi,i would like to know how can i do to make an upload on a flash movie what i wanna do is something like (hi5 a page that displays information an photos with the possility to change the photos uploading and deleting the phots on the flash page,if anybody can giv me a clue i would aprreciate.
thanks in advance
Help Needed - Login & P/W - Member Upload Images & Text
I have a website that i'm working on, I need to set up a login and password for a large amount of people. I need the Login & P/W to be directed to a page where members can upload images and text.
CAN ANYONE HELP??? PLEASE!!!!
I am using Flash MX 2004.
Mac G5, with all the fixings...
If you need any more info...let me know.
Help Enable Users To Upload Their Photos To Moving 2d Images ...
http://www.facehumor.com/Create-FaceHumor/773.html is an example of what I need to do, however the image needs to be moving, and the users uploaded photo with it!
Does it have anything to do with creating a mesh to stick the photo onto?
If some one could tell me what this process is called, so I can google some tutorials, or if they have some links for me ... PLEASE!! Reply.
Thanks,
Katie.
Upload Script (PHP) Call By FileReference.upload() Can't Read Cookie In NS Or FF
Finally I found the answers to my problem,
these are comment posted on Adobe.com
Hope there is a better solution from Adobe.
Quote:
When swf calling FileReference.upload(handlerURL) method, the handler (which is php server script) can't see session cookies
Steps to Reproduce:
1. page1> setcookie(cookiename,value)
2. page2 swf> FileReference.upload(handlerURL)
3. handlerURL (serverscript)> getcookie(cookiename) return null
Quote:
I CONFIRM THE SESSION COOKIE NOT BEEING SENT WITH THE FILE-UPLOAD POST REQUEST IN FIREFOX 1.5 (NOT TESTED WITH 1.0.X).
THE MULTIPLE FILE UPLOAD FLASH COMPONENT IS USELLES UNTIL THIS BUG IS FIXED BECAUSE WE NEED A SESSION ON THE SERVER SIDE.
Quote:
UPLOAD SESSION COOKIE BUG SOLUTION:
THIS IS HOW TO BYPASS THE BUG ON FIREFOX AND SAFARI WHERE THE SESSION COOKIE IS (UNFORTUNATELY) NOT SENT BY THE FLASH PLAYER.
- IN THE HTML PAGE CREATE A JAVASCRIPT FUNCTION GETCOOKIE() THAT RETURNS THE SESSION COOKIE LOCATED IN 'DOCUMENT.COOKIE' , FOR INSTANCE IF YOU ARE USING PHP IT SHOULD BE NAMED 'PHPSESSID' BY DEFAULT.
- CALL THIS FUNCTION FROM FLASH USING THE EXTERNAL INTERFACE:
VAR COOKIE = STRING(EXTERNALINTERFACE.CALL("GETCOOKIE"));
- APPEND THE COOKIE TO YOUR UPLOAD URL:
.UPLOAD( "/UPLOAD.PHP?"+COOKIE)
VOILA.
ATTENTION:
- DON'T REGENERATE THE COOKIE DURING A SERVER CALL FROM FLASH, BECAUSE THE JAVASCRIPT WILL RETURN ONLY THE COOKIE FROM THE HTML PAGE HOLDING THE SWF.
- UNFORTUNATELY THIS DOESN'T WORK ON OPERA, BECAUSE THE EXTERNAL INTERFACE DOES NOT SUPPORT IT.
- AND CLEAR YOUR COOKIES BEFORE TESTING OF COURSE...
HOPE THIS HELPS...
FRANK.
Quote:
JUST ANOTHER CONFIRMATION: FILE UPLOAD PLUS SESSION COOKIES FAILS ON MAC WITH FIREFOX AND SAFARI, FLASH VERSIONS 8,0,27,0 AND 9,0,20,0. THE FILE GETS UPLOADED JUST FINE BUT THE COOKIES DO NOT GET SET IN THE HTTP REQUEST HEADER.
THIS TYPE OF BUG MAKES ME RECONSIDER POSSIBLY USING FLEX FOR APPLICATION DEPLOYMENT AND REVERT TO JAVASCRIPT + HTML OR JAVA.
more to read:
http://www.visible-form.com/blog/fla...ssion-cookies/
http://robrosenbaum.com/flash/using-...h-php-symfony/
Hope these comments help and save you some time when it happens to you.
Can We Upload Movieclip To Some Server Using Filereference.upload() Method?
hi to all
can we upload movieclip to some server using filereference.upload() method?
i know filereference upload files that only resides on localdisk and that we select using browse methods but is it possible that we convert movieclip which contains single image to filereference object so that we can upload it using filereference.upload() method?
thanks
mjanjua
Upload Page ...user Can Upload An Image
Im trying to figure out how I can create a page as described.
I want the customer to be able to go to blbla.html and click browse where appropriate and select the image that he/she wants to upload to the server.
How can I accomplish this in Flash, PHP, or straight HTML. I have a few ideas but never really dealt with someone having that kind of access to a server.
Any help would be great! I would prefer to do this in Flash for usability purposes. thanks!
Bug In FileReference: Upload->cancel->upload Not Possible
Hi,
i have written an uploader flash to upload multiple files one after another to a server.
I want to be able to cancel the uploading of a list of filerefences and continue later.
But when i cancel an ongoing upload it is not possible to upload that filereference-object again.
During the second call of upload (after a cancel before) the progress-events are still fired, but not the complete/httperror events. So effectively the upload keeps hanging at the previously canceled filereference.
I tried with Flash 8 and Flash CS3 - with both it was the same problem.
Can anyone confirm this?
Best regards,
Thomas
Upload-script Doesn't Upload
I'm trying to make a button which can upload multiple files in Flash.
This is my code so far:
AS3: http://pastie.org/320443
PHP: http://pastie.org/320444
The problem is that the console in Flash does say that the files are uploaded, but they are not.
I've tried to replace the PHP to just echo "test"; and Flash still says it is uploaded.
So what is wrong with the script and why does Flash says that files are uploaded when they aren't?
Upload Using Flash...
I want to be able to use flash to upload files from my site. For example, I have an FTP server and I want people to go to my website and go upload...Than they choose a file and press upload and it uploads to FTP server...I want to make it this way so the users can't see what I have on my FTP server..Can it be done?
A Little Php / Flash Upload
I am trying to make a flash file where you get a box that says "attach" and then you browse through your files and find the
file and when you click ok a php script puts this file in a folder on my webhotel, it´s for my class so we can exchange papers and pictures so it´s not important how safe it is
Upload Flash...
Hi all,
Please could you tell me what I need to do to upload Flash Communication Server MX?
Thanks very much for your time and help.
Kevin.
Flash Upload To The Web
How do I do this.
I have made a small Flash thing with several sceens, that I would like to post on an excisting HTML web site.
Is it possible to upload to any website ?
Hope U can help me.
Best regards
Alan
Upload Jpg Into Flash
Hi,
I finally found how to let the user upload a picture to the server (using html form and php script) but I cannot find how to actually place this picture into the flash (let's say into an empty mc)
I read that this can be done by loadmovie, but where would I have to put the code? And then what would be the name of the picture that has to be loaded? I can impossibly know the name of the picture the user has uploaded?
Does anyone have some example code??? Please!
Thanks so much
Flash Upload
Hey Guys
I am after a tutorial or something similar for running a Flash based upload tool. I am hoping to use an ASP upload script as i'm more familiar with ASP than any other scripting language. Any help or direction would be greatly appreciated.
Mike
How To Upload Flash
Hey guys, ok so i kinda know how to work with flash and make cute little menus and animations and wut nots, but i have no idea how to upload all that to my website.. Ok so here is where im stuck:
I put flash into an HTML (really niice layout) its centered and it looks perfect, so
i save it as an HTML and try up loading all my Jpegs and html files to the server, thats easy, but how do i get the SWF file to play? i uploaded the SWF file, i uploaded that AC_runactive something script i uploaded everything, still Flash dosent play i dont know where to put the script or flash on the server...
I dont anything LOL seriously i couldnt make my flash site play if my life depended on it seriously im sure its an easy fix, im just to much of an idiot to figure it out hahahaha
Please help with this noob quesstion
Upload Pdf Into Flash..
Does anyone know any tutorials/help files on uploading a pdf into flash 8?
creating a website where i need to be able to upload a pdf file online and then assign each page of the pdf to a seperate movieclip in flash.
thinking i will have to use html to uplaod the file into the flash file?
Many Thanks
Flash 8 Upload Help
Hi guys,
i have been working on flash 8 uploader. I had this all working on win2003 server though that should not make a diffrence. I am using the same scripts and swf's on a linux system but now i am getting a 403 error. I did have this working on the linux server in the past for other projects.
Is there anything that i can check other than folder permisson. If i run the upload script throught the broswer then functions within the script are run but no go from within flash.
Anyone
Thanks
Flash Upload
ok in reality i know jack about the web..however i know enough about abobe to create a kick butt application, the problem is i have a myspace accountr and numerous online storage sites im members of, but i cant seen to upload the .exe file (my flash presentation to either of the two...nor send it through email,. which is my ultimate goal...its a flash animation for a new product that hopefully will make me rich, but its useless till i get the presentation sent to my investors. i need help...please...time is of the essence.
|