360 degree panoramic viewers are a staple of all kinds of websites from real estate to auto sales. This video will teach you how to create a a 360 degree view that will display on your website using Flash CS3 and Actionscript 3. Don't restrict your users to just one photo, let them see all of whatever you're showing them with the tools your learn in this video.
Want to master Microsoft Excel and take your work-from-home job prospects to the next level? Jump-start your career with our Premium A-to-Z Microsoft Excel Training Bundle from the new Gadget Hacks Shop and get lifetime access to more than 40 hours of Basic to Advanced instruction on functions, formula, tools, and more.
Other worthwhile deals to check out:
- 97% off The Ultimate 2021 White Hat Hacker Certification Bundle
- 98% off The 2021 Accounting Mastery Bootcamp Bundle
- 99% off The 2021 All-in-One Data Scientist Mega Bundle
- 59% off XSplit VCam: Lifetime Subscription (Windows)
- 98% off The 2021 Premium Learn To Code Certification Bundle
- 62% off MindMaster Mind Mapping Software: Perpetual License
- 41% off NetSpot Home Wi-Fi Analyzer: Lifetime Upgrades
2 Comments
This is brilliant and I am wanting to use this method on creating a portfolio section on a website but I have been wracking my brains out trying to figure out if I can have multiple MovieClips on a page.
If I duplicate the code with different names for my movie clips I get told off for duplications and I have also tried to have to code affect all my movie clips such as.
artsanddesign_mc.cecovasca_mc.woodspanthers_mc.fifteen_mc.stop();
var frameTo:Number=0;
addEventListener (Event.ENTER_FRAME,goTo);
function goTo(e:Event) :void{
frameTo=int(mouseX/stage.stageWidth*artsanddesign_mc.cecovasca_mc.woodspanthers_mc.fifteen_mc.totalFrames)+1;
artsanddesign_mc.cecovasca_mc.woodspanthers_mc.fifteen_mc.gotoAndStop(frameTo);
}
and I receive this error "TypeError: Error #1010: A term is undefined and has no properties."
Can you help me?
That error basically means one of the objects your referencing (probably one of the movie clips) doesn't exist at that point. Make sure you don't have any type-os when referencing your movie clip names. If they're all correct, make sure those movie clips are all loaded by the time the ENTER_FRAME event is firing. If that is the case, try adding _root. before referencing your movie clips from within the goTo function. If they're not on the root, use the full path. You should be able to use trace() to see which movie clip is undefined when the goTo function is getting called.
Share Your Thoughts