Flash CS3 - 360 Degree View
Move your mouse over the image Download ThreeSixtyCS3.zip (134 KB) ActionScript Code: // Developed by Anil kumar N D // anilkumarnd@gmail.com // ActionScript 3.0 // 01-April-2009 // http://flash-workshop.blogspot.com/ package { import flash.display.*; import flash.events.*; import flash.net.*; import flash.geom.*; import flash.text.TextField; import flash.text.TextFieldAutoSize; import flash.filters.DropShadowFilter; public class ThreeSixty extends MovieClip { var camera:Bitmap; var textureMap:BitmapData; var Height:int; var Width:int; var sourceX:int=0; var shp_mainLine:Shape; var shp_statusLine:Shape; var txt_status:TextField; var speed:Number; var mc_rightButton:MovieClip; var mc_leftButton:MovieClip; public function ThreeSixty():void { stage.frameRate=30; var imageLoader:Loader=new Loader(); createStatusBar(); imageLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, progressHandler); imageLoader.contentLoad...