Text slideshow

I am trying to create a "text slideshow" that will have 4 different quotes appear on top of 4 different images (using it's own slideshow). When I use the blank composition widget, I can't get rid of the thumbnails (even when the fill and stroke are set to none). I just want the text to appear and change at the same rate of speed as the slide show... i don't need any thumbnails.  HELP!
See screen capture below – right below the quote there are 2 gray boxes. Usually 3 but when I'm on that particular one, the thumbnail actually disappears and I need them all to.
Thanks,
Michelle

Hi,
You can select the thumbnail images and drag and resize them to smaller size, then select their Fill and Stroke to none.
After that right click on them to send them to back and place them behind the actual text.
Check this link:
http://gauravr183.businesscatalyst.com/images/2013-08-26_1216.swf
Regards,
Gaurav Aggarwal

Similar Messages

  • Text/slideshows/menus--help please!

    Hello. I'm sorry if this turns out to be a little longwinded question, but I'm feeling a little overwhelmed and need to get a better understanding of some things before I can finish this project.
    I am editing a video and authoring a DVD for a non-profit group, and after each segment, they want a section where text information comes up on the screen, and then pauses until the user selects the next or previous frame. I am trying to figure out the best way to do this, that will allow for the most flexibility and simplicity. I originally started out making the graphics in Photoshop and then saving each layer as a TIFF and importing these into a slideshow. The main problem with this was that the clients wanted little buttons saying next, previous, etc. and I don't know if this is possible in a slideshow. Also, I can just imagine a couple weeks down the line they will want to change the text on some of the slides and I will get confused trying to go back into Photoshop and alter it and hope that it refreshes in DVDSP.
    My next thought was perhaps there is a way to create "slides" by using menus but I'm not sure if this is a viable option either because it doesn't seem like you can control the text formatting in menus very much. To enter text on a menu do you have to create a button or drop zone? I can't seem to figure out a way to create a bounding box so that the text wraps inside--everything seems to just extend to the borders of the frame. Am I barking up the wrong tree here?
    I guess ideally what I'm looking for is a simple solution to this where I can copy and paste the "slide" text and apply a style to each frame or menu so that everything looks consistent. Also, it would be nice if there would be a way to change this style so that it applies to every slide in the project (I'm coming from a web design background here and thinking of Cascading Style Sheets).
    Also, I bought a DVDSP book and it suggested creating graphics at the dimension of 720 x 534 and then letting DVDSP stretch them as it imports. Any thoughts on this? Is this the best way to get good image quality?
    Okay, I humbly ask for any tips or assistance you can offer and thank you kindly in advance.
    Warmest regards,
    Chris

    Howdy
    Just checking thru the specs - there is a limit to the number of tracks you can use 99, but as far as menus are concerned the only limit that might apply is the numbver of VOBs which is up around 3200. If you've got more menus than that your viewers will be crossed eyed anyway so you can probably just bluff your way thru it!
    Layered menus - AFAIK the way the layered menu works is you import your layered PS file, each layer representing each different button's highlight and activation state. So if you wanted to have say 3 buttons on a page and when you highlight each button you fill an area of the page with say text describing what that button does - these layers can overlap because you're only one highligh will appear at a time. In reality DVDSP is generating separate menus for each of these highlights and creating automatic menu jumps, this is why you cant have motion video or audio under a layered menu, because there is no way for it to keep in sync as the button states jump from menu to menu. My personal feeling is as you need to create all the graphics anyway you may as well do it page by page and know where each link is going, especially in a long detailed project. If you wind up in a muddle with 100 layered menus you might as well start again.
    Hope that helps some - probably not the answer you wanted though.
    Cheers
    B

  • Help! Slideshow Autoplay does not work on ipad content viewer.

    I created a dps app using Adobe Creative Cloud on a PC running Windows 8.  It has a multi-state object of text to fade in and out. It works properly on a windows tablet but not on my ipad.  I'm aware this question has been asked before and I tried all of the suggested fixes and none have worked for me. Are there anymore bug fixes.

    Darn, I was hoping you could read my mind, lol. The problem is I created an article in DPS that has 4 multi-state objects on one page. 3 of the multi-state objects (button-like icons that change color when you tap/swipe them) are set to tap to play, the 4th multi-state object, a slideshow with 7 states each containing text that's supposed fade in and out 1 by 1 on a loop, is set to Autoplay upon article opening. This all works great on the desktop preview and once its downloaded to Adobe Content Viewer on my Windows Tablet.  However, when I download it to the Adobe Content View on my iPad and try to run the same app the 3 tap to play icon buttons work fine but the multi-state text Slideshow will not autoplay. It will only show the first state (which is a text box). I'm using Adobe Creative Cloud Indesign to create the article on a pc running Windows 8. I recently ran updates on my adobe software. Any insight???

  • Slideshow issues with variable time for each picture

    Hi all,
    I've migrated from AS1 to AS3, and boy, a lot has changed...
    Anyhow, to learn and understand AS3, I'm modifying a slideshow I found through thetechlabs. I want it to play SWF as well as JPG. These files are passed through an XML file. I added an element called <delaytime> to the XML file that replaces the standard time a photo is shown in the slideshow.
    I modified the onSlideFadeIn() function as follows:
    function onSlideFadeIn():void {
         slideTimer.removeEventListener(TimerEvent.TIMER, nextSlide);
         slideTimer = new Timer(xmlSlideshow..file[intCurrentSlide].@time);
         slideTimer.addEventListener(TimerEvent.TIMER, nextSlide);
         if(bolPlaying && !slideTimer.running)
         slideTimer.start();
    However, when I run it, I get this error message:
    ## [Tweener] Error: [object Sprite] raised an error while executing the 'onComplete'handler.
    TypeError: Error #1010: A term is undefined and has no properties.
    at slideshow_fla::MainTimeline/onSlideFadeIn()
    at Function/http://adobe.com/AS3/2006/builtin::apply()
    at caurina.transitions::Tweener$/::updateTweenByIndex()
    at caurina.transitions::Tweener$/::updateTweens()
    at caurina.transitions::Tweener$/onEnterFrame()
    It stops at the first picture of my slideshow. When I push the 'next' button it displays the next pic, but I get the same error message again.
    When I comment out this line:
    slideTimer = new Timer(xmlSlideshow..file[intCurrentSlide].@time);
    the slideshow runs OK, but without the delaytime specified in the XML file.
    I'm lost here, what am I missing?
    Any help to get me back on track is highly appreciated!
    Thanks a bunch in advance,
    Dirk
    Here is the complete AS, should you need it:
    // import tweener
    import caurina.transitions.Tweener;
    // delay between slides
    const TIMER_DELAY:int = 5000;
    // fade time between slides
    const FADE_TIME:Number = 1;
    // flag for knowing if slideshow is playing
    var bolPlaying:Boolean = true;
    // reference to the current slider container
    var currentContainer:Sprite;
    // index of the current slide
    var intCurrentSlide:int = -1;
    // total slides
    var intSlideCount:int;
    // timer for switching slides
    var slideTimer:Timer;
    // slides holder
    var sprContainer1:Sprite;
    var sprContainer2:Sprite;
    // slides loader
    var slideLoader:Loader;
    // current slide link
    var strLink:String = "";
    // current slide link target
    var strTarget:String = "";
    // url to slideshow xml
    var strXMLPath:String = "slideshow-data2.xml";
    // slideshow xml loader
    var xmlLoader:URLLoader;
    // slideshow xml
    var xmlSlideshow:XML;
    function initSlideshow():void {
         // hide buttons, labels and link
         mcInfo.visible = false;
         btnLink.visible = false;
         // create new urlloader for xml file
         xmlLoader = new URLLoader();
         // add listener for complete event
         xmlLoader.addEventListener(Event.COMPLETE, onXMLLoadComplete);
         // load xml file
         xmlLoader.load(new URLRequest(strXMLPath));
         // create new timer with delay from constant
         slideTimer = new Timer(TIMER_DELAY);
         // add event listener for timer event
         slideTimer.addEventListener(TimerEvent.TIMER, nextSlide);
         // create 2 container sprite which will hold the slides and
         // add them to the masked movieclip
         sprContainer1 = new Sprite();
         sprContainer2 = new Sprite();
         mcSlideHolder.addChild(sprContainer1);
         mcSlideHolder.addChild(sprContainer2);
         // keep a reference of the container which is currently
         // in the front
         currentContainer = sprContainer2;
         // add event listeners for buttons
         btnLink.addEventListener(MouseEvent.CLICK, goToWebsite);
         btnLink.addEventListener(MouseEvent.ROLL_OVER, showDescription);
         btnLink.addEventListener(MouseEvent.ROLL_OUT, hideDescription);
         mcInfo.btnPlay.addEventListener(MouseEvent.CLICK, togglePause);
         mcInfo.btnPause.addEventListener(MouseEvent.CLICK, togglePause);
         mcInfo.btnNext.addEventListener(MouseEvent.CLICK, nextSlide);
         mcInfo.btnPrevious.addEventListener(MouseEvent.CLICK, previousSlide);
         // hide play button
         mcInfo.btnPlay.visible = false;
    function onXMLLoadComplete(e:Event):void {
         // show buttons, labels and link
         mcInfo.visible = true;
         btnLink.visible = true;
         // create new xml with the received data
         xmlSlideshow = new XML(e.target.data);
         // get total slide count
         intSlideCount = xmlSlideshow..image.length();
         // switch the first slide without a delay
         switchSlide(0);
    function fadeSlideIn(e:Event):void {
         // add loaded slide from slide loader to the
         // current container
         addSlideContent();
         // clear preloader text
         mcInfo.lbl_loading.text = "";
         // check if the slideshow is currently playing
         // if so, show time to the next slide. If not, show
         // a status message
         if(bolPlaying) {
              mcInfo.lbl_loading.text = "Next slide in " + TIMER_DELAY / 1000 + " sec.";
         } else {
              mcInfo.lbl_loading.text = "Slideshow paused";
         // fade the current container in and start the slide timer
         // when the tween is finished
         Tweener.addTween(currentContainer, {alpha:1, time:FADE_TIME, onComplete:onSlideFadeIn});
    function onSlideFadeIn():void {
         slideTimer.removeEventListener(TimerEvent.TIMER, nextSlide);
         slideTimer = new Timer(xmlSlideshow..file[intCurrentSlide].@time);
         slideTimer.addEventListener(TimerEvent.TIMER, nextSlide);
         if(bolPlaying && !slideTimer.running)
         slideTimer.start();
    function togglePause(e:MouseEvent):void {
         // check if the slideshow is currently playing
         if(bolPlaying) {
              // show play button
              mcInfo.btnPlay.visible = true;
              mcInfo.btnPause.visible = false;
              // set playing flag to false
              bolPlaying = false;
              // set status message
              mcInfo.lbl_loading.text = "Slideshow paused";
              // stop the timer
              slideTimer.stop();
         } else {
              // show pause button
              mcInfo.btnPlay.visible = false;
              mcInfo.btnPause.visible = true;
              // set playing flag to true
              bolPlaying = true;
              // show time to next slide
              mcInfo.lbl_loading.text = "Next slide in " + TIMER_DELAY / 1000 + " sec.";
              // reset and start timer
              slideTimer.reset();
              slideTimer.start();
    function switchSlide(intSlide:int):void {
         // check if the last slide is still fading in
         if(!Tweener.isTweening(currentContainer)) {
              // check, if the timer is running (needed for the
              // very first switch of the slide)
              if(slideTimer.running)
              slideTimer.stop();
              // change slide index
              intCurrentSlide = intSlide;
              // check which container is currently in the front and
              // assign currentContainer to the one that's in the back with
              // the old slide
              if(currentContainer == sprContainer2)
              currentContainer = sprContainer1;
              else
              currentContainer = sprContainer2;
              // hide the old slide
              currentContainer.alpha = 0;
              // bring the old slide to the front
              mcSlideHolder.swapChildren(sprContainer2, sprContainer1);
              //Van hier
              if (currentContainer.numChildren > 0) {
                   var slideObjRef:DisplayObject = currentContainer.getChildAt(0);
                   currentContainer.removeChildAt(0);
                   slideObjRef = null;
              //Tot hier
              // delete loaded content
              clearLoader();
              // create a new loader for the slide
              slideLoader = new Loader();
              // add event listener when slide is loaded
              slideLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, fadeSlideIn);
              // add event listener for the progress
              slideLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, showProgress);
              // load the next slide
              slideLoader.load(new URLRequest(xmlSlideshow..image[intCurrentSlide].@src));
              // show description of the next slide
              mcInfo.lbl_description.text = xmlSlideshow..image[intCurrentSlide].@title;
              // set link and link target variable of the slide
              strLink = xmlSlideshow..image[intCurrentSlide].@link;
              strTarget = xmlSlideshow..image[intCurrentSlide].@target;
              mcInfo.mcDescription.lbl_description.htmlText = xmlSlideshow..image[intCurrentSlide].@desc;
              // show current slide and total slides
              mcInfo.lbl_count.text = (intCurrentSlide + 1) + " / " + intSlideCount + " Slides";
    function showProgress(e:ProgressEvent):void {
         // show percentage of the bytes loaded from the current slide
         mcInfo.lbl_loading.text = "Loading..." + Math.ceil(e.bytesLoaded * 100 / e.bytesTotal) + "%";
    function goToWebsite(e:MouseEvent):void {
         // check if the strLink is not empty and open the link in the
         // defined target window
         if(strLink != "" && strLink != null) {
              navigateToURL(new URLRequest(strLink), strTarget);
    function nextSlide(e:Event = null):void {
         // check, if there are any slides left, if so, increment slide
         // index
         if(intCurrentSlide + 1 < intSlideCount)
         switchSlide(intCurrentSlide + 1);
         // if not, start slideshow from beginning
         else
         switchSlide(0);
    function previousSlide(e:Event = null):void {
         // check, if there are any slides left, if so, decrement slide
         // index
         if(intCurrentSlide - 1 >= 0)
         switchSlide(intCurrentSlide - 1);
         // if not, start slideshow from the last slide
         else
         switchSlide(intSlideCount - 1);
    function showDescription(e:MouseEvent):void {
         // remove tweens
         Tweener.removeTweens(mcInfo.mcDescription);
         // fade in the description
         Tweener.addTween(mcInfo

    Thanks, but no luck so far...
    With the debugging publish setting on, I get the following error message:
    TypeError: Error #1009: Cannot access a property  or method of a null object reference.
    at  slideshow_fla::MainTimeline/slideshow_fla::frame1()[slideshow_fla.MainTimeline::frame1:12 3]
    Line 123 says:
    trace(xmlSlideshow..file[intCurrentSlide].@time);
    However, when I comment out the trace() line it gives another error  message:
    ## [Tweener] Error: [object Sprite] raised an  error while executing the 'onComplete'handler.
    TypeError: Error #1010: A  term is undefined and has no properties.
    at  slideshow_fla::MainTimeline/onSlideFadeIn()[slideshow_fla.MainTimeline::frame1:118]
    Where line 118 is:
    slideTimer = new  Timer(Number(xmlSlideshow..file[intCurrentSlide].@time));
    Now, according to my Flash manual I bought, I need to 'instanciate' things.  Did I forget this?
    Just can't get my head around this OOP stuff...
    Thanks a bunch for helping me!

  • Fullscreen slideshow not working properly on Chrome

    Firefox, explorer and safari return no problems, but on chrome, whenever I scroll down there's background fill going up over the slideshow until it's fully covered.
    What is happening here? I tried a lot of things but nothing works.

    Ok
    I have a fullscreen slideshow on the bottom layer. On the higher layers there is multiple content with text, slideshows, thumbnails etc.
    The idea is to show always de fullscreen slideshow as a background.
    As I said, it only crashes on Chrome.
    When I start scrolling, the slideshow starts getting covered from foot to head by the browser fill. As if the browser fill was being displayed over the slideshow.
    It's not that the slideshow scrolls up beacuse the images stand still all the time until they are fully covered by the browser fill.
    Thank you.

  • Need help with gallery showing .jpg AND .swf

    Hi all,
    I have an image gallery that loads images and swf-files from an XML-file. The .jpg's load and display just fine, but the .swf files won't show. The data is loaded though. Any help is greatly appreciated!
    Thanks so much in advance,
    Dirk
    My XML file looks like this:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <slideshow>
    <image src="photo1.jpg" time="1" title="test" desc="test" artist="sabre" link="" target="_self" />
    <image src="photo2.jpg" time="3" title="test2" desc="test2desc" artist="sabre" link="" target="_self" />
    <image src="flash1.swf" time="2" title="test3" desc="test3desc" artist="sabre" link="" target="_self" />
    </slideshow>
    And the AS3:
    // import tweener
    import caurina.transitions.Tweener;
    // delay between slides
    const TIMER_DELAY:int = 5000;
    // fade time between slides
    const FADE_TIME:Number = 1;
    // flag for knowing if slideshow is playing
    var bolPlaying:Boolean = true;
    // reference to the current slider container
    var currentContainer:Sprite;
    // index of the current slide
    var intCurrentSlide:int = -1;
    // total slides
    var intSlideCount:int;
    // timer for switching slides
    var slideTimer:Timer;
    // slides holder
    var sprContainer1:Sprite;
    var sprContainer2:Sprite;
    // slides loader
    var slideLoader:Loader;
    // current slide link
    var strLink:String = "";
    // current slide link target
    var strTarget:String = "";
    // url to slideshow xml
    var strXMLPath:String = "xml.xml";
    // slideshow xml loader
    var xmlLoader:URLLoader;
    // slideshow xml
    var xmlSlideshow:XML;
    function initSlideshow():void {
    // hide buttons, labels and link
    mcInfo.visible = false;
    btnLink.visible = false;
    var request:URLRequest = new URLRequest (strXMLPath);
    request.method = URLRequestMethod.POST;
    var variables:URLVariables = new URLVariables();
    variables.memberID = root.loaderInfo.parameters.memberID;
    request.data = variables;
    var loader:URLLoader = new URLLoader (request);
    loader.addEventListener(Event.COMPLETE, onXMLLoadComplete);
    loader.dataFormat = URLLoaderDataFormat.VARIABLES;
    loader.load(request);
    // create new timer with delay from constant
    slideTimer = new Timer(TIMER_DELAY);
    // add event listener for timer event
    slideTimer.addEventListener(TimerEvent.TIMER, nextSlide);
    // create 2 container sprite which will hold the slides and
    // add them to the masked movieclip
    sprContainer1 = new Sprite();
    sprContainer2 = new Sprite();
    mcSlideHolder.addChild(sprContainer1);
    mcSlideHolder.addChild(sprContainer2);
    // keep a reference of the container which is currently
    // in the front
    currentContainer = sprContainer2;
    // add event listeners for buttons
    btnLink.addEventListener(MouseEvent.CLICK, goToWebsite);
    btnLink.addEventListener(MouseEvent.ROLL_OVER, showDescription);
    btnLink.addEventListener(MouseEvent.ROLL_OUT, hideDescription);
    mcInfo.btnPlay.addEventListener(MouseEvent.CLICK, togglePause);
    mcInfo.btnPause.addEventListener(MouseEvent.CLICK, togglePause);
    mcInfo.btnNext.addEventListener(MouseEvent.CLICK, nextSlide);
    mcInfo.btnPrevious.addEventListener(MouseEvent.CLICK, previousSlide);
    // hide play button
    mcInfo.btnPlay.visible = false;
    function onXMLLoadComplete(e:Event):void {
    // show buttons, labels and link
    mcInfo.visible = true;
    btnLink.visible = true;
    // create new xml with the received data
    xmlSlideshow = new XML(e.target.data);
    var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
    // get total slide count
    intSlideCount = unesc_xmlSlideshow..image.length();
    // switch the first slide without a delay
    switchSlide(0);
    function fadeSlideIn(e:Event):void {
    var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
    // add loaded slide from slide loader to the
    // current container
    addSlideContent();
    // clear preloader text
    mcInfo.lbl_loading.text = "";
    // check if the slideshow is currently playing
    // if so, show time to the next slide. If not, show
    // a status message
    if(bolPlaying) {
      mcInfo.lbl_loading.text = "Next slide in " + unesc_xmlSlideshow..image[intCurrentSlide].@time + " sec.";
    } else {
      mcInfo.lbl_loading.text = "Slideshow paused";
    // fade the current container in and start the slide timer
    // when the tween is finished
    Tweener.addTween(currentContainer, {alpha:1, time:FADE_TIME, onComplete:onSlideFadeIn});
    function onSlideFadeIn():void {
    // check, if the slideshow is currently playing
    // if so, start the timer again
    if(bolPlaying && !slideTimer.running)
      slideTimer.start();
    function togglePause(e:MouseEvent):void {
    var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
    // check if the slideshow is currently playing
    if(bolPlaying) {
      // show play button
      mcInfo.btnPlay.visible = true;
      mcInfo.btnPause.visible = false;
      // set playing flag to false
      bolPlaying = false;
      // set status message
      mcInfo.lbl_loading.text = "Slideshow paused";
      // stop the timer
      slideTimer.stop();
    } else {
      // show pause button
      mcInfo.btnPlay.visible = false;
      mcInfo.btnPause.visible = true;
      // set playing flag to true
      bolPlaying = true;
      // show time to next slide
      mcInfo.lbl_loading.text = "Next slide in " + unesc_xmlSlideshow..image[intCurrentSlide].@time + " sec.";
      // reset and start timer
      slideTimer.reset();
      slideTimer.start();
    function switchSlide(intSlide:int):void {
    // check if the last slide is still fading in
    if(!Tweener.isTweening(currentContainer)) {
      // check, if the timer is running (needed for the
      // very first switch of the slide)
      if(slideTimer.running)
       slideTimer.stop();
      // change slide index
      intCurrentSlide = intSlide;
      // check which container is currently in the front and
      // assign currentContainer to the one that's in the back with
      // the old slide
      if(currentContainer == sprContainer2)
       currentContainer = sprContainer1;
      else
       currentContainer = sprContainer2;
      // hide the old slide
      currentContainer.alpha = 0;
      // bring the old slide to the front
      mcSlideHolder.swapChildren(sprContainer2, sprContainer1);
      // delete loaded content
      clearLoader();
      // create a new loader for the slide
      slideLoader = new Loader();
      // add event listener when slide is loaded
      slideLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, fadeSlideIn);
      // add event listener for the progress
      slideLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, showProgress);
      var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
      // load the next slide, seems to f*ck up here...
      slideLoader.load(new URLRequest(unesc_xmlSlideshow..image[intCurrentSlide].@src));
      // show description of the next slide
      mcInfo.lbl_description.text = unesc_xmlSlideshow..image[intCurrentSlide].@title;
      // show artist's name of the next slide
      mcInfo.lbl_artist.text = unesc_xmlSlideshow..image[intCurrentSlide].@artist;
      // set link and link target variable of the slide
      strLink           = unesc_xmlSlideshow..image[intCurrentSlide].@link;
      strTarget          = unesc_xmlSlideshow..image[intCurrentSlide].@target;
      mcInfo.mcDescription.lbl_description.htmlText = unesc_xmlSlideshow..image[intCurrentSlide].@desc;
      // show current slide and total slides
      //mcInfo.lbl_count.text = (intCurrentSlide + 1) + " / " + intSlideCount + " Slides";
      mcInfo.lbl_count.text = " Slide " + (intCurrentSlide + 1) + " / " + intSlideCount;
    function showProgress(e:ProgressEvent):void {
    // show percentage of the bytes loaded from the current slide
    mcInfo.lbl_loading.text = "Loading..." + Math.ceil(e.bytesLoaded * 100 / e.bytesTotal) + "%";
    function goToWebsite(e:MouseEvent):void {
    // check if the strLink is not empty and open the link in the
    // defined target window
    if(strLink != "" && strLink != null) {
      navigateToURL(new URLRequest(strLink), strTarget);
    function nextSlide(e:Event = null):void {
    // check, if there are any slides left, if so, increment slide
    // index
    if(intCurrentSlide + 1 < intSlideCount)
      switchSlide(intCurrentSlide + 1);
    // if not, start slideshow from beginning
    else
      switchSlide(0);
    function previousSlide(e:Event = null):void {
    // check, if there are any slides left, if so, decrement slide
    // index
    if(intCurrentSlide - 1 >= 0)
      switchSlide(intCurrentSlide - 1);
    // if not, start slideshow from the last slide
    else
      switchSlide(intSlideCount - 1);
    function showDescription(e:MouseEvent):void {
    // remove tweens
    Tweener.removeTweens(mcInfo.mcDescription);
    // fade in the description
    Tweener.addTween(mcInfo.mcDescription, {alpha:1, time:0.5, y: -1});
    function hideDescription(e:MouseEvent):void {
    // remove tweens
    Tweener.removeTweens(mcInfo.mcDescription);
    // fade out the description
    Tweener.addTween(mcInfo.mcDescription, {alpha:0, alpha:1, time:0.5, y: 30});
    function clearLoader():void {
    try {
      // get loader info object
      var li:LoaderInfo = slideLoader.contentLoaderInfo;
      // check if content is bitmap and delete it
      if(li.childAllowsParent && li.content is Bitmap){
       (li.content as Bitmap).bitmapData.dispose();
    } catch(e:*) {}
    function addSlideContent():void {
    // empty current slide and delete previous bitmap
    while(currentContainer.numChildren){Bitmap(currentContainer.getChildAt(0)).bitmapData.disp ose(); currentContainer.removeChildAt(0);}
    // create a new bitmap with the slider content, clone it and add it to the slider container
    var bitMp:Bitmap =  new Bitmap(Bitmap(slideLoader.contentLoaderInfo.content).bitmapData.clone());
    currentContainer.addChild(bitMp);
    // init slideshow
    initSlideshow();

    I'm sorry, you're right! Didn't intend to be lazy...
    This line loads the image in the loader 'slideLoader'. This seems to work fine with image files (.jpg), but .swf files are ignored. Is it possible to load both .jpg AND .swf files in a loader, or do I have to use some other method for this?
    slideLoader.load(new URLRequest(unesc_xmlSlideshow..image[intCurrentSlide].@src));
    Thanks again,
    Dirk

  • How do I set a transparent background to a div in Internet Explorer 8?

    Hello,
    I'm using a jQuery slider for a simple text slideshow on a homepage. The slideshow and each slide (div) have no background. When the site is viewed in Internet Explorer 8, each slide has a white background. I'm using the following IE fallbacks which according to many sources should work...
    #slideText div {
              background: rgb(0, 0, 0) transparent; /* default fallback */
              background: rgba(0, 0, 0, 0.2); /* nice browsers */
              filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#33000000, endColorstr=#33000000); /* IE 6/7 */
              -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#33000000, endColorstr=#33000000)"; /* IE8 */
    The div's background is affected with a 20% black background but it's still over a white background. How can I get rid of this white background?
    Eventually I would like this to have no background but I'm using this 20% transparency for testing. You can view the live site here: http://www.pmi.tv.
    Thank you much in advance!

    Older IE browsers do not support CSS level 3 rgba colors with opacity. 
    MS Filters cause other undesired side effects.  I don't use them.
    If you must support IE8, use a semi-transparent PNG image for your background. 
    Opacity Example:
    http://alt-web.com/Sample.html
    Nancy O.

  • Error exporting quicktime movie

    I have Keynote 2 and the latest quicktime. I try to export the simpliest background/text slideshow to a self-playing quicktime movie and I always get an error that either I don't have enough memory, or there is a problem with the file.
    I have tried different codecs (H.264, mpeg 4, Sorenson video, etc.) for compression, with and without audio, with and without transparency.
    I've had success with exporting before, but I think it was when i updated to Keynote 2 and/or quicktime 7 that this started and I haven't been able to export since then.
    Any help would be greatly appreciated
    PowerBook G4   Mac OS X (10.3.9)  

    Tulse;
    This is Eagle 1. I have completed my slid presentation but am unable to play it on a DVD player. I have been reading help topics and Tutorials for iDVD but stillam unable to copy, import/export/move/marry my presentation to iDVD.
    Are you able to give me a step by step prcedure a neophite like me can follow.
    Asalways I appreciate your time and help.
    Eagle 1

  • Lg Ally - slideshow text message - How to save??

    Hello,
      I was sent a text message with pictures which became a slideshow. I cant save the slideshow to my pictures. No menu pops up, only a slide show count down. How do i save the slideshow into my pictures?

    It is possible to save it into the memory card of the phone.
    You would open the message where you received the slideshow.
    While you see the slideshow touch and hold over it, a sub-menu will then open with the option to save it.

  • PH2423 How do you get text pages in a project to a saved slideshow?

    Hi Peeps,  My project is a book which has photos AND text pages. I can get the photos to the saved slide show but not the text pages.  Can someone advise?

    This is a book created in iPhoto, right?  If so then do the following:
    1 - while in the book mode type Command +P to start the print process.
    2  - click on the PDF button and select "Save PDF to iPhoto".
    Note:  If you don't have any of those options go to Toad's Cellar and download these two files:
    Save PDF to iPhoto 200 DPI.workflow.zip
    Save PDF to iPhoto 200 DPI.workflow.zip
    Unzip the files and place in the HD/Library/PDF Services folder and reboot.
    4 - select either of the files above (300 dip is used for photos to be included in a book that will be ordered).
    5 - in the window that comes up enter an album name or select an existing album and hit the Continue button.
    That will create a 200 or 300 dpi jpeg file of the item being printed and import it into iPhoto. Then you can use the entire book as the slideshow or just those pages that are text. 
    This process was used to create this iWeb slideshow: iPhoto Book as an iWeb Slideshow
    OT

  • I would like to use slideshow in lightroom to export my video as a full screen 1920x1080 video with text overlays.  I am using text overlay in lightroom as it reads from the metadata that is easy for me to input in the library screen.  When i export from

    I would like to use slideshow in lightroom to export my video as a full screen 1920x1080 video with text overlays.  I am using text overlay in lightroom as it reads from the metadata that is easy for me to input in the library screen.  When i export from lightroom slideshow and choose the 1920x1080 resolution the end product is a very small video in the middle of a black background.  i have double checked and do not have any borders turned on.  Another option would be to export from the library but lr mogrify does not seem to put text overlays on video either.  Any input would be welcome.

    I dont understand anything you said in your post.
    Do you have a specific question about video production?
    The forums are for individual technical or creative issues that users have with video production. I am sur someone will be able to help you, but and to get a response it is best to ask a specific question.
    Is this about a technical problem you have or something about setting up a web site? If its the latter this is the wrong forum.

  • Text in Spry Slideshow, not working in Explorer.

    Hi,
    I have attempted to search for a similar topic, but am not able to find anything.
    I have input the spry slideshow into my page, and it is fully functional for safari, chrome, firefox, but seems like it is only not working in IE.
    The text that is supposed to be showing up to the right of the images is not showing with IE.
    I had read a couple things on opacity, or such but am not sure if it applies to the text as well.
    www.i4homedesign.ca
    This is the first time I have posted on this forum and am not sure if I need to be including anything else.
    Thanks
    i4homedesign.

    Here is the code for the Spry Slideshow if it helps...
    <link href="Spry-UI-1.7/css/ContentSlideShow/wanderlust/wanderlust-brown.css" rel="stylesheet" type="text/css">
    <script src="Spry-UI-1.7/includes/SpryDOMUtils.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryDOMEffects.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryWidget.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryPanelSelector.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryPanelSet.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryFadingPanels.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryContentSlideShow.js" type="text/javascript"></script>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="2141541" binding="#ImageSlideShow" />
    </oa:widgets>
    -->
    </script>
    <style type="text/css">
    a:link {
    color: #FFF;
    a:visited {
    color: #CCC;
    a:hover {
    color: #999;
    body,td,th {
    font-family: "MS Serif", "New York", serif;
    </style>
    </HEAD>
    <BODY text="#FFFFFF" LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>
    <table align="center" width="1000" border="0" cellpadding="0" cellspacing="0">
    <tr>
      <td><br></td>
    </tr>
    <TABLE align="center" WIDTH=1000 BORDER=0 CELLPADDING=0 CELLSPACING=0>
      <TR>
        <TD ROWSPAN=2><IMG SRC="images/header_01.gif" WIDTH=22 HEIGHT=112 ALT=""></TD>
        <TD COLSPAN=3><IMG SRC="images/header_02.gif" WIDTH=959 HEIGHT=90 ALT=""></TD>
        <TD ROWSPAN=2><IMG SRC="images/header_03.gif" WIDTH=19 HEIGHT=112 ALT=""></TD>
      </TR>
      <TR>
        <TD><IMG SRC="images/header_04.gif" WIDTH=13 HEIGHT=22 ALT=""></TD>
        <TD><IMG SRC="images/header_05.gif" ALT="" WIDTH=929 HEIGHT=22 border="0" usemap="#Map"></TD>
        <TD><IMG SRC="images/header_06.gif" WIDTH=17 HEIGHT=22 ALT=""></TD>
      </TR>
      <TR>
        <TD COLSPAN=5><IMG SRC="images/header_07.gif" WIDTH=1000 HEIGHT=8 ALT=""></TD>
      </TR>
    </TABLE>
    <table align="center" width="930" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td><br>
          <h1 align="center">SEE YOUR DREAMS BEFORE YOU BUILD</h1>
          <br>
          <div id="ImageSlideShow" align="center">
            <div class="article">
              <div class="photo"> <img src="Images/house-blueprint.jpg" width="370" height="247">
                <div class="caption">COMPREHENSIVE CONSTRUCTION DOCUMENTS</div>
              </div>
              <div class="story">
                <div class="banner">
                  <div class="title">FULL WORKING PRINTS</div>
                  <div class="subTitle">SOLID DESIGN</div>
                </div>
                <div class="content">
                  <p>Framing and homebuilding experience.
                    Incorporating both inspired creativity and practical design.</p>
                </div>
              </div>
            </div>
            <div class="article">
              <div class="photo"> <img src="Images/Home Render Image_1.png" width="1024" height="600">
                <div class="caption">LEADING EDGE 3D RENDERING</div>
              </div>
              <div class="story">
                <div class="banner">
                  <div class="title">PHOTO REALISITC CAPABILITY</div>
                  <div class="subTitle">LEADING EDGE RENDERINGS</div>
                </div>
                <div class="content">
                  <p>Constantly seeking to be on the edge of new technology.  Providing customers with comprehensive visualization of their home.</p>
                </div>
              </div>
            </div>
            <div class="article">
              <div class="photo"> <img src="Images/Heyn Bathroom Thea 2 Bloom.png" width="1328" height="774">
                <div class="caption">COMPETITIVE RATES, PROMPT TIMELINES</div>
              </div>
              <div class="story">
                <div class="banner">
                  <div class="title">COMPETITIVE RATES</div>
                  <div class="subTitle">Reasonable timelines.</div>
                </div>
                <div class="content">
                  <p>Providing exceptional service in every aspect of the design process of your home.</p>
                </div>
              </div>
            </div>
            <div class="article">
              <div class="photo"> <img src="Images/Thea-Image-11097.gif" width="803" height="522">
                <div class="caption">INNOVATIVE DESIGN</div>
              </div>
              <div class="story">
                <div class="banner">
                  <div class="title">INNOVATIVE DESIGN</div>
                  </div>
                <div class="content">
                  <p>Whether you're seeking a 'Ranch' house, 'Modern' two story, or 'Arts and Craft' bungalow or other style, we provide that "Little extra".</p>
                </div>
              </div>
            </div>
          </div>
          <script type="text/javascript">
    // BeginOAWidget_Instance_2141541: #ImageSlideShow
    var ImageSlideShow = new Spry.Widget.ContentSlideShow("#ImageSlideShow", {
    widgetClass: "WLBSlideShow",
    displayInterval: 8000,
    transitionDuration: 2000
    // EndOAWidget_Instance_2141541
    </script>
        <br>
          <H2 align="center">PREMIERE RESIDENTIAL DRAFTING COMPANY</H2>
          <h3 style="margin-left:200">- Based in the Peace Region.<br>
            - Comprehensive design process.<br>
            - Full working prints.<BR>
            - Leading edge 3D imaging/rendering.<BR>
          </h3>
          <P align="center"> </p></td>
      </tr>
    </table>

  • How can I add text "slides" between photos in a slideshow?

    I'm making a presentation to a group. I want to use two or three photos, together, to illustrate a point (and be able to back up and go forward for clarity). But I would like a simple text (white on black background) announcement of what the next topic is, before showing the photos.
    I have no idea what such panels/slides would be called, which makes it a little tricky to find them in the missing manual . . . or anywhere else.
    Is it possible to do this in iPhoto? Or do I have to create the notices/titles/topics in another program (like Photoshop Elements) first?
    Thanks up front. The presentation isn't for over a week yet, so there's time to play.

    If you can create your slide in any text editor, Pages, Word, whatever, all you need to to is type Command+P(to start a print job) , then click on the PDF button in the next window and select Save PDF to iPhoto in the menu that appears. 
    Click to view full size
    This creates a jpeg version of the document and imports it into iPhoto.  From there you can add it to the slideshow.
    With Pages and other apps that let you use a color background you can make very nice title slides. Even Powerpoint.  Make a PP page as a slide and then print that one page as I outlined above.  User the landscape orientation with any application you use.
    OT

  • What program can i use to place more than one photo on a slide for a slideshow with music and text? I have my show on powerpoint but can I transfer that to imovie or idvd?

    I am trying to put together a slide show for my son's wedding. I would like to put 2 or more pictures on one slide and add music and some text. I tried Powerpoint for the slides but doesn't seem to be able to export to iphoto or imovie. In imovie and iphoto i can only do one picture / slide. Any thoughts? Thanks

    Alternatives to iPhoto's slideshow include:
    iMovie is on every Mac sold.
    Others, in order of price:
    PhotoPresenter  $29
    PhotoToMovie  $49.95
    PulpMotion  $129
    FotoMagico $29 (Home version) ($149 Pro version, which includes PhotoPresenter)
    Final Cut Pro X $299
    It's difficult to compare these apps. They have differences in capability - some are driven off templates. some aren't. Some have a wider variety of transitions. Others will have excellent audio controls. It's worth checking them out to see what meets your needs. However, there is no doubt that Final Cut Pro X is the most capable app of them all. You get what you pay for.

  • Adding Text to a Slideshow of images....

    Hi,
    I am still on iDVD 4.0.1 so could somebody please answer a couple of, hopefully, easy questions to help make my mind up about whether I should opt to buy the new iLife package (currently on version 06).
    I have created a slideshow and want to add text to each of the photographs, it is a family album so I want to add different text to each individual photo i.e. Auntie Marge 1964 etc....There doesn't seem to be a way of doing this in this version?
    I have burnt my first project to DVD but when I view it on the TV I am getting a warping effect on a number of images in the slideshow, any ideas why?
    So in conclusion, is it worth my while upgrading to the new iLife06 and will it include either a fix or a new feature that will help in the above queries?
    Thanks,
    Will.

    Hello Will,
    The best way to do what you want to do is to use iPhoto to create a slideshow, expanding the image viewing time to 5 seconds + for each image with or without Ken Burns and export it to Quicktime. Then import the Quicktime movie into iMovie. Next step is to split the clip at the playhead of each individual image and add a title with the 'over black' deselected. The subtitle option works well for this. It takes a bit of time to do, but there really is no quick way to do what you want to do. There are various plugins for iMovie as well and some do allow you to put text over batches of images, although I would guess you want to put different text over each image. I have done it a few times and it does come up really well. You can't do it with an iDVD slideshow.

Maybe you are looking for