Thumbnails as buttons

Is there any way to pull images from the timeline in Encore to use as thumbnail menue buttons? I use DVDlab from time to time and this can be done quite easily. I havn't had enough time to really use and get to know all the workings of Encore but I have searched the forums as well as the help docs. Currently I render stills from Premiere to use as picture buttons. Any help would be appreciated.
Thanks,
Don

Just a note of interest. I used auto chapters (set for every 2 or 3 minutes) and set poster frames within the chapters to use with menus. On the last poster frame I crossed over to the next listed chapter, example; chapter 17 chapter 18 poster 17 on the timeline. When previewed the timeline hits chapter 18 and jumps to the next chapter missing everything in between. I didn't notice this until after I burned and labeled several DVDs. When I found the problem I eventually went back to Encore and deleted chapter 18 and everything worked well.
Don

Similar Messages

  • Thumbnail and button navigation help

    I would like to start out by saying I am very new at this and am working on a portfolio website in flash CS4 and currently getting help through the tutorials over at Lynda.com. Now my problem is In the portfolio section I want a preview of the pics like a thumbnail on the bottom with a scroll bar to scroll through them all, but at the same time I would like to have buttons to navigate through these photos at the same time. I have got it to work, the only problem is let say i'm using the buttons to navigate through but then stop and go to the scroll bar on the bottom and click on one three of four pictures in front of where I left off, The image loads and everything is fine but when I go back to the buttons it continues off from where it last left off not where I clicked on the scroll bar. Not sure if you can follow that but if not ask questions I really have no clue on how to do this so any help is greatly appreciated.
    Here is the code that I currently have:
    myscrollpane.source=allthumbnails;
    //load the thumbnails...
    var thumbLoader:Loader = new Loader();
    thumbLoader.load(new URLRequest("smallthumbs/portfolio01.jpg"));
    thumbLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded);
    function thumbLoaded(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader);
    myscrollpane.update();
    thumbLoader.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio01.jpg";
    var thumbLoader2:Loader = new Loader();
    thumbLoader2.load(new URLRequest("smallthumbs/portfolio02.jpg"));
    thumbLoader2.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded2);
    function thumbLoaded2(event:Event):void {
    allthumbnails.addChild(thumbLoader2);
    thumbLoader2.x=118;
    myscrollpane.update();
    allthumbnails.buttonMode=true;
    thumbLoader2.addEventListener(MouseEvent.CLICK, loadMainImage2);
    function loadMainImage2(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio02.jpg";
    var thumbLoader3:Loader = new Loader();
    thumbLoader3.load(new URLRequest("smallthumbs/portfolio03.jpg"));
    thumbLoader3.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded3);
    function thumbLoaded3(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader3);
    thumbLoader3.x=236;
    myscrollpane.update();
    thumbLoader3.addEventListener(MouseEvent.CLICK, loadMainImage);
    function loadMainImage(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio03.jpg";
    var thumbLoader4:Loader = new Loader();
    thumbLoader4.load(new URLRequest("smallthumbs/portfolio04.jpg"));
    thumbLoader4.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded4);
    function thumbLoaded4(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader4);
    thumbLoader4.x=354;
    myscrollpane.update();
    thumbLoader4.addEventListener(MouseEvent.CLICK, loadMainImage);
    function loadMainImage(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio04.jpg";
    var thumbLoader5:Loader = new Loader();
    thumbLoader5.load(new URLRequest("smallthumbs/portfolio05.jpg"));
    thumbLoader5.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded5);
    function thumbLoaded5(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader5);
    thumbLoader5.x=472;
    myscrollpane.update();
    thumbLoader5.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio05.jpg";
    var thumbLoader6:Loader = new Loader();
    thumbLoader6.load(new URLRequest("smallthumbs/portfolio06.jpg"));
    thumbLoader6.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded6);
    function thumbLoaded6(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader6);
    thumbLoader6.x=590;
    myscrollpane.update();
    thumbLoader6.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio06.jpg";
    var thumbLoader7:Loader = new Loader();
    thumbLoader7.load(new URLRequest("smallthumbs/portfolio07.jpg"));
    thumbLoader7.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded7);
    function thumbLoaded7(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader7);
    thumbLoader7.x=708;
    myscrollpane.update();
    thumbLoader7.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio07.jpg";
    var thumbLoader8:Loader = new Loader();
    thumbLoader8.load(new URLRequest("smallthumbs/portfolio08.jpg"));
    thumbLoader8.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded8);
    function thumbLoaded8(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader8);
    thumbLoader8.x=826;
    myscrollpane.update();
    thumbLoader8.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio08.jpg";
    var thumbLoader9:Loader = new Loader();
    thumbLoader9.load(new URLRequest("smallthumbs/portfolio09.jpg"));
    thumbLoader9.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded9);
    function thumbLoaded9(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader9);
    thumbLoader9.x=944;
    myscrollpane.update();
    thumbLoader9.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio09.jpg";
    var thumbLoader010:Loader = new Loader();
    thumbLoader010.load(new URLRequest("smallthumbs/portfolio010.jpg"));
    thumbLoader010.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded010);
    function thumbLoaded010(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader010);
    thumbLoader010.x=1062;
    myscrollpane.update();
    thumbLoader010.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio010.jpg";
    var thumbLoader011:Loader = new Loader();
    thumbLoader011.load(new URLRequest("smallthumbs/portfolio011.jpg"));
    thumbLoader011.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded011);
    function thumbLoaded011(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader011);
    thumbLoader011.x=1180;
    myscrollpane.update();
    thumbLoader011.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio011.jpg";
    var thumbLoader012:Loader = new Loader();
    thumbLoader012.load(new URLRequest("smallthumbs/portfolio012.jpg"));
    thumbLoader012.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded012);
    function thumbLoaded012(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader012);
    thumbLoader012.x=1298;
    myscrollpane.update();
    thumbLoader012.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio012.jpg";
    var thumbLoader013:Loader = new Loader();
    thumbLoader013.load(new URLRequest("smallthumbs/portfolio013.jpg"));
    thumbLoader013.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded013);
    function thumbLoaded013(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader013);
    thumbLoader013.x=1416;
    myscrollpane.update();
    thumbLoader013.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio013.jpg";
    var thumbLoader014:Loader = new Loader();
    thumbLoader014.load(new URLRequest("smallthumbs/portfolio014.jpg"));
    thumbLoader014.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded014);
    function thumbLoaded014(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader014);
    thumbLoader014.x=1534;
    myscrollpane.update();
    thumbLoader014.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio014.jpg";
    //added the next button function
    next_btn.addEventListener(MouseEvent.CLICK,nextImage);
    //variable is a container that holds some value...
    var imageNumber:Number=1;
    function checkNumber():void {
    next_btn.visible=true;
    back_btn.visible=true;
    //if the imageNumber is = 14,then do something...
    if (imageNumber==14) {
    trace(imageNumber);
    next_btn.visible=false;
    //if imageNumber is = 1, then dont show back button..
    if (imageNumber==1) {
    trace(imageNumber);
    back_btn.visible=false;
    checkNumber();
    function nextImage(evtObj:MouseEvent):void {
    trace("nextimage");
    //adding to the current value+1
    imageNumber++;
    largeUILoader.source="largeimages/portfolio0"+imageNumber+".jpg";
    checkNumber();
    //added the back button function
    back_btn.addEventListener(MouseEvent.CLICK,backImage);
    function backImage(evtObj:MouseEvent):void {
    trace("backimage");
    //subtract 1 from the current value...
    imageNumber--;
    largeUILoader.source="largeimages/portfolio0"+imageNumber+".jpg";
    checkNumber();

    You need to have each thumbnail change the value of the variable imageNumber when you select from the thumbnails.  You can see how it changes when you use the next and previous buttons, but there's nothing to change it when you select a thumbnail that I can readily see.

  • Mountain Lion showing red tints over images,thumbnails and buttons

    Hello everyone, I've been having an issue ever since I updated to mountian lion a few weeks ago.
    Images are showing up with red tints over them for no reason, and I'm not sure what's going on.
    Here is a few examples.
    I have a Macbook Pro Mid 2009 edition.
    Thank you for your help,
    -Max

    Here is a link to them,
    http://imgbin.org/index.php?page=image&id=9164
    http://imgbin.org/index.php?page=image&id=9165
    http://imgbin.org/index.php?page=image&id=9166

  • Adobe premiere elements 12 - how to create menu bar action for my inserted image button

    adobe premiere elements 12 - how to create menu bar action for my inserted image button without using their movie menu theme

    forbemag
    I do not think that I am completely focused into this completely, so let us see if the following is going to help.
    You are going to need a base for your button. When you mention "image" button, I am assuming that you are using that term to differentiate between a text button and a thumbnail type button.
    The menus (main and scene) take their origin in .psd files on the hard drive and strict nomenclature and structure for Layers Palatte. And, the buttons on the menus trace back to the menu markers on the Timeline, main menu marker and order of placement of scene markers. The scene thumbnail will only appear when there is a scene marker on the Timeline to which it.
    In view of all that
    Where have you already inserted this "image (button)"...into the Layers Palette of a Photoshop document or other? Is this "image (button)" in a structured Layer Group in the Layers Palette with sublayer groups, text layers, graphic/background layer"?
    Let me give you an example
    If you have a button (with thumbnail) on the main menu and you want that to open to a specific scene in your movie, then you use a main menu marker on the Timeline at the spot that you want that button to target.
    If I am getting closer to what you seek, then please further clarify the DVD navigational envisioned scheme.
    Thanks.
    ATR
    Add On...I did not see the exchanges between us and SG until after I had posted mine. I thought that your discussions were concluded. Please excuse the interruption.

  • Flash roll over buttons

    hey, i'm using flash CS3 for my website. i'm trying to make thumbnails of pictures on the side of the screen and when the user will roll over these thumbnails, the actual size picture will appear in the middle of the page. i already did this on most of my site by simply converting these thumbnails to buttons and adding the picture on the the "over" part. but now i wanted to change the pictures on my site and when i tried to do the same progress again the pictures now appear not only when i roll over the thumbnails but when i roll over the part that the pictures are supposed to appear too!
    i truely have no idea why this is happening!
    please help!
    thanks

    Try extending the thumbnail so that it occupies all four of the frames, making sure that the larger image is only in the over frame.

  • Insert static picture between thumbnails and sliding pictures

    Hello everybody,
    I try to create a fullscreen slideshow behind a static picture with transparent areas in muse ... unsuccessfully!
    In the fullscreen background should be the changing pictures.
    Over these sliding pictures, one static picture with transparent areas, fullscreen (important!), so that you can see parts of slideshow.
    And in the foreground has to be the thumbnails and buttons trigger to control slideshow.
    How can I insert a static picture between thumbnails and sliding pictures?
    Thank you!

    http://www.auttec.de/cross_test/

  • Need button help

    hello all. i am new to this business, i have been
    experimenting with flash for about a year, and am just getting my
    bearings on things. i am building a website. my navbar is a movie
    clip with buttons inside it. can i make my nested buttons control
    my main timeline? it would seem as though i cant. here is my button
    code located on my main timeline.
    stop();
    photo_btn.addEventListener(MouseEvent.CLICK, photopage);
    function photopage(event : MouseEvent):void {
    gotoAndStop("photo");
    "photo" is the label of the frame that contains my photo
    gallery. using that same formula works within my picture gallery
    movie clip to navigate picture to picture using thumbnails as
    buttons.
    any help is very appreciated.
    thanks...

    ok let me try to clear up my situation. 'scene 1' has 4
    layers: 'background', 'navigation bar', 'content', and 'actions'.
    the navigation bar layer contains a movie clip called navbar. that
    movie clip contains buttons. i am trying to get those buttons to go
    to different frames in the 'content' layer of scene 1. for example,
    clicking on the photo button (which is contained in a movie clip in
    the navigation bar layer) will go to a frame in the content layer
    (containing my picture gallery movie clip). the action script is
    written in the action layer of scene 1, my main timeline.
    i hope this clears up my situation, and thanks for your
    help!

  • Lightroom: Lock Thumbnail page views in Grid, ala Bridge

    It's frustrating to try and scan through a lot of photos in LR's grid, because you can't really do this a page at a time.  There are always partial images displayed at the top and bottom, no matter how much you try and tweak the thumbnail size.
    Bridge handles this elegantly with the 'Click to Lock Thumbnail Grid' button.  Click it once and all you see are complete images as you page up and down.
    Can we have it too?  Please?
    Paul Wasserman

    Stan, generally locking in camera sets the image to read-only, but LR's import routine removes that status. I've asked for it to be preserved and for the import routine to have a way to filter read-only files, and agree with your request. As a workaround, I manually copy files off the card and onto the hard drive, then import from there before running my Locktastic plug-in which highlights read-only files in red.
    John

  • DPS Viewer app crashes when entering the browse (thumbnail) mode

    Hi!
    We recently submitted a v.30 multifolio newsstand app for our magazine and published 2 free folios (v.26 and v.30). The app crashes (almost) every time the user hits the thumbnail view button or the scrubber. Same issues copied to a different account and viewed with another viewer app of the same version work fine. Any thoughts?
    Thanks!

    Yeah, with v31 dev app everything is fine. The only trouble is that it is not yet approved by Apple. They want a "Restore all purchases" button but it only appears after publishing a retail folio, whereas our magazine is free.

  • No thumbnails if iPhoto creates message via Tell a Friend in Mail app.

    Hello,
    this worked fine here until some days ago:
    when I wanted to "Tell a Friend" about my new MobileMe gallery a clicked on the envelope in iPhoto (Tell a Friend) and iPhoto created a message containing Thumbnail, name of the gallery etc. Now all files including thumbnail, View button etc show their names only, no thumbnail, no buttons etc., they just displays like attachments included in text with their filenames.
    Any solution?
    Thanks, Juraj.

    I found a message, where on the place which should show icon and the name of .docx file (attachment) it says "Missing Plug-in. This is surely something which is connected to this topic....
    Pity I am not able to post a PrintScreen here...

  • Actionscript Disables Buttons!!!

    I have built a vertical thumbnail scroller, all of the
    thumbnails are buttons that are supposed to launch PDF's.
    I had an issue where the thumbnail scroller was just
    scrolling immediately, before you even moused over so I added the
    script below to the first frame.
    Now none of my buttons work. If I remove the script the
    buttons work fine, but the thing scrolls nonstop and I don't want
    that. Any help would be greatly appreciated. Thanks.
    Here is a link to the file in question:
    Thumbnail
    Scroller

    your attaching mouse handlers to a parent movieclip. that
    parent will intercept all mouse events so the child buttons cannot
    respond to mouse events.
    to remedy use handlers in the child generation only or use a
    hitTest and loop (onMouseMove) to start and stop scrolling.

  • Video Thumbnails Activate Uncommanded When Highlighted

    I have created a PAL DVD project using DVD Encore 2.0. The check build and flow chart processes state there are no errors. The transcoded video plays fine on computers allowing access to all thumbnails, menus and submenus, and once the "Play Movie" button is selected on the Main menu the video plays fine on most stand alone DVD players. However on stand alone DVD players there is a recurring problem when trying to select thumbnails in the submenus. When a video thumbnail or button is highlighted by using the four direction buttons on the remote control, the thumbnail starts playing the video without the "Enter" request. There is a main menu page and then two sub menu pages. From the Main Menu, it is possible to enter the first submenu page by selecting "Chapters" where there are six video thumbnails and a NEXT button to access the second submenu page. It is not possible to select any of the thumbnails other than the two nearest to the top left thumbnail, either of which play the video uncommanded when highlighted. Is there a setting that I have missed in the preferences prior to transcoding. I have used PAL DV High Quality 7MB VBR 2 Pass which I understand results in good quality.
    Thank you in advance for any help that may be offered.

    You are quite right. Stupidly I confused "Auto Activate" with Animate thumbnail. Everything now works perfectly on the stand alones. I cannot thank you enough as although the solution itself was very simple, you have saved me many many hours of head scratching and frustration. Thanks.

  • How to create a DVD with 2 separate movies?

    I'm a coach - and as I break down game film for my team, I'd like to distribute a single DVD with an Offensive film and a Defensive film, on a single DVD.  Once I edit the original clips, I usually have about 20 minutes of offense, and 25 minutes of defense.  Is it possible to open a DVD menu, in PE and just drag/drop my two films into the menu?  I've already made the separate films - just can't find a way to put them on the same DVD - with separate launch buttons.
    Please advise - thanks.
    Coach B.

    Coach B
    In Premiere Elements, it is the placement of the menu markers at the Timeline level in Edit that is going to be the important first step. There placement at the Timeline level will determine how they are represented (linked to) the buttons in the menu(s). The menu markers for this are going to be main menu markers and stop markers as per details.
    1. Setting up the Timeline.
    Place a main menu marker at the start of the first file of Offense Section.
    Place a stop marker at the end of the last file of Offense Section.
    Leave a few frames gap between the end of the Offense and the start of the Defense.
    (You cannot sit one marker on top of another)
    Place a main menu marker at the start of the first file of Defense Section.
    DO NOT place a stop marker at the end of the last file of Defense Section.
    2. As shown in the blog post to which I referred you for background information, there are two types of buttons we could use for Offense button and Defense button on the main menu. Let us start with using just the thumbnail type button.
    For now we will be assuming the end product as DVD-VIDEO Standard (4:3) on DVD disc.We will use the Sports/(AV)Extreme theme and do some file switching.
    a. You need to get copies of the following files from the Program Data
    sportchannel_pal_s_sm.psd
    sportchannel_pal_s_mm.psd
    They are copied at their saved located
    Local Disk C
    Program Data
    Adobe
    Premiere Elements
    11.0
    Online
    DVD Templates
    All_Lang
    Sports
    and in the Sports Folder are those two files cited above which you copy and paste to an empty folder that you created on the computer desktop.
    b. Switch the file names so that the main menu has the scene menu design and vice versa. And, modify the names so that you do not mix up these modified files with anything else.
    So, you want to end up with a folder name mysportchannel on the computer desktop
    and in that folder are the two files who names you switched and changed.
    sportchannel_pal_s_sm.psd is changed to mysportchannel_pal_s_mm.psd
    and
    sportchannel_pal_s_mm.psd is changed to mysportchannel_pal_s_sm.psd
    Take the desktop mysportchannel folder with these modified files and place it in the following spot in the following path...
    Local Disk C
    Program Files
    Adobe
    Premiere Elements
    11.0
    DVD Templates
    Common
    and in the Common Folder place the mysportchannel folder.
    When you go to select this theme in the Movie Menu customization of the opened project, look under the Slideshow catagory.
    You should be looking at something like this in the Movie Menu customization area
    Lots ot fine tuning yet to be done, detail wise.
    1. Is your end product, DVD-VIDEO standard 4:3 or widescreen 16:9.
    2. Do you want the music background that comes with the original main menu?
    3. Do you want a Play All opportunity? This one allows for pick one or the other then return to the
    main menu.
    Please review the above. Do not hesitate to ask for clarification.
    Thanks.
    ATR

  • Scroll Bar not functioning in Grid View with All Photographs selected

    LR 4.3 on Windows 7
    I can scroll through a bunch of photos while in grid view with the right side slider when I am looking at a folder with 15,000 images or less, but when I click the All Photographs, there is no little slider button. The slider tray is visible, but no button to drag. The catalog has 180,000 images now. Any suggestions would be appreciated.
    I tried using a text search within my All Photographs which brought up 71,000 images. The slider showed up fine with that many images.
    M. Jackson

    Okay, I will answer my own question in case anyone else sees the problem.
    When I am viewing my large catalog with only three thumbnails across in LR, I lose the little button to slide up and down. When I change Grid View to show four or more thumbnails, the button reappears. I'd suggest this is a bug needing fixing.

  • I need to create an image gallery

    I'm looking for a tutorial which explains me how to create a simple AS3 image gallery driven by an XML file.
    The gallery I need is really simple:
    - an horizontal bar placed on the bottom containing the thumbnails which scrolls left and right according to the mouse pointer
    - clicking on a thumbnail the full image must be shown above the thumbnails' bar
    - buttons for prev and next image
    - clicking on the button which opens the gallery I must be able to pass a variable to make the gallery load the proper xml file (I've got 6 different categories to show)
    That's all I need.
    Do you know where I could find a tutorial?

    I'm trying to do it by myself.
    I've decided to give to the xml file this structure
    <imgList>
        <img thumb='img_001_thumb.jpg' full='img_001_full.jpg' desc='image 001' />
        <img thumb='img_002_thumb.jpg' full='img_002_full.jpg' desc='image 002' />
    </imgList>
    I've found some tutorials where they read the attributes in this way
    xml.img@thumb
    xml.img@full
    xml.img@desc
    where xml is an xml variable containing the xml file's data.
    I think that syntax is for AS2, while I'm using AS3 and it say to me that a semicolon is expected before atsign.
    How can I read the attributes thumb, full and desc in AS3?

Maybe you are looking for

  • JTree making nodes in TreeModel invisible

    I have a TreeModel that represents a database structure. I want to display that structure within a JTree. No problem so far, I just create the JTree using theTreeModel. Everything works great. Now, I want some nodes in the tree (tables in the structu

  • Gr based Iv in Imports po

    Hi Experts, My Issue is In imports po total qty is 9000 say and total price is 58000 say. Now what i am getting problem is While making Gr the system is showing the bed value for total qty. Where as we have recd only 2000 qty. So system should show o

  • 5.0.2 Crashes A LOT I need 5.0.1 back

    5.0.1 was ROCK solid.  Completely stable it NEVER crashed on me.  Now crashes are pretty much constant.  It reconformed every file in all my projects, invalidated all my Mercalli plug-in stabilizations so I had to re-run them on all scenes in all pro

  • Installed 8.1.3. The Fitness Pal app won't stay opened. I click on the icon, it opens then closes without allowing me to enter my input.

    installed update 8.1.3 to my iPad and iPhone. As usual, I'm trying to access Fitness Pal app to enter data On to the iPad. The. App opens briefly then closes immediately before I can enter the data.

  • PlayBook LTE

    Just bought another PB and after initial set up/BBID/update all seemed to be going well, seems faster than my other PB Anyway clicked on AppWorld got a brief message so fast I cant remember it and now when I click on AppWorld (should be BB world I gu