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

Notification

Icon
Error

Options
Go to last post Go to first unread
isao  
#1 Posted : Monday, June 6, 2011 5:58:49 PM(UTC)
isao

Rank: Newbie

Groups: Member
Joined: 9/24/2008(UTC)
Posts: 1

I'm having trouble with the Image Uploader 7.0.28 with Mac FireFox4.0.1.

The problem is that image uploader does not work "drag and drop" function.

Those function works with Max FireFox 3.6.

Thanks in advance

Dmitry.Obukhov  
#2 Posted : Tuesday, June 7, 2011 3:17:07 AM(UTC)
Dmitry.Obukhov

Rank: Advanced Member

Groups: Administration
Joined: 5/29/2010(UTC)
Posts: 1,310

Thanks: 8 times
Was thanked: 111 time(s) in 111 post(s)
Hello Isao,

We aware this problem already. The same problem takes place in Chrome v6 and later on Mac. It is caused by features of Java on Mac machines. Unfortunately, our developers are not able to fix it. You can disable drug’n’drop functionality for these types of browses on Apple compureters, using this script:

Code:

function PreRender(){
            var ua = navigator.userAgent;
            //In FF4 on Mac
            if (/Firefox[\/\s](\d+\.\d+)/.test(ua) && /Macintosh/i.test(ua)){
                var ffversion=new Number(RegExp.$1) // capture x.x portion and store as a number
                if (ffversion>=4){
                    //Disable D’n’D    
                    $au.uploader('Uploader1').enableDragAndDrop(false);
                    //Remove D’n’D text
                    $au.uploader('Uploader1').uploadPane().dropFilesHereText('')
                    }
                }
                 
            //In Chrome on Mac
            if (/Chrome[\/\s](\d+\.\d+)/.test(ua)&& /Macintosh/i.test(ua)){
                //Disable D’n’D    
                $au.uploader('Uploader1').enableDragAndDrop(false);
                //Remove D’n’D text
                $au.uploader('Uploader1').uploadPane().dropFilesHereText('')
             
            }
        }

If you have any additional questions please feel free to let me know.

Best regards,

Dmitry Obukhov

Technical Support. Aurigma, Inc.

Users browsing this topic
Guest
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.