My account
Shopping cart
Knowledge base
Support

Knowledge Base

Important! All new questions are usually answered within the next business day.

Accordion Panel V3

(views: 18958)

Accordion Panel V3 is a professional accordion component that loads movies and movieclips and supports both horizontal and vertical orientation, it supports customized tweens, states and visual styles. Here are all known issues for Accordion Panel V3. If you have any questions that you think we should discuss here please let us know.



Open Accordion panels automatically (slide show)

(2009-10-28 - views: 3670)
Q: Is there a possibility to create a slide show by opening automatically the panels, one by one, after a timed delay ?
A: You can use the Timer class to create the timed delay between opening panels and the panels can be opened "automatically" by calling the expand(panel_id) method of the component. Please refer to the sample files for more details.
Files: AccPanel_SlideShow_AS3.zip 


User Comments

AccPanel AS3 - End after last slide is played
posted by rckeeler on 2009-10-28
Thanks for the AS3. Works great. However is it possible to have the accordion stop once it plays the last slide? In other words, not return to slide 1 and loop, etc. Thx!
End after last slide is played
posted by florodebat on 2009-11-04
rckeeler,

To achieve that you will have to stop the timer after the last panel was opened. So the "if" statement from the openNextPanel function should look like bellow:

function openNextPanel(evtObj:TimerEvent):void {
currentPanelIndex++;
if (currentPanelIndex >= totalPanels)
{
timerObj.stop();
}
else
{
myAccPanel.expand(currentPanelIndex);
}
}

I hope this helps


Login to post your comment login to post your comment

Other questions in this item

Installing the Accordion Panel V3 Open the accordion panels automatically Vertical title for horizontal accordion panel Accordion Panel slide show Accordion Panel communicates with a loader Use the Accordion Panel without external XML file Stopping video content when changing the panel Use HandCursor on Accordion Panel's items Auto open a panel on startup the title isn't showing in the horizontal mode Access header title and panel content Non Latin characters Load different kind of data into AccordionPanelV3 Panel opens only after content is loaded, when loadExpandedItemsOnly is true Dimensions Open the Accordion Panel upwards Get the size of panel's content Access accordion panel loaded with loadMovie inside container clip Panel opens only after content is loaded, when loadExpandedItemsOnly is true Open URL from panel content, not from panel header Getting accurate accordion height Open URL from panel content, not from panel header Rotate the direction of the text on horizontal Accordion Flv playback inside accordion Open panels from bottom to top and left to right TEXTU appears in my file HyperLinking panels Load new content without XML Non Latin characters Graphics below the accordion panel Acces accordion panel from content Acces accordion panel from content Access header title and panel content Open panels upward for vertical accoirdion and to the left for horizontal accordion Accordion Panel communicates with a loader Panels with different sizes Get selected panel and content Load new content without XML

Back