Skip to content

Commit

Permalink
Inital Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dudeami committed Jul 23, 2010
0 parents commit e254c71
Show file tree
Hide file tree
Showing 13 changed files with 1,844 additions and 0 deletions.
674 changes: 674 additions & 0 deletions GPL-License.txt

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions README
@@ -0,0 +1,18 @@
The file zeroclipboard.jquery.js in this package is licensed under the GPL v3.0. To read the license, refer to GPL-License.txt in this package.

This project has sourcecode from other projects. The projects are:

ZeroClipboard
- scripts/ZeroClipboard.as
- scripts/ZeroClipboard.fla
- scripts/ZeroClipboard.js
- scripts/ZeroClipboard.swf
- scripts/ZeroClipboard10.as
- scripts/ZeroClipboard10.fla
- scripts/ZeroClipboard10.swf

jQuery
- script/jquery.1.4.2.js

Ben Alman's jQuery resize event
- jquery.ba-resize.js
81 changes: 81 additions & 0 deletions scripts/ZeroClipboard.as
@@ -0,0 +1,81 @@
package {
// Simple Set Clipboard System
// Author: Joseph Huckaby

import flash.display.Stage;
import flash.display.Sprite;
import flash.display.LoaderInfo;
import flash.display.StageScaleMode;
import flash.events.*;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.external.ExternalInterface;
import flash.system.Security;
import flash.utils.*;
import flash.system.System;

public class ZeroClipboard extends Sprite {

private var id:String = '';
private var button:Sprite;
private var clipText:String = '';

public function ZeroClipboard() {
// constructor, setup event listeners and external interfaces
stage.scaleMode = StageScaleMode.EXACT_FIT;
flash.system.Security.allowDomain("*");

// import flashvars
var flashvars:Object = LoaderInfo( this.root.loaderInfo ).parameters;
id = flashvars.id;

// invisible button covers entire stage
button = new Sprite();
button.buttonMode = true;
button.useHandCursor = true;
button.graphics.beginFill(0xCCFF00);
button.graphics.drawRect(0, 0, Math.floor(flashvars.width), Math.floor(flashvars.height));
button.alpha = 0.0;
addChild(button);
button.addEventListener(MouseEvent.CLICK, clickHandler);

button.addEventListener(MouseEvent.MOUSE_OVER, function(event:Event) {
ExternalInterface.call( 'ZeroClipboard.dispatch', id, 'mouseOver', null );
} );
button.addEventListener(MouseEvent.MOUSE_OUT, function(event:Event) {
ExternalInterface.call( 'ZeroClipboard.dispatch', id, 'mouseOut', null );
} );
button.addEventListener(MouseEvent.MOUSE_DOWN, function(event:Event) {
ExternalInterface.call( 'ZeroClipboard.dispatch', id, 'mouseDown', null );
} );
button.addEventListener(MouseEvent.MOUSE_UP, function(event:Event) {
ExternalInterface.call( 'ZeroClipboard.dispatch', id, 'mouseUp', null );
} );

// external functions
ExternalInterface.addCallback("setHandCursor", setHandCursor);
ExternalInterface.addCallback("setText", setText);

// signal to the browser that we are ready
ExternalInterface.call( 'ZeroClipboard.dispatch', id, 'load', null );
}

public function setText(newText) {
// set the maximum number of files allowed
clipText = newText;
}

public function setHandCursor(enabled:Boolean) {
// control whether the hand cursor is shown on rollover (true)
// or the default arrow cursor (false)
button.useHandCursor = enabled;
}

private function clickHandler(event:Event):void {
// user click copies text to clipboard
// as of flash player 10, this MUST happen from an in-movie flash click event
System.setClipboard( clipText );
ExternalInterface.call( 'ZeroClipboard.dispatch', id, 'complete', clipText );
}
}
}
Binary file added scripts/ZeroClipboard.fla
Binary file not shown.

0 comments on commit e254c71

Please sign in to comment.