fix for line numbers getting copied

Slight annoying thing is when you copy someones post you also get the line numbers.

So as a quick fix, until it's sorted, I've created a bookmarklet for firefox

drag the link below to the bookmarks or bookmarks toolbar

Remove line numbers

Then click the bookmark to remove line numbers from the posts on the forum

  1. package
  2. {
  3.     import flash.events.Event;
  4.     import flash.filters.BlurFilter;
  5.     import flash.filters.DropShadowFilter;
  6.     import org.papervision3d.materials.ColorMaterial;
  7.     import org.papervision3d.objects.DisplayObject3D;
  8.     import org.papervision3d.objects.primitives.Plane;
  9.     import org.papervision3d.view.BasicView;
  10.     public class PVtest extends BasicView
  11.     {
  12.         private var p:Plane;
  13.         public function PVtest():void
  14.         {
  15.             init();
  16.             singleRender();
  17.             addEventListener(Event.ENTER_FRAME, tick);
  18.         }
  19.        
  20.         private function init():void
  21.         {
  22.             var material:ColorMaterial= new ColorMaterial(0x0000ff)
  23.             material.doubleSided = true;
  24.            
  25.             p = new Plane(material);
  26.             scene.addChild(p);
  27.             p.useOwnContainer = true;
  28.             viewport.filters = [new BlurFilter(), new DropShadowFilter()];
  29.            
  30.         }
  31.        
  32.         private function tick(e:Event):void
  33.         {
  34.             p.yaw(1);
  35.             singleRender();
  36.         }
  37.     }
  38. }