Results 1 to 40 of 110

Thread: Paste what's in your clipboard

Hybrid View

  1. #1
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: Paste what's in your clipboard

    $date = '';
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  2. #2
    Addicted Member ajames's Avatar
    Join Date
    Mar 2005
    Location
    Wales, UK
    Posts
    178

    Re: Paste what's in your clipboard

    Code:
    onClipEvent (enterFrame) {
    	if (Key.isDown(Key.DOWN)) {
    		this._y = this._y-((this._yscale/8)+10);
    	}
    	if (Key.isDown(Key.UP)) {
    		this._y = this._y+((this._yscale/8)+10);
    	}
    	if (Key.isDown(Key.RIGHT)) {
    		this._x = this._x-((this._xscale/8)+10);
    	}
    	if (Key.isDown(Key.LEFT)) {
    		this._x = this._x+((this._xscale/8)+10);
    	}
    	if (Key.isDown(Key.PGUP)) {
    		this._xscale = this._xscale+10;
    		this._yscale = this._yscale+10;
    	}
    	if (Key.isDown(Key.PGDN)) {
    		this._xscale = this._xscale-10;
    		this._yscale = this._yscale-10;
    	}
    	if (Key.isDown(Key.BACKSPACE)) {
    		_root.gotoAndStop(3);
    	}
    }

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width