Help! Menu 1 : No Background Image defined, use default blank image!

I've compressed my video and then imported the assets into dvd sp When I click on inspector I can see it in the Browse clip window etc. BUT when I burn I get the following and nothing on my disc. What am I missing? [email protected]
Starting DVD Build UNTITLED_DISC...
Compiler Initializing...
Precompiling Project UNTITLED_DISC
Compiling VMG Information...
Created 7 PGCs in VTSM1
Created 8 PGCs in VMG.
1 Menu(s) will be created...
Compiling Menu PGCs...
Compiling Menu#1 (Menu 1)...
Menu 1 : No Background Image defined, use default blank image!
Menu 1 : No Buttons defined!
Writing VIDEO_TS.VOB
1 VTSs and 1 Titles will be created...
Compiling VTS#1 (Track 1)...
Muxing VTS011.VOB
Done.
Linking VMG...
Linking VTS#1...
Writing VTS#1...
Writing VMG...
Writing Layout Info...
Compile Completed Successfully
Warning: The file ‘UNTITLED_DISC.layout’ found in the VIDEO_TS or HVDVD_TS folder will not be included in the final disc.
Warning: The file ‘VOB_DATA.LAY’ found in the VIDEO_TS or HVDVD_TS folder will not be included in the final disc.
  Mac OS X (10.3.9)  

Hey Kellbone
this just means that you left your menu in your project, but you didnt delete it.
seems that you just made yoru first play the movie.
if you delete your menu, then you will not get that error.
all this error means is that you did not define either buttons or a sub-picture!
i get this error all the time with my static FBI warnings that i put in menu space, not on a VTS.
this is NOT a fatal error, so dont worry about it. it's more like a "HEY silly, you forgot to make buttons or put a sub-picture here!".
Mikey m.

