vote up 0 vote down star

http://pasite.org/code/281?theme=lazy

im getting error, which i dont get on firefox or chrome.

it says on line 235

			this.movie.setText( this.clipText );
			this.movie.setHandCursor( this.handCursorEnabled );

when i comment the above two line, then i dont get any error, but my script wont work anymore eaither. i dont know why its showing this error, everything is fine in firefox and chrome.

EDITED this error shows on mouse over, sence zeroClipboard gets set on mouseOver

 Error is:
    line: 235
    char: 5
    Error: Object doesn't support this property or method
    code: 0
    URL:....

my jQuery for setting the ZeroClipboard on top of the input box

// coping method on inputbox's
    ZeroClipboard.setMoviePath('/javascript/jquery/ZeroClipboard.swf');
    // copying share input boxs
    $("input[name='htmlcode'], input[name='directlink'], input[name='emaillink'], input[name='imgcode']").live('mouseover', function() {

    	clip = new ZeroClipboard.Client();
    	clip.setHandCursor(true);
    	clip.setText($(this).val());

    	var width = $(this).width();
    	var height =  $(this).height()+10;
    	var flash_movie = '<div>'+clip.getHTML(width, height)+'</div>';

    	flash_movie = $(flash_movie).css({
    		position: 'relative',
    		marginBottom: -height,
    		width: width,
    		height: height,
    		zIndex: 101
    	})
    	.click(function() { 
    		$(this).next('input').indicator({className: 'copied', wrapTag: 'div', text: 'Copied!', fadeOut: 2000, display: 'after'});
    	})
    	.insertBefore(this);
flag

71% accept rate
1  
what's the error message? – gargantaun Nov 4 at 12:12
be aware of context of "this" variable – jmav Nov 4 at 12:19
To me it looks like this.movie is a HTML object and the setText method aint on that object. it´s defined on the ZeroClipboard.Client. But I just skimmed the code. – anddoutoi Nov 4 at 12:21
i wrote more info :) – basit. Nov 4 at 12:32
Well the Error-msg is pretty clear to me. this.movie is a HTML object (this.movie = document.getElementById(this.movieId);) and there aint no setText()-method on that object. What do you get if you F12 and console.log(this.movie); ? Do a console.log(this) while your at it aswell. – anddoutoi Nov 4 at 12:37

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.