Re: [Flashcoders] empty textfield of type input and embedded font

2007-03-26 Thread white song
You can put some text (for example: type here:) and when the textfield gets the focus you can detele the text. Bianca On 3/26/07, Matthias Dittgen [EMAIL PROTECTED] wrote: Hello list, I have a dynamic textfield like this in the constructor of a class extending MovieClip:

[Flashcoders] user guide type help

2007-03-15 Thread white song
Do you have a model or any sugestions for writing a help file for one product? Thanks, Bianca ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] cancel upload file is not working

2007-01-10 Thread white song
The upload is made even if the cancel method is called. Have any ideas why is that? _root.waitMask_btn.onPress = function(){ _root.hideWait(); //hide the wait mask trace('cancel upload'); _root.file_fr.cancel(); //cancel upload }

Re: [Flashcoders] pflash 8 file upload security issue

2007-01-10 Thread white song
you need upload.php for upload a file if ($_FILES['Filedata']['name']) { $uploadDir = images/; $uploadFile = $uploadDir . basename($_FILES['Filedata']['name']); move_uploaded_file($_FILES['Filedata']['tmp_name'], $uploadFile); } Headers are used to dowload a file. On 1/4/07, wouter