Similar Messages

  • Help! I am trying to use the scripts image processor in Photoshop CC.

    Help! I am trying to use the scripts>image processor in Photoshop CC. When I click on it it comes up with an error saying that it cannot find the Javascript Plug In. I have the newest version of Java installed. How do I get it to work in Photoshop. Do I have to download a separate plug in? Any help would be greatly appreciated.

    Java is not Javascript.
    Do you have a Mac or PC?
    If PC, do you have this file on your system?
    C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Required\Plug-Ins\Extensions\ScriptingSupport.8li
    If not, you've got a corrupted installation of Photoshop.  Uninstalling and reinstalling may help.
    -Noel

  • Get image invoke method gives blank image when I try to capture waveform graph picture

    Hello
    I am facing problem when try to capture waveform graph picture using invoke method Get image and write JPEG function, some times it gives blank images.I am using these functions inside nested loops.
    ObservationsWith reference to attached VI)
    (1) Sometimes  I found it captures images correctly when i run labview program first time but after that it starts writing blank images.
    (2) Whenever i use flat sequence structure for waveform graph and get image node it always gives blank picture which indicates that execution of waveform graph and Get image should not be sequential.
    (3) Whenever it gives blank image i checked the image data which is not valid data so it indicates problem is with Get image method or labview program flow(may be race condition between waveform graph and Get image method).
           I have attached vi ,please change path name and folder name in which images are being saved.I'm using labview 8.5.1 .
    Attachments:
    image_capture_problem.lvproj ‏6 KB
    image capture problem.JPG ‏149 KB
    0.0_10__3.jpg ‏2 KB

    Hi,
    I have tried sequence structure.But sometimes it also gives blank images. I have attached new vi which is using flat sequence. Run this vi 7-8 times then you will observe blank images. I don't know why?Any help will be greatly appreciated.
    Attachments:
    image_capture_problem.vi ‏69 KB

  • We want display image by using plsql but image is not display properly

    DECLARE
    p_dir varchar2(100):='/prd/rcms/test/bala_test/';
    p_file varchar2(100):= 'sam.png';
    dest_dir varchar2(100):='/prd/rcms/test/bala_test/';
    dest_file varchar2(100):='test_image.html';
    dest_handle UTL_FILE.file_type;
    p_clob CLOB;
    l_bfile BFILE;
    l_step PLS_INTEGER := 2074;
    v_string varchar2(4000):='';
    BEGIN
    dbms_output.put_line('Encoding starts');
    l_bfile := BFILENAME('BFILE_DIR', p_file);
    dbms_output.put_line('File is going to open');
    DBMS_LOB.fileopen(l_bfile, DBMS_LOB.file_readonly);
    FOR i IN 0 .. TRUNC((DBMS_LOB.getlength(l_bfile) - 1 )/l_step) LOOP
    dbms_output.put_line('Inside encodeing');
    p_clob := UTL_RAW.cast_to_varchar2(UTL_ENCODE.base64_encode(DBMS_LOB.substr(l_bfile, l_step, i * l_step + 1)));
    p_clob := p_clob||v_string;
    dbms_output.put_line(p_clob||'<------------- '||i);
    END LOOP;
    dbms_output.put_line('Base64 encoded');
    p_clob:= '<img src="data:image.png;base64,'||p_clob||'" width="32" height="32">;
    dest_handle := UTL_FILE.fopen(p_dir, dest_file, 'w', 32767);
    UTL_FILE.put(dest_handle, p_clob);
    dbms_output.put_line(p_clob);
    DBMS_LOB.fileclose(l_bfile);
    dbms_output.put_line('Encoding ends successfully');
    exception
    when others then
    dbms_output.put_line('Error : '||SQLERRM);
    end;
    /

    972021 wrote:
    DECLARE
    p_dir varchar2(100):='/prd/rcms/test/bala_test/';
    p_file varchar2(100):= 'sam.png';
    dest_dir varchar2(100):='/prd/rcms/test/bala_test/';
    dest_file varchar2(100):='test_image.html';
    dest_handle UTL_FILE.file_type;
    p_clob CLOB;
    l_bfile BFILE;
    l_step PLS_INTEGER := 2074;
    v_string varchar2(4000):='';
    BEGIN
    dbms_output.put_line('Encoding starts');
    l_bfile := BFILENAME('BFILE_DIR', p_file);
    dbms_output.put_line('File is going to open');
    DBMS_LOB.fileopen(l_bfile, DBMS_LOB.file_readonly);
    FOR i IN 0 .. TRUNC((DBMS_LOB.getlength(l_bfile) - 1 )/l_step) LOOP
    dbms_output.put_line('Inside encodeing');
    p_clob := UTL_RAW.cast_to_varchar2(UTL_ENCODE.base64_encode(DBMS_LOB.substr(l_bfile, l_step, i * l_step + 1)));
    p_clob := p_clob||v_string;
    dbms_output.put_line(p_clob||'<------------- '||i);
    END LOOP;
    dbms_output.put_line('Base64 encoded');
    p_clob:= '<img src="data:image.png;base64,'||p_clob||'" width="32" height="32">;
    dest_handle := UTL_FILE.fopen(p_dir, dest_file, 'w', 32767);
    UTL_FILE.put(dest_handle, p_clob);
    dbms_output.put_line(p_clob);
    DBMS_LOB.fileclose(l_bfile);
    dbms_output.put_line('Encoding ends successfully');
    exception
    when others then
    dbms_output.put_line('Error : '||SQLERRM);
    end;
    /You are trying to output a clob using UTL_FILE.PUT which takes a varchar2 parameter, and thus has a limit of 32767 bytes. That could be problematic unless you know you are outputting less than 32K, in which case you should just store your data in a varchar2 in the first place.
    You could use multiple UTL_FILE.PUT statements in a loop outputting up to 32767 bytes at a time, though you have to flush the UTL_FILE buffer to ensure you don't exceed 32K before flushing.
    Alternatively, you can output CLOB data using some other techniques such as...
    DBMS_XSLPROCESSOR.clob2file(
      cl => p_clob
    , flocation => p_dir
    , fname => dest_file
    );However, it's not even clear if that is causing you a problem, as we don't have your data
    And for gawds sake, get rid of the stupid exception handler:
    exception
    when others then
    dbms_output.put_line('Error : '||SQLERRM);

  • Blank Image when using a gif image from a SQL Server Database

    Post Author: scsmith
    CA Forum: Publishing
    Hello,
    I'm trying to use a field from a SQL Server DB that has embedded GIF files. In Crystal Reports when I add the field to the report the picture is blank for every row. Any ideas?

    Post Author: kchiu
    CA Forum: Publishing
    i'm having the same issue. 
    I believe crystal doesn't support gif datatypes.
    I'm trying to either convert the images, or find a work around in crystal, but haven't found anything.

  • Need help with Image refreshing using the 1408

    I'm trying to develop a VI that allows user control over the image refreshing. In the end I would like something that allows the user to view a live or somewhat close to live image from the camera, and then when they desire freeze the image. The catch is I would also like the images to be color, and to allow the user to again view a live image if they wish.
    Essentially I want the user to be able to focus the camera and set light levels while viewing a live image on the screen (again flicker is ok, just as long as it has a decent refresh rate). And then when ready freeze the image and use the last image captured (the frozen one) for some analysis purposes.

    The simplest way to do this is to put the IMAQ Snap vi inside a while loop. Initialize your image and IMAQ outside the loop. Create an "Acquire" boolean control on your front panel. Put the Snap & display inside a case statement so that it only acquires a new image if the Acquire button is in the "On" position. This will give you a pretty smooth update rate and is very easy to program.
    If you want an update rate closer to the frame rate of the camera, you can set up an IMAQ Grab outside the loop, then read the latest image and display it in the case statement.
    Bruce
    Bruce Ammons
    Ammons Engineering

  • Copying member("aTextMemb").image into a rect in an image that uses alpha

    Hi all. I'm currently developping a strategy game with Director, and one of the things I've run into is that i want to update the number of units I have in a panel (on initial game setup) via 1) updating a text member that holds the number of units left to setup and copyPixeling the image onto the panel. This I've acheived except that since my text member image doesnt have alpha originally and the panel is semitransparent, a white (no matter the bckgrnd color I set for the text member) bounding box appears in the final result. I guess the way to go is duplicating the text member image and make it a 1 bit mask image then using the apropiate imaging lingo command (dont remember if it's copyPixels or another at this point). Imaging lingo is very interesting for me since normally I built all my aplications using the score directly (15 years exp with Director). This is my first game where I mostly rely on parent scripting and in some situations imaging lingo.
    This is currently the handler that does the job. It: 1) stores the image of the text member "panelCount" 2) defines the destinatiion rectangle where it will be copied in the panel bitmap and 3) copies it (but as I said the correct alpha is missing).
    on updateUnitsDisplay me
      member("panelCount").text= string(pPanelUnitCount)
      -- we retrieve the image of the text member that stores how many units left in the panel
      _textImage= member("panelCount").image 
      bottomMargin= 20 -- distance from the bottom of the panel that we want the text to be
      _left= (sprite(me.spriteNum).width- _textImage.width)/2
      _top= sprite(me.spriteNum).height- bottomMargin- (_textImage.height/2)
      _right= _left+ _textImage.width
      _bottom= _top+ _textImage.height
      destRect= rect(_left, _top, _right, _bottom)
      pPanelMember.image.copyPixels(_textImage, destRect, _textImage.rect) 
    end updateUnitsDisplay
    Your proposals and thoughts are welcome (specially good ones )
    EDIT: I've said above that my textImage wouldnt have alpha originally. Well, i think that was wrong according to what I've found in he scripting dictionary under the image() section "When you create a new image object, the background color defaults to white (color(255,255,255)), and the alpha channel is completely opaque (color(0,0,0))."
    On the other hand, the paramList in the copyPixels command should do it I think (a matte can be defined, also and ink mode for the copied pixels can be used although my first experiments have not worked yet).

    I think I got it. The paramList in the copyPixels command has been enough to get rid of the white box around the text (using #ink: 36 which is bckgrnd transparent in it), the problem was that I was using the same white for foreground and background colors in the text member (been some time not using director and misplaced the false white I used to use in these cases in the color selector). Bottom line, dont use exact same color values for back and fore colors of the text member. I've observed also that using the alpha of the image (useAlpha= true) makes it well antialiased while not using the alpha does produces a bad image of the text (btw, the font of the text is an inserted text media element of course). I keep investigating

  • Disable default NetBoot image?

    Is there a way to disable default NetBoot images so that none will automaticly start, yet keep the NetBoot Service active? I'm setting up OS X server and need NetBoot to serve up a Diagnostic image to boot from. However I also currently have JAMF running off a seperate Ubuntu box serving up NetBoot to distribute configurable Mountain Lion images to set up new machines in an enterprise enviornment, and I don't want to interfere with that.
    In otherwords I want the use experience to be such where if you hold down "N" the Mac will connect to the JAMF server automaticly, but if you hold down Option, you can see the other network images to access from the seperate OS X Server.
    I'm gearing up to install the new server soon, and wanted to come prepared for the initial configuration before hand.
    Thanks in advance!

    While it is possible to set a default image on the server, there is no requirement that you have one. If you simply never define an image as default, you shouldn't have a default image.
    If you have an image defined as default, you will have to disable it by manually editing its NBImageInfo.plist and setting the IsDefault key to <false/>.

  • HT3204 I think this is out of date.  The "Run Diagnostics" option is no longer available in the itunes help menu.

    Does anyone know where the new access point to itunes diagnostics is?

    It's still there on Windows systems. But first (if you're using iTunes versions 11.0.x) you might need to bring up the menu bar to see the Help menu.
    If you're using 11.0.x, click on the wee boxy icon up in the top-left corner of your iTunes to see the "Show Menu Bar" control, as per the following screenshot:

  • N97 bug 95% of time uses default ringtone when loc...

    this bug is still there in new firmware.. and it has nothing to do with the image size or ringtone.. i have gone in via file manager and set the ringtone to a file on the c: drive.   and even when i get calls from people not in my phone book so it is not trying to load any images (except the default caller image which is also on my c drive) it plays the wrong ringtone.. mostly appears to be when locked which is most of the time since it autolocks and i lock it so that when in the case no buttons are accidentially pushed.. this needs to be fixed asap
    thanks..
    is it only me having this problem.. and i did a reset so dont start saying thatl.

    I do not have the problem.
    I use MP3's as ringtones. I got a huge package of thepiratebay.org with like 900 ring tone mp3's.
    I added photos, taken with camera and / or transfered from PC to most of my (often in use) contacts, and it works perfectly with both incomming and outgoing calls.
    I have the
    "Software version V 10.0.012"
    "Software version date" 15-05-2009"
    "Custom version 10.0.012.254.01"
    "Custom version date 27-05-2009"
    "Language set 33"
    "Model N97"
    "Type RM-505"
    I can for some reason not upgrade to V11 firmware. I have no clue why, i am just toeld V10 is the most recent.
    Replaced my buggy Nokia N97 with a HTC Hero.
    Besides the camera and the real keyboard the HTC Hero pawned the N97 on every level.

  • Need help on defining a default font in a JTextPane

    Hi, I'm currently programming a HTML Editor and I'm stuck with a problem I don't know how to solve:
    I have defined a default logical style for my JTextPane.
    I decided to set the font to "Arial". So here is how it goes:
    import javax.swing.text.StyleContext;
    import javax.swing.text.Style;
    Style styDefault = StyleContext.getDefaultStyleContext().getStyle(StyleContext.DEFAULT_STYLE);
    StyleConstants.setFontFamily(styDefault,"Arial");
    //tpEditor is a JTextPane
    tpEditor.setLogicalStyle(styDefault);
    I have also bound a CaretListener to my JTextPane so that
    it get and output display showing the font family of the character over which the caret is positionned.
    Alright, here is how all this behaves :
    When I run my HTMLEditor (a JFrame) and I click on the JTextPane, I get this
    in the output : "Arial" . This is correct, that's what I expect the output to display, the problem is that when I start typing text,
    even though the caret listener keeps sending to the output "Arial" for every key that I press, the displayed
    text is not Arial text, instead,it is this default font called "dialog". This is the code that I use to display the font over which the caret is positionned :
    //Code inside a CaretListener extended class
    System.out.println(StyleConstants.getFontFamily(tpEditor.getCharacterAttributes()));
    Another strange behaviour is the following :
    If I select, let's say "Verdana" from my JComboBox, any further typed text or an already selected
    portion of text has its font set to Verdana. Displayed text and font name sent to the output by the caret
    listener really match this time ( I set the font using Actions that are bounded to buttons I added to my JComboBox)
    If I erase text, typing on the backspace key, and I get to the beginning of the line (the
    border of the JTextPane), the font (which was set to Arial) is set back to this default font called "dialog"
    that I don't know how to get rid off.
    Does any one have any clue about this issue ? Is there a sort of background font that can't be changed ? It
    seems awkward to me to have to manage an event for when I get to the beginning of the line. There has to be
    a way of getting control over the default font (or style) of my JTextPane and it's associated document (which
    happens to be a HTMLDocument for me).
    Any help would be really appreciated,
    thanxs,
    Diego TERCERO

    Good news! I found a way around our little roadblock. It's funny how, whenever I'm forced to post a request for an answer, I ALWAYS seem to find one myself! :)
    Anyhow, follow this link to my thread:
    http://forum.java.sun.com/thread.jsp?forum=57&thread=237075&start=0&range=15#858692
    Cut and paste it if the link ends up broken.

  • How do I set the default Hero image in a Muse slideshow widget when using Free Form Thumbnails?

    Hello,
    I am trying to find out how to set the default Hero image when using a Muse slideshow widget and in the Layout section I have the "Free Form Thumbnails"
    box checked.
    In other words, when the page loads I want to define which image displays as the first Hero image.
    If I do not select the "Free Form Thumbnails" option, the top left Thumbnail image always displays first. This is fine.
    But when I select the Free Form Thumbnails" checkbox I don't know how to define which image shows first as the Hero image.
    I have a short video at this link where I illustrate the question:
    http://amson.org/misc/default-hero-image-1.mp4
    I have added a WMV video file at the link below:
    http://amson.org/misc/default-hero-image-1.wmv
    Okay… I think I've worked out how to do it!
    [1] First have the "Free Form Thumbnails" box UNCHECKED.
    [2] Organize the Thumbnails and place the image that you want to be the first Hero image when the page loads in the top left corner of the Thumbnails group.
    [3] When you "Preview Site In Browser" the Thumbnail image in the top left corner will always display as the first Hero image.
    [4] If you want "Free Form Thumbnails" go ahead now and SELECT that checkbox.
    [5] Whichever image was in the top left of the Thumbnail group before you checked "Free Form Thumbnails" will still show up as the first Hero image when the page loads, regardless of where that thumbnail image is located within the Thumbnail images group.
    Thanks very much.
    Chris.

    Hi,
    The sequence of operation you are doing to set the home page for public users is correct. You are getting the login screen as the "custom page group" selected as "home page" has not been granted to public.
    Also, while logging-out, it is normal behaviour to get the screen where it shows the list of partner applications from where user has been logged-out. When you click on "Return" button, you will get to the "home page" set above.
    Hope it clarifies the things.
    Regards,
    Ved

  • What's the best way to save an 8.5 x 11 image for use as a page background in a PDF?

    What's the best way to save an 8.5 x 11 image for use as a page background in a PDF? My goal is to have a relatively small final .pdf file size that includes numerous pages with full 8.5 x 11 images as backgrounds in the document. If I save at 8.5 x 11 and 72dpi (example), the image is not 8.5 x 11, and the quality is not good enough. I need help with size, dpi, and file format to save as before I place it in InDesign and then save as a .pdf.
    Thanks,
    Jim

    Do exactly what I said then.  Create the InDesign document of the required dimension, and chose whether it will be high quality print, or Interactive PDF.  It really doesn't mater what format you bring the image into that document.  It can be JPG, PNG, but I usually use native Photoshop PSD.  The image does have to be of high enough resolution, but it can be many times bigger than iis required for the final export.  (InDesign does not import the image, but rather references it on your hard drive.)
    When you have placed your text and finished your page, then export it to PDF, but go through the tabs chosing suitable settings.  If the image needs to be downsized, InDesign will do that at this stage while building the PDF.
    If you can tell us how this presentation will be made (Projector, overhead projector, printed page etc. or just emailed to the end users) we can help you more with the final output settings. 

  • Spry Horizontal Menu Bar background image IE8 not visible.

    I have a slight problem with a horizontal menu bar that I have placed on my site and am hoping someone can help me. It views fine in Firefox, however in IE8 the top menu background image is white instead of the image I specified. Firefox image is below.
    Below is IE8 image lacking top menu background:
    I am a novice and this is driving me nuts. How can something view fine in Firefox and loose the image in IE explorer? I must have a code incorrect, I know it. Any  help is greatly appreciated.
    Thank you,

    At the bottom of SpryMenuBarHorizontal.css, you will find
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
    display: inline;
    f\loat: left;
    background-color: #FFF;
    Change the background colour to transparent and all is well.

  • Spry Horizontal Menu Bar background image

    Hello,
    I am trying to insert a .gif file into the background of the
    spry menu bar items, I believe the default was grey.
    I changed it to dark grey and it worked fine but then I
    decided it would look better with an image in it.
    Therefore I created a .gif image that fit the menu and
    inserted it into the css page for the spry menu.
    However, this creates the drop down (sub) menus to be
    transparent. This does not happen when I change the background back
    to just a solid color. Is there a way around this?
    The code that I entered was something like this:
    .(other style codes)
    background-color="#EC0000" url="images/image09" repeat-x;
    thanx

    At the bottom of SpryMenuBarHorizontal.css, you will find
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
    display: inline;
    f\loat: left;
    background-color: #FFF;
    Change the background colour to transparent and all is well.

Maybe you are looking for