Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

onComplete request
  • My configuration:

    [...]
    <script type=\"text/javascript\" src=\"/example/scripts/jquery-1.3.2.min.js\"></script>
    <script type=\"text/javascript\" src=\"/example/scripts/swfobject.js\"></script>
    <script type=\"text/javascript\" src=\"/example/scripts/jquery.uploadify.v2.1.0.min.js\"></script>
    <script type=\"text/javascript\">
    $(document).ready(function() {
    $(\"#uploadify\").uploadify({
    'uploader' : 'scripts/uploadify.swf',
    'script' : 'scripts/uploadify.php',
    'cancelImg' : 'cancel.png',
    'folder' : 'data',
    'queueID' : 'fileQueue',
    'auto' : true,
    'multi' : true
    });
    });
    </script>
    </head>
    <body>
    <div id=\"fileQueue\"></div>
    <input type=\"file\" name=\"uploadify\" id=\"uploadify\" />
    <p><a href=\"javascript:jQuery('#uploadify').uploadifyClearQueue()\">Cancel All Uploads</a></p>
    </body>
    [...]



    (the example page) , now after update, how I can print an absolute path for files?
    expample, file to upload "test.txt" , path http://website.com/data/text.txt ; I want print "PATH FILE: http://website.com/data/text.txt"
    how?...on documentation :
    onComplete
    * name – The name of the file
    * filePath – The path on the server to the uploaded file

    Anyone can write me an example with onComplete trigger and print the path? thx