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
- package
- {
- import flash.events.Event;
- import flash.filters.BlurFilter;
- import flash.filters.DropShadowFilter;
- import org.papervision3d.materials.ColorMaterial;
- import org.papervision3d.objects.DisplayObject3D;
- import org.papervision3d.objects.primitives.Plane;
- import org.papervision3d.view.BasicView;
- public class PVtest extends BasicView
- {
- private var p:Plane;
- public function PVtest():void
- {
- init();
- singleRender();
- addEventListener(Event.ENTER_FRAME, tick);
- }
-
- private function init():void
- {
- var material:ColorMaterial= new ColorMaterial(0x0000ff)
- material.doubleSided = true;
-
- p = new Plane(material);
- scene.addChild(p);
- p.useOwnContainer = true;
- viewport.filters = [new BlurFilter(), new DropShadowFilter()];
-
- }
-
- private function tick(e:Event):void
- {
- p.yaw(1);
- singleRender();
- }
- }
- }