Background image in tray but does not appear

I am trying add background images to some submenus in a DVD project with picture slideshows. When I drag in the image, it appears in the customize tray, but does actually appear as a background image in the preview of the DVD project menus. Any idea why? Will they only show up in the final burned DVD? thanks

Hi t
Don't think so. You know that You can test the DVD by the rond button with
a triangle in it ?
You can also from file menu - make a disk image and try to run this with
Apple DVD-player.
I think I would convert the pictures to jpg, pict or tiff to see if any of them
will work as asumed.
Yours Bengt W

Similar Messages

  • Applet compiles but does not appear...

    the applet compiles but does not appear :(
    all that appears is a blank box...hopefully someone can help
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    public class program2 extends Applet implements ActionListener
         private Button btLeft, btRight, btUp, btDown, btBgYellow,
         btBgRed, btBgBlue, btBgOrange, btTxtRed,btTxtYellow, btTxtBlue,
         btTxtOrange, btFtHel, btFtCr, btFtTr, btFtSy;
         private MessagePanel messagePanel;
         private Panel p = new Panel();
         public void init()
              p.setLayout(new BorderLayout());
              messagePanel = new MessagePanel("Java is Life");
              messagePanel.setBackground(Color.white);
              //directional buttons
              Panel pButtons = new Panel();
              pButtons.setLayout(new FlowLayout());
              pButtons.add(btLeft = new Button());
              pButtons.add(btRight = new Button());
              pButtons.add(btUp = new Button());
              pButtons.add(btDown = new Button());
              //Background buttons
              Panel BgButtons = new Panel();
              BgButtons.setLayout(new FlowLayout());
              BgButtons.add(btBgRed = new Button());
              btBgRed.setBackground(Color.red);
              BgButtons.add(btBgYellow = new Button());
              btBgYellow.setBackground(Color.yellow);
              BgButtons.add(btBgBlue = new Button());
              btBgBlue.setBackground(Color.blue);
              BgButtons.add(btBgOrange = new Button());
              btBgOrange.setBackground(Color.orange);
              //text color buttons
              Panel txtButtons = new Panel();
              txtButtons.setLayout(new GridLayout(4,1));
              txtButtons.add(btTxtRed = new Button());
              btTxtRed.setBackground(Color.red);
              txtButtons.add(btTxtYellow = new Button());
              btTxtYellow.setBackground(Color.yellow);
              txtButtons.add(btTxtBlue = new Button());
              btTxtBlue.setBackground(Color.blue);
              txtButtons.add(btTxtOrange = new Button());
              btTxtOrange.setBackground(Color.orange);
              //font buttons
              Panel ftButtons = new Panel();
              ftButtons.setLayout(new GridLayout(4,1));
              ftButtons.add(btFtHel = new Button());
              ftButtons.add(btFtCr = new Button());
              ftButtons.add(btFtTr = new Button());
              ftButtons.add(btFtSy = new Button());
              //layout
              p.add(messagePanel, BorderLayout.CENTER);//set center 1st
              p.add(pButtons, BorderLayout.SOUTH);
              p.add(BgButtons, BorderLayout.NORTH);
              p.add(txtButtons, BorderLayout.EAST);
              p.add(ftButtons, BorderLayout.WEST);
              //listeners
              btLeft.addActionListener(this);
              btRight.addActionListener(this);
              btUp.addActionListener(this);
              btDown.addActionListener(this);
              btBgRed.addActionListener(this);
              btBgYellow.addActionListener(this);
              btBgBlue.addActionListener(this);
              btBgOrange.addActionListener(this);
              btTxtRed.addActionListener(this);
              btTxtYellow.addActionListener(this);
              btTxtBlue.addActionListener(this);
              btTxtOrange.addActionListener(this);
              btFtHel.addActionListener(this);
              btFtCr.addActionListener(this);
              btFtTr.addActionListener(this);
              btFtSy.addActionListener(this);
         //implement listener
         public void actionPerformed(ActionEvent e)
              if(e.getSource() == btLeft)
                   left();
              else if(e.getSource() == btRight)
                   right();
              else if(e.getSource() == btUp)
                   up();
              else if(e.getSource() == btDown)
                   down();
              else if(e.getSource() == btBgRed)
                   red();
              else if(e.getSource() == btBgYellow)
                   yellow();
              else if(e.getSource() == btBgBlue)
                   blue();
              else if(e.getSource() == btBgOrange)
                   orange();
              else if(e.getSource() == btTxtRed)
                   redText();
              else if(e.getSource() == btTxtYellow)
                   yellowText();
              else if(e.getSource() == btTxtBlue)
                   blueText();
              else if(e.getSource() == btTxtOrange)
                   orangeText();
              else if(e.getSource() == btFtHel)
                   helvetica();
              else if(e.getSource() == btFtCr)
                   courier();
              else if(e.getSource() == btFtTr)
                   times();
              else if(e.getSource() == btFtSy)
                   symbol();
         //directional methods :0)
         private void left()
              int x = messagePanel.getXCoordinate();
              if(x > 10)
                   messagePanel.setXCoordinate(x - 10);
                   messagePanel.repaint();
         private void right()
              int x = messagePanel.getXCoordinate();
              if(x < (getSize().width - 5))
                   messagePanel.setXCoordinate(x + 5);
                   messagePanel.repaint();
         private void up()
              int y = messagePanel.getYCoordinate();
              if(y < (getSize().height - 10))
                   messagePanel.setYCoordinate(y - 10);
                   messagePanel.repaint();
         private void down()
              int y = messagePanel.getYCoordinate();
              if(y < (getSize().height + 10))
                   messagePanel.setYCoordinate(y + 10);
                   messagePanel.repaint();
         //background methods :)
         private void red()
              messagePanel.setBackground(Color.red);
         private void yellow()
              messagePanel.setBackground(Color.yellow);
         private void blue()
              messagePanel.setBackground(Color.blue);
         private void orange()
              messagePanel.setBackground(Color.orange);
         //text color methods :)
         private void redText()
              messagePanel.setForeground(Color.red);
         private void yellowText()
              messagePanel.setForeground(Color.yellow);
         private void blueText()
              messagePanel.setForeground(Color.blue);
         private void orangeText()
              messagePanel.setForeground(Color.orange);
         private void helvetica()
              Font myfont = new Font("Helvetica", Font.PLAIN,12);
              messagePanel.setFont(myfont);
         private void courier()
              Font myfont = new Font("Courier", Font.PLAIN,12);
              messagePanel.setFont(myfont);
         private void times()
              Font myfont = new Font("TimesRoman", Font.PLAIN,12);
              messagePanel.setFont(myfont);
         private void symbol()
              Font myfont = new Font("Symbol", Font.PLAIN,12);
              messagePanel.setFont(myfont);

    You add everything to the Panel p but you never add that panel to the applet. What you probably want is to add everything to the applet. An applet is a special kind of panel so you can just change "p" to "this" everywhere in init and remove the declaration of p at the top.

  • My ipod works in itunes but does not appear in "my computer" after I changed the properties

    My ipod works in itunes but does not appear in "my computer" after I changed the properties.
    First off, I'm using Windows XP (and Mac SnowLeopard) Here's how it started. For some reason my ipod started showing up as a camera when I plugged it in. It works fine in itunes, though. But when I tried to access it from "my computer" it only
    showed me the one and only picture I had on my ipod. I deleted that picture hoping it would no longer show up as a camera. When it still did I right-clicked on it in "my computer" and selected "properties". Under "autoplay" I
    chose for it to 'not show up' or 'take no action' or some such deal when I plugged it in. I thought that would stop it from popping up the window that asks whether i want to 'open camera wizard' or 'open camera scanning' or 'open folder to view files' or 'take
    no action' , etc. But now it won't show up in "my computer" at all. I also have a Mac with SnowLeopard. When I plugged my ipod into it my ipod doesn't show up in "finder" either! So basically my problem is not a mechanical one with hardware
    or software; yht ipod still works fine in itunes. I just need to undo the change I made. I've searched all around my preferences, utilities, options, etc. It shows up on my "Device Manager" but not on "Disk Management".
    Any help would be very much appreciated. Thanks.

    Hi,
    To show up in Windows Explorer, you can try placing the iPod into
    disk mode.
    Moreover, i recommend you to
    restore ipod to factory settings.
    If this issue still persists, locate to device manager, uninstall and reinstall USB Mass Storage Device driver.
    Here is an article you can refer to below:
    http://support.apple.com/kb/TS1369
    To get more help, you can also redirect to apple support forum:
    http://www.apple.com/support/ipod/
    Thanks!
    Andy Altmann
    TechNet Community Support

  • HT1386 My iOS device (Ipad mini) only appears in iTunes while cable-connected, but does not appear after diconnect the cable. How can I Wifi sync ?

    Hi, My iOS device (Ipad mini) only appears in iTunes while cable-connected, but does not appear after diconnect the cable. How can I Wifi sync ?
    Documents say
    Whenever the computer and the iOS device are on the same network, the iOS device will appear in iTunes, and you can sync it....
    But I can't see my iPad Mini in iTunes.
    And my  Ipad  (Settings, General, iTunes Wifi Sinc)  shows  a message :" Sync will resume when xxx(my PC with iTunes) is available "...
    Both are in the same network,
      Ipad mini is is plugged in to power
    . iTunes is open on the computer
    what can i Do ???

    Hi Skydiver119,  and tks for four interest.
    I have done exactly as you say, but it does not work for me.
    You indicated  " Navigate to the info tab and scroll down. There'll be a check box for 'sync over wifi' or something to that effect. Check that box and sync to affirm your choice."
    I navigated to Summary tab (not Info Tab) and checked "Sync with this ipad over Wi-Fi"
    I disconnect the wire,
    and my iPad disappears from my iTunes screen.
    in my iPad ->Settings -> General -> iTunes Wi-Fi Sync -> says " Sync will resume when (my PC) is available.
    So, I can not sync via wi-fi
    I appreciate if you can help me.

  • TS1538 I am using windows 7 and my 3rd gen nano is not recognized in itunes. I have followed all online troubleshooting to no avail. My ipod is recognized by windows but does not appear in itunes.

    I am using windows 7 and my 3rd gen nano is not recognized in itunes. I have followed all online troubleshooting to no avail. My ipod is recognized by windows but does not appear in itunes.

    not recognized by anything: http://support.apple.com/kb/TS1369
    recognized by windows, but not itunes: http://support.apple.com/kb/TS1363
    solving the problem if the above does not work:http://www.instructables.com/id/What-to-do-when-iTunes-does-not-recognize-your-i Po/step1
    (make sure you go to the next slides.

  • I have installed the font Broadway on my computer and it works in Microsoft Word but does not appear in the font list in InDesign.  How can I fix this problem?

    I have installed the font Broadway on my computer and it works in Microsoft Word but does not appear in the font list in InDesign.  How can I fix this problem?

    Start by rebooting the computer. If that doesn't work, search for adobefnt*.lst and delete all instances where * becomes a 2-digit number.

  • Epson r800 prints, but does not appear in Printer List: can't use Utilities

    My Epson r800 prints, but does not appear in Printer List. It is connected via USB to the iMac. A Brother LH-2070N is connected via AirPort Extreme. I need to use Utilities to clean the head of cartridge, check levels, etc.. Is there a way to fix this problem?
    iMac   Mac OS X (10.4.9)  

    For your Epson try this:
    Hard Drive, Library, Printers (folder), Epson folder,
    Inkjetprinter folder, Utilities folder and here you
    will find Epson Printer Utility2. Click on it and it
    should work.
    Note. Epson utilities will not work unless the
    Printer is directly connected to the computer.
    Had the same issue with my 2200 photo and the above
    worked.
    Tried again after reinstalling the drivers. There is no separate Inkjet Folder, but the Printer Utility is within the Epson folder. Unfortunately, the r800 still does not appear in the Printer List, hence no utility.

  • Field on manual tabular appears using Firefox but does not appear using IE

    Hello,
    A field in a manual tabular form appears correctly using Firefox but does not appear or appears in another field when IE is used. Javascript is used to hide certain columns on the tabular form. Does anyone know how to solve this problem?
    Thanks pany

    Prabodh,
    The select for the report and the javascript that is used to hide the columns are displayed below. The data for Apex_item.select_list_from_lov(12,null,'LOV_METHOD_OF_ACQ') is shown in the previous column, Date Acquired, and the column for Method Acquired is blank. It appears correctly in Firefox. Please let me know if this is sufficient.
    Thanks,
    pany
    SELECT
    apex_item.hidden(1, c011) status
    ,apex_item.checkbox(2,seq_id) checkbox
    ,apex_item.hidden(3, seq_id) seq_id
    ,apex_item.hidden(4,c001) Owner_Firm_Id
    ,apex_item.hidden(5,c002) Owner_Id
    ,apex_item.hidden(6,c003,10) First_Name
    ,apex_item.hidden(7,c004,10) Last_Name
    ,apex_item.text(8,c005,10) Number_Shares
    ,apex_item.text(9,c006,10) Percentage
    ,apex_item.text(10,c007,10) Class
    ,apex_item.date_popup(11,rownum, c008, 'MM/DD/YYYY',15) Date_Acquired
    ,apex_item.select_list_from_lov(12,c009,'LOV_METHOD_OF_ACQ') Method_Acquired
    ,apex_item.hidden(13,c010,10) Primary_Key
    FROM apex_collections
    WHERE collection_name= 'INTEREST_STOCK_COLL'
    AND c011 IN ('O','N','U')
    union all
    select
    apex_item.hidden (1,null) status
    ,apex_item.checkbox(2, null) checkbox
    ,apex_item.hidden(3, null) seqid
    ,apex_item.hidden(4,null,10) Owner_Firm_Id
    ,apex_item.hidden(5,null,10) Owner_Id
    ,apex_item.hidden(6,null,10) First_Name
    ,apex_item.hidden(7,null,10) Last_Name
    ,apex_item.text(8,null,10) Number_Shares
    ,apex_item.text(9,null,10) Percentage
    ,apex_item.text(10,null,10) Class
    ,apex_item.date_popup(11,1, null,'MM/DD/YYYY',15) Date_Acquired
    ,apex_item.select_list_from_lov(12,null,'LOV_METHOD_OF_ACQ') Method_Acquired
    ,apex_item.hidden(13,null,10) Primary_Key
    FROM dual
    Javascript
    function hideCols(p_startOfTable, p_pageList, p_debug)
              alert("in function");
              var outStr = "Blanking Script:\n";
    var debug = p_debug;
    var offCols = p_pageList.split(":"); //string comes in colon delimited, split it
    into array
    var tbl = document.getElementById(p_startOfTable); //get the table from the page
    html source
    var rows = tbl.getElementsByTagName('tr'); //get the first row
    var tds = tbl.getElementsByTagName('td');
    var testStr;
    outStr = outStr + "START tds length is " + tds.length + "\n";
    if (debug)
    alert(outStr);
              //START Clear Headers
    var i, j, cells;
    cells = rows[0].getElementsByTagName('th'); //get the headers
    for (j = 0; j < offCols.length; j++)
    cells[j].className = "hidden";
    outStr = outStr + "i is " + i + " HEADER rows.length is " + rows.length +
    "\n";
    if (debug)
    alert(outStr);
    //END Clear Headers
              //START Clear TDs
              for (i = 0; i < tds.length; i++)
    var attrib = tds.innerHTML;
    var gNum = attrib.indexOf(" name=") + 7;
    var colNum = attrib.substr(gNum, 2);
    colNum = parseFloat(colNum);
    for (j = 0; j < offCols.length; j++)
    if (debug)
    testStr = testStr + "\n" + "colNum is: " + colNum + " className is: " +
    tds[i].className + " i is: " + i + " j is: " + j + "\n";
    if (colNum == offCols[j])
    if (debug)
    alert("colNum is " + colNum);
    if (tds[i].className == "datepicker")
    if (debug)
    alert("caught condition with i= " + i);
    tds[i - 1].className = "hidden";
    tds[i].className = "hidden";
    tds[i + 1].className = "hidden";
    //add popupLOV functionality here
    //add radio button functionality here
    // add other items that may have multiple <td>
    else
    //regular hideCol
    tds[i].className = "hidden";
              //END Clear TDs
    if (debug)
    alert(testStr);
    //document.write(testStr);
    Edited by: PANY on Aug 12, 2010 8:25 AM

  • Reader XI (11.0.09) sometimes starts process but does not appear in applications or open on desktop

    On windows 7 64-bit. Reader XI (11.0.09) sometimes starts the process but does not appear in the applications. This happens however the application is started i.e. start menu, double click pdf, double click AcroRd32.exe. It

    11.0.09 is hanging for us - backing out to 11.0.08 fixes the issue

  • Image src dialog box does not appear

    Hello,
    For some reason when I click the insert image button in
    dreamweaver cs3, the image src dialog box does not appear any more.
    It now just inserts <img src="" />. It used to allow me to
    choose an image, anyone know how to fix this? Thanks,
    Jasontor

    No idea....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "jasontor" <[email protected]> wrote in
    message
    news:go785j$ja0$[email protected]..
    > Anyone?

  • √using successfully airport express for internet/ when hooking up new airport extreme light glows green, but does NOT appear in devices seen????airport wifi devices

    using sucessfully airport express for internet
    when hooking up new airport extreme light glows green, but does NOT appear in devices sesn in 5.6 airport wifi devices
    wanting to use extreme at base and express in another part of the house

    How is the express getting internet? What modem is it plugged into?
    How is the extreme setup? New extreme cannot be setup with 5.6 utility.. you must use latest 6.3. Which also means you cannot setup from computer using less than Lion .. or you must use iOS with latest utility but it has limited configuration cf the computer version.
    IPv6 is also needed.. turn on local link.

  • IF YOU HELP MY NANO upgraded when you install PERFECT BUT DOES NOT APPEAR ON THE SCREEN NOTHING BUT as if you were OFF if turned PLEASE HELP OR MORE AND HAS THE NEW UPDATE

    IF YOU HELP MY NANO upgraded when you install PERFECT BUT DOES NOT APPEAR ON THE SCREEN NOTHING BUT as if you were OFF if turned PLEASE HELP OR MORE AND HAS THE NEW UPDATE

    iPod not recognized in 'My Computer' and in iTunes for Windows

  • The Power Supply Fan is still working, but does not appear to respond to increased loads, and its speed cannot be increased using SMCFanControl. Any suggestions?

    Hi all - My mac pro 1,1 has an enigmatic problem. It's quad-core, 3Ghz, running OS X 10.7.5. The problem began some months back, when running HD video conferences, HD streaming videos and some other graphics-moderate (I won't say intense) uses, such as slide shows in Just Looking. My machine has an ATY, RadeonX1900 card and 2 monitors - both Apple displays, one being 30 inch 2560x1600, the other being 24 inch 1920x1200.
    When I start those types of graphics-moderate apps, after about 5 minutes, something would crash (the monitors making a noise as it did) and the displays would both go black. The power did not appear to be fully cut off from the monitors. I think that the underlying applications, however, did not crash. So, I could still hear and speak to people during video conferences, and I could hear the sound tracks of videos.
    Attempts to restart the computer and get the monitors back did not immediately work to undo the problem, if done straight away. The only way to correct the problem (so as to have the monitors work) was to wait for a few minutes and then restart.
    After a lot of puzzled looking at console logs (and I confess that I am not an expert), I ran into a blank.
    But, because of the timing of the crashes (after ~5minutes use) and restarts (after some minutes wait), I reasoned that the problem might be temperature related.
    Once on that path of thought, I found this article:
    http://worldtv.com/blog/guides_tutorials/fixing_an_overheating_mac_pro_no_expens e_required.php
    I installed both Temperature Monitor and SMCFanControl. And I experimented, and got interesting results:
    Now to the puzzling bit: SMCFanControl shows that the speed of the Power Supply Fan doesn't vary much, even if I use SMCFanControl to ramp fan speeds right up. All of the other fans react to SMCFanControl, going up to and above 2500rpm when commanded. But the Power Supply Fan does not.  Having watched it for a few days now, the Power Supply Fan, according to AFCFanControl, never varies outside of a range from about 600-640 rpm, regardless of what I do with AFCFanControl.
    Also (and not surprisingly), whenever the graphics-moderate apps run, when I ramp all the fan speeds up using SMCFanControl, Temperature Monitor shows that the all of the temperatures within the machine plummet, except in the power supply locations. Power Supply Location 2 is the worst affected. Because the Power Supply Fan does not react as the other fans do, the "crashes" still occur.
    I could post some screen shots of the read outs of SMCFanControl and Temperature Monitor, although I think I have covered the key points in this post.
    It seems that the Power Supply Fan is still working, but does not respond to increased loads.
    Instinctively, I'm worried that if that's right, it might be a hard problem to fix. Any suggestions? Help! I would really appreciate them!
    Cheers
    P

    Thanks for your response Grant. I had already read about, and I think excluded, dust in graphics card/fan/assembly as a cause. The entire inside of the computer, including the graphics card/fan/assembly, is as clean as a whistle. It looks clean. I've cleaned the dust out every now and then (including a few days ago). Also, my undersanding (derived from the article, linked in my first post) is that I might expect to see high temperatures in the Northbridge and memory module B if the graphics card was overheating. According to Temperature Monitor, however, locations do not increase in temperature when I run the relevant apps. Finally, the graphics card/assembly does not feel too hot to touch.
    It is strange that SMCFanControl lists the Power Supply Fan as being software controllable, if that fan is not. Still, your comments are consistent with my observations, as the fan simply does not respond to software control.
    There are two upsides: First, I've something of a work-around. I've worked out what temperature must be achieved in Power Supply Location 2 for a crash to occur, and I can watch that location in Temperature Monitor, terminating the process before that treshold is reached. Of course, that's not ideal. Second, ramping all the other fans up does significantly delay the onset of the problem, and makes recovery time much quicker.
    Is there any donwside to peridically ramping up the other fans when running the relevant apps? Given that it causes all of the other locations to cool significantly, could this lessesn the life expecancy of the mahcine? (I don't want to run the fans up all the time - that's like sitting next to a jet ready for take off!)
    Also, a correction to my first post: Yesterday, with all the other fans running on full and running an HD streaming video, the Power Supply Fan did, eventually, slowly, come up to ~740rpm, which is much higher than the ~640rpm maximum I had previously seen, and this may have aided delaying the onset of the problem. 
    I'm not sure where this leaves me? The problem might now be able managed. Well, sort-of. But it's not eliminated.

  • HT201343 I am trying to stream a video from U-tube on to my TV using my apply T.V. The airplay icon appears on my i-tunes but not on u-tube. It does stream on to my T.V using i-tunes so I take it it does have airplay, but does not appear n display menu. H

    Airplay works on I-tunes but not on sites where you might want to stream, such as U-tube. It does not appear on my display menu settings, but as i-tunes as the icon I am thinking the computer must have the capability. Can anyone help, how to I turn airplay on so I can stream using my apple TV. I am sure as I-tune is working I have everything set up right.

    Mirroring requires OSX 10.8 or higher.
    Just use the YouTube app on the ATV.

  • Form sends but does not appear to send

    Hello
    I have a small problem with the online form I have. When the
    site visitor sends the form (by clicking submit) the form is
    received by the Webmaster, but it does not
    appear to have been sent to the site visitor. That is, all
    the details, name, email, etc remain in place in the online form
    after the submit button has been clicked.
    I am posting this here because I think the form processing
    aspect of my query works fine, so I assumed this was a Flash
    problem. I am using Flash MX 2004.
    This the relevant part of my AS:
    var serverLang:String = "asp";
    var email_lv:LoadVars = new LoadVars();
    email_lv.onLoad = function(success) {
    if (success) {
    if (email_lv.server_mes == "ok") {
    status_txt.text = "Thank you, " + name_txt.text;
    } else {
    status_txt.text = "Sorry, your message was not sent";
    submit_btn.onRelease = function() {
    email_lv.sendAndLoad("fla.asp", email_lv, "POST");
    Thanks.
    Steve

    At the moment your code is only set up to display a message
    and not to blank out any input fields etc.
    I presume some onChanged handlers for the input fields change
    the values in email_lv or perhaps some enterFrame loop etc.
    You would normally do things either in the submit_btn handler
    or email_lv.onLoad handler to hide or remove the input fields.
    So you would need code to do that part.
    If you mean something else, for example that the
    if (success) { (etc)
    part of your code is not executing after the form has been
    successfully processed on the server (And the message "Sorry your
    message was not sent" is being shown instead)
    In that case, perhaps your server script is not returning the
    expected value. All you need do in that case is have the asp script
    return "server_mes=ok" in the body of the response. That will give
    the LoadVars a return value to work with instead of nothing and
    then the (success) branch of your code should execute .

Maybe you are looking for