Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
Alex.Navarro@filogix.com  
#1 Posted : Thursday, February 20, 2014 5:26:27 AM(UTC)
Alex.Navarro@filogix.com

Rank: Member

Groups: Member
Joined: 6/25/2013(UTC)
Posts: 10

Is it possible to use the HTML5 uploader by itself without loading any of the flash components?

I have a browser that does not support Flash, but does support HTML5, but keep getting the message 'Browser is not Supported'

All the documentation I have read refers to the uploader as 'HTML5/Flash' and I have not seen any that references whether you can use one without the other.

Thanks.

EDIT - more information
I am trying to use the HTML 5 uploader on an iPAD. I Don't want to use UP because this is a responsive page designed to work across desktops, tablets and mobile devices. Here is my uploader code:

Code:

<script type="text/javascript" src="../js/photo_upload/aurigma.imageuploaderflash.js"></script>
<script type="text/javascript" src="../js/photo_upload/aurigma.htmluploader.control.js"></script>
<link rel="stylesheet" type="text/css" href="../css/aurigma.htmluploader.control.css" />

var u = $au.imageUploaderFlash({
   id: 'Uploader',
   
   //Configuration Options 
   
})

u.writeHtml();

Edited by user Thursday, February 20, 2014 5:44:56 AM(UTC)  | Reason: Not specified

Andrew  
#2 Posted : Thursday, February 20, 2014 6:55:18 AM(UTC)
Andrew

Rank: Advanced Member

Groups: Member, Administration
Joined: 8/2/2003(UTC)
Posts: 876

Thanks: 2 times
Was thanked: 27 time(s) in 27 post(s)
Hi Alex,

Just use the type param:

Code:
var u = $au.imageUploaderFlash({
   id: 'Uploader',
   type: 'html' 
   //Configuration Options 
    
})
Alex.Navarro@filogix.com  
#3 Posted : Thursday, February 20, 2014 8:09:05 AM(UTC)
Alex.Navarro@filogix.com

Rank: Member

Groups: Member
Joined: 6/25/2013(UTC)
Posts: 10

Thanks Andrew,
It works in the iPad browser now but, before it displays, I receive the popup alert: 'Thumbnail converter is not supported in your browser.'

Once I close the popups, everything looks good. Is there a different way I should be handling my converters with this type?

My converters are below.

Code:

<script type="text/javascript" src="../js/photo_upload/aurigma.imageuploaderflash.js"></script>
<script type="text/javascript" src="../js/photo_upload/aurigma.htmluploader.control.js"></script>
<link rel="stylesheet" type="text/css" href="../css/aurigma.htmluploader.control.css" />

var u = $au.imageUploaderFlash({
   id: 'Uploader',
   type: 'html',

   converters: [
    	{ 
	    mode: "*.*=Thumbnail",
	    thumbnailFitMode: "Width",
            thumbnailWidth: "640",
            thumbnailJpegQuality: "90"
        },
        { 
	    mode: "*.*=Thumbnail",
	    thumbnailFitMode: "Width",
            thumbnailWidth: "320",
            thumbnailJpegQuality: "90"
        },
        { 
	    mode: "*.*=Thumbnail",
	    thumbnailFitMode: "Width",
            thumbnailWidth: "107",
            thumbnailJpegQuality: "90"
        }
    ],
   //Configuration Options 
   
})

u.writeHtml();
Alex.Navarro@filogix.com  
#4 Posted : Monday, February 24, 2014 7:03:53 AM(UTC)
Alex.Navarro@filogix.com

Rank: Member

Groups: Member
Joined: 6/25/2013(UTC)
Posts: 10

Please, any help for why these above converters work in Chrome but not on iPad.

Thanks.
Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.