iEntry 10th Anniversary Webforumz RegistrationAnnouncements Contact Webforumz StaffContact
Home Resources Blogs Meet the Team Contact Register
 

Go Back   WebForumz.com > The Visual Design > Flash and ActionScript

Reply
 
LinkBack (1) Thread Tools
Old April 9th, 2008, 12:12 PM   1 links from elsewhere to this Post. Click to view. #1
New Member
 

Join Date: Apr 2008
Location: USA
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 galahad3 is on a distinguished road
Problem with Flash 8 carousel and XML

I made some progress with a basic spinning carousel of items (which works a treat using just shapes created within Flash 8) but seem to have hit a few issues when stepping up to grabbing images via an external XML file- I'll try and explain the problem...

Each of the carousel items needs to grab a different file (at present I'm trying to test with images but in time these will be FLV video files).

The carousel is based on the ones demo'd at www.gotoandlearn.com. I followed the second of the tutorials and have got to the point where I've created a movie clip inside a movie clip inside a movie clip (required for the carousel) and have the accompanying ActionScript working, however when I preview the SWF file I only see the "filler shape" of the innermost movie clip, not the image file (.png) that it's supposed to contain.
The three movie clips are called item (the outermost), icon (inside item) and inner (the innermost). The outermost one ("item") is the one set to "export to ActionScript".

The images are grabbed from an XML file.

The ActionScript is as follows:

Code:
var numOfItems:Number; //don't declare yet as number of items will be read from XML 
var radiusX:Number = 250; 
var radiusY:Number = 75; 
var centerX:Number = Stage.width/2; 
var centerY:Number = Stage.height/2; 
var speed:Number = 0.05; 
var perspective:Number = 130; //skew the perspective so items further back are smaller 
var home:MovieClip = this; //create variable to be used inside the XML for loop later as we can't use "this" inside that loop 
var xml:XML = new XML(); 
xml.ignoreWhite = true; 
xml.onLoad = function() 
{ 
var nodes = this.firstChild.childNodes; //i.e the XML file hierarchy 
numOfItems = nodes.length; 
for (var i=0;i<numOfItems;i++) 
{ 
var t = home.attachMovie("item","item"+i,i+1); 
t.angle = i * ((Math.PI*2)/numOfItems); 
t.onEnterFrame = mover; 
t.icon.inner.loadMovie (nodes[i].attributes.image); //load the image files 
} 
} 
for (var i=0;i<numOfItems;i++) 
{ 
var t = this.attachMovie("item","item"+i,i+1); 
t.angle = i * ((Math.PI*2)/numOfItems); 
t.onEnterFrame = mover; 
} 
xml.load("icons.xml"); 
function mover () 
{ 
this._x = Math.cos(this.angle) * radiusX + centerX; 
this._y = Math.sin(this.angle) * radiusY + centerY; 
var s:Number = (this._y - perspective)/(centerY + radiusY - perspective); //add the new perspective variable to the calculation 
this._xscale = this._yscale = s * 100; 
this.angle += this._parent.speed; 
this.swapDepths(Math.round(this._xscale)+100); 
} 
this.onMouseMove = function() 
{ 
speed = (this._xmouse-centerX)/2000; 
} 
The XML file: 
<?xml version="1.0" encoding="iso-8859-1"?> 
<icons> 
<icon image="icon1.png" /> 
<icon image="icon2.png" /> 
</icons>
The XML file seems to be read (to a degree) by the ActionScript, because if I had a new "icon" item, the carousel "grows" another item accordingly (although as before, it only displays the background shape of the image "placeholder" movie clip).

Amyone got any ideas?

Last edited by saltedm8; April 9th, 2008 at 08:06 PM.. Reason: added [code] tags
galahad3 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Bookmarks


LinkBacks (?)
LinkBack to this Thread: http://webforumz.com/flash-and-actionscript/66748-problem-with-flash-8-carousel-and.htm
Posted By For Type Date
flash carousel This thread Refback January 3rd, 2009 07:34 AM

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Bizarre issue with loading FLV files into Flash carousel galahad3 Flash and ActionScript 0 May 2nd, 2008 05:13 AM
Flash Carousel XML link csr500 Flash and ActionScript 2 September 12th, 2007 11:08 AM
Flash problem Paul in London Flash and ActionScript 2 April 23rd, 2007 09:54 AM
Carousel Menu Darren600 Flash and ActionScript 0 August 4th, 2006 09:39 AM
Flash Problem - Please Help! joshfolan Flash and ActionScript 6 November 27th, 2005 03:42 PM


Search Engine Optimization by vBSEO 3.2.0 RC8