Getting images to show in a BB entry

I made web galleries with some pics in them. When I make a post to a BB, I access the picture and get he url and add that to the IMG tool on the site. The pic does not show in my post but the url does and if I click t, the pic displays. How do I get the actual pic to show in my post as opposed to the url for it?

Oh, thank you. I will not do that in the future.
I am not entirely sure how I would use the getImage method in an Applet. I would prefer to just use the code that I have currently, unless the addition of making the program an Applet only adds a small amount of code. But then even still, I am not entirely sure what I would write in the .class file to make the images load. And then I would not really know how to properly incorporate the pss.java file and the .class file together so they read off of each other.

Similar Messages

  • Getting images to show in Apex that are stored in the DB

    I'm trying to get an image to show in html code or javascript that I store in the DB. It shows in an IR but I can't get it to show in a html <img> tag.
    My DB is an oracle XE 11 DB and I'm using Apex 4.
    This is my table:
    CREATE TABLE "MAP_IMG_POS"
    (     "ID" NUMBER(10,0),
         "ID_MAP_IMAGE" NUMBER(10,0),
         "ID_POSITION" NUMBER(10,0),
    "ID_SERVER" NUMBER(10,0),
         "CREATION_USER" VARCHAR2(255),
         "CREATION_DATE" DATE,
         "MODIFICATION_USER" VARCHAR2(255),
         "MODIFICATION_DATE" DATE);
    I added PK, triggers, sequence etc
    I insert the images using an Apex form.
    I found this procedure to get the images:
    create or replace
    PROCEDURE my_image_display(p_image_id IN NUMBER)
    AS
    l_mime VARCHAR2 (255);
    l_length NUMBER;
    l_file_name VARCHAR2 (2000);
    lob_loc BLOB;
    BEGIN
    SELECT MIME_TYPE, IMAGE, DBMS_LOB.getlength (image)
    INTO l_mime, lob_loc, l_length
    FROM map_images
    WHERE id = p_image_id;
    OWA_UTIL.mime_header (NVL (l_mime, 'application/octet'), FALSE);
    HTP.p ('Content-length: ' || l_length);
    OWA_UTIL.http_header_close;
    WPG_DOCLOAD.download_file (lob_loc);
    END my_image_display;
    and put it in my schema.
    I gave the following grants in my Shema:
    GRANT EXECUTE ON schema1.my_image_display TO PUBLIC;
    CREATE PUBLIC SYNONYM my_image_display FOR schema1.my_image_display;
    I created a html region and added the following code:
    <img src="#OWNER#.my_image_display?p_image_id=2"/>
    2 ofc being the id of one of the images.
    Yet when I load the page the image won't show. I do get a little icon when I right click it and check the code I just see:
    http://127.0.0.1:8080/apex/SCHEMA1.my_image_display?p_image_id=2
    Any ideas what I'm doing wrong? I'm also open for suggestions on other ways to do this..
    I appreciate all the help!

    After a long search and much much reading..
    Re: HTP.Print not working
    This finally helped me ;-)

  • Help with getting Images to show in a Rock, Paper, Scissors game

    Hi
    I am working on this Rock, paper, scissors java game and the program works, but I can not figure out how to get the images to load onto the program. So my question is how do I get the images to load up with the program? I am using JCreator for this project. I have created the Basic Java Application project, and then added in the 3 .java files that I need to run the program, but I just can not figure out how or where I need to upload the files. The game works without the images, but I would really like them to show up.
    This is the .java file that calls up the images:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class pss extends JPanel implements ActionListener, ItemListener
    private final Color clrBackground = new Color(163,243,255);
    private final Color clrForeground = new Color(0,0,0);
    private JComboBox cboxWeapon;
    private JTextField txtCPUWeapon, txtWins, txtLoses, txtDraws;
    private JLabel lblPlayerWeapon, lblCPUWeapon, lblWins, lblLoses, lblDraws, lblStatus, lblPlayerWeaponIcon, lblCPUWeaponIcon;
    private JButton cmdPlay, cmdReset;
    private ImageIcon[] imgWeapon;
    private JPanel panRoot, panPlayerArea, panPlayerWeapon, panCPUArea, panCPUWeapon, panStatusArea, panGo, panCounters, panWins, panLoses, panDraws;
    private pssEngine engine = new pssEngine();
    private objCreateAppletImage createImage = new objCreateAppletImage();
    private boolean errorWithImages = false;
    public static void main(String[] args) //With applications, you have to specify a main method (not with applets)
    JFrame.setDefaultLookAndFeelDecorated(true); //Make it look nice
    JFrame frame = new JFrame("Paper Stone Scissors"); //Title
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setResizable(false); //Stops the user resizing the window
    JComponent paneMain = new pss();
    paneMain.setOpaque(true);
    paneMain.setPreferredSize(new Dimension(420,350));
    frame.setContentPane(paneMain);
    frame.pack();
    frame.setVisible(true);
    public pss ()
    cboxWeapon = new JComboBox(engine.getWeapon());
    cboxWeapon.addItemListener(this);
    txtCPUWeapon = new JTextField(engine.getStrCPUWeapon(), 5);
    txtWins = new JTextField("0", 5);
    txtLoses = new JTextField("0", 5);
    txtDraws = new JTextField("0", 5);
    txtCPUWeapon.setEditable(false);
    txtWins.setEditable(false);
    txtLoses.setEditable(false);
    txtDraws.setEditable(false);
    lblPlayerWeapon = new JLabel("Choose your weapon", JLabel.CENTER);
    lblCPUWeapon = new JLabel("The CPU's weapon", JLabel.CENTER);
    lblWins = new JLabel("Amount of wins:", JLabel.RIGHT);
    lblLoses = new JLabel("Amount of loses:", JLabel.RIGHT);
    lblDraws = new JLabel("Amount of Drawss:", JLabel.RIGHT);
    lblStatus = new JLabel("", JLabel.CENTER);
    lblPlayerWeaponIcon = new JLabel("", JLabel.CENTER);
    lblCPUWeaponIcon = new JLabel("", JLabel.CENTER);
    lblPlayerWeaponIcon.setPreferredSize(new Dimension(150,150));
    lblCPUWeaponIcon.setPreferredSize(new Dimension(150,150));
    cmdPlay = new JButton("Go!");
    cmdReset = new JButton("Restart");
    cmdPlay.addActionListener(this);
    cmdReset.addActionListener(this);
    try
    imgWeapon = new ImageIcon[3];
    for (int i = 0; i < 3; i++)
    imgWeapon[i] = createImage.getImageIcon(this, ".src/images/" + engine.getWeapon(i) + ".gif", "Icon for " + engine.getWeapon(i), 13000);
    lblPlayerWeaponIcon.setIcon(imgWeapon[0]);
    lblCPUWeaponIcon.setIcon(imgWeapon[0]);
    catch (Exception ex) //The game works without the images, so carry on
    errorWithImages = true;
    setLayout(new BorderLayout());
    panRoot = new JPanel(new BorderLayout());
    panPlayerArea = new JPanel(new BorderLayout());
    panPlayerWeapon = new JPanel(new BorderLayout());
    panCPUArea = new JPanel(new BorderLayout());
    panCPUWeapon = new JPanel(new BorderLayout());
    panStatusArea = new JPanel(new BorderLayout());
    panGo = new JPanel();
    panCounters = new JPanel(new GridLayout(3,1,2,2));
    panWins = new JPanel();
    panLoses = new JPanel();
    panDraws = new JPanel();
    add(panRoot, BorderLayout.CENTER);
    panRoot.add(panPlayerArea, BorderLayout.WEST);
    panPlayerArea.add(panPlayerWeapon, BorderLayout.NORTH);
    panPlayerWeapon.add(lblPlayerWeapon, BorderLayout.NORTH);
    panPlayerWeapon.add(cboxWeapon, BorderLayout.SOUTH);
    panPlayerArea.add(lblPlayerWeaponIcon, BorderLayout.SOUTH);
    panRoot.add(panCPUArea, BorderLayout.EAST);
    panCPUArea.add(panCPUWeapon, BorderLayout.NORTH);
    panCPUWeapon.add(lblCPUWeapon, BorderLayout.NORTH);
    panCPUWeapon.add(txtCPUWeapon, BorderLayout.SOUTH);
    panCPUArea.add(lblCPUWeaponIcon, BorderLayout.SOUTH);
    panRoot.add(panStatusArea, BorderLayout.SOUTH);
    panStatusArea.add(panGo, BorderLayout.NORTH);
    panGo.add(cmdPlay);
    panGo.add(cmdReset);
    panGo.add(lblStatus);
    panStatusArea.add(panCounters, BorderLayout.SOUTH);
    panCounters.add(panWins);
    panWins.add(lblWins);
    panWins.add(txtWins);
    panCounters.add(panLoses);
    panLoses.add(lblLoses);
    panLoses.add(txtLoses);
    panCounters.add(panDraws);
    panDraws.add(lblDraws);
    panDraws.add(txtDraws);
    panRoot.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
    setBackground(clrBackground);
    panRoot.setBackground(clrBackground);
    panPlayerArea.setBackground(clrBackground);
    panPlayerWeapon.setBackground(clrBackground);
    panCPUArea.setBackground(clrBackground);
    panCPUWeapon.setBackground(clrBackground);
    panStatusArea.setBackground(clrBackground);
    panGo.setBackground(clrBackground);
    panCounters.setBackground(clrBackground);
    panWins.setBackground(clrBackground);
    panLoses.setBackground(clrBackground);
    panDraws.setBackground(clrBackground);
    lblPlayerWeapon.setForeground(clrForeground);
    lblCPUWeapon.setForeground(clrForeground);
    lblWins.setForeground(clrForeground);
    lblLoses.setForeground(clrForeground);
    lblDraws.setForeground(clrForeground);
    txtWins.setForeground(clrForeground);
    txtLoses.setForeground(clrForeground);
    txtDraws.setForeground(clrForeground);
    txtCPUWeapon.setForeground(clrForeground);
    public void reset ()
    cboxWeapon.setSelectedIndex(0);
    lblStatus.setText("");
    engine.reset();
    public void actionPerformed (ActionEvent e)
    if (e.getSource() == cmdReset)
    reset();
    else
    lblStatus.setText(engine.play(cboxWeapon.getSelectedIndex()));
    txtCPUWeapon.setText(engine.getStrCPUWeapon());
    txtWins.setText(Integer.toString(engine.getWins()));
    txtLoses.setText(Integer.toString(engine.getLoses()));
    txtDraws.setText(Integer.toString(engine.getDraws()));
    if (!errorWithImages)
    lblCPUWeaponIcon.setIcon(imgWeapon[engine.getCPUWeapon()]);
    public void itemStateChanged (ItemEvent e)
    if (!errorWithImages)
    lblPlayerWeaponIcon.setIcon(imgWeapon[cboxWeapon.getSelectedIndex()]);
    }Here is the other .java file that calls on the Images:
    import java.awt.*;
    import java.io.*;
    import javax.swing.ImageIcon;
    public class objCreateAppletImage
    public void objCreateAppletImage ()
    //If an error occurs (or is thrown by me) it will be thrown to the next level up, and either caught or thrown
    public ImageIcon getImageIcon (Object parentClass, String path, String description, int fileSize) throws Exception
    int count = 0;
    BufferedInputStream imgStream = new BufferedInputStream(parentClass.getClass().getResourceAsStream(path));
    byte buff[] = new byte[fileSize];
    if (imgStream == null) //If doesn't exist
    throw new Exception("File not Found");
    try
    count = imgStream.read(buff);
    imgStream.close(); //Closes the stream
    catch (IOException ex)
    throw new Exception("Corrupt file");
    return new ImageIcon(Toolkit.getDefaultToolkit().createImage(buff), description); //Creates the image from the byte array
    }Could someone please help me? I really have no idea and I would like this to work.
    Thank you
    Frank

    Oh, thank you. I will not do that in the future.
    I am not entirely sure how I would use the getImage method in an Applet. I would prefer to just use the code that I have currently, unless the addition of making the program an Applet only adds a small amount of code. But then even still, I am not entirely sure what I would write in the .class file to make the images load. And then I would not really know how to properly incorporate the pss.java file and the .class file together so they read off of each other.

  • How to get images to show in browsers after upload Muse 4

    After installing the new Muse 4 I uploaded my new site. None of the images show up in any browser I have. How do I solve this problem. www.lindabrewster.com
    Thanks
    Linda

    It appears you figured it out as the images appear fine at your site.
    Thanks,
    Vinayak

  • Getting image to show

    i have a swing app where the user clicks on back and for buttons to navigate through a set of data.
    i want to have an image associated with each item. so that when the button is clicked, both the data and the image change accordingly.
    can someone help me out
    i am using a gridbag layout on my app if that makes any difference.

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.Image;
    import java.io.*;
    import java.net.URL;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    public class ImageData {
      static Image[] images = new Image[4];
      static {
        for(int i = 0; i < images.length; i++) {
          try {
            images[i] = ImageIO.read(new URL("file:images/T" + (i + 1) + ".gif"));
          catch(IOException ioe) {
            System.out.println(ioe.getMessage());
      static int dataCount = 0;
      public static void main(String[] args) {
        final JLabel[] dataLabels = {
          new JLabel("data item 1"), new JLabel("data item 2"), new JLabel("data item 3"),
          new JLabel("data item 4")
        final JLabel[] iconLabels = {
          new JLabel(new ImageIcon(images[0])), new JLabel(new ImageIcon(images[1])),
          new JLabel(new ImageIcon(images[2])), new JLabel(new ImageIcon(images[3]))
        GridBagLayout gridbag = new GridBagLayout();
        final GridBagConstraints gbc = new GridBagConstraints();
        gbc.weightx = 1.0;
        final JButton backButton = new JButton("back");
        final JButton forwardButton = new JButton("forward");
        JPanel northPanel = new JPanel(gridbag);
        northPanel.add(backButton, gbc);
        northPanel.add(forwardButton, gbc);
        final JPanel panel = new JPanel(gridbag);
        panel.add(iconLabels[0], gbc);
        panel.add(dataLabels[0], gbc);
        ActionListener l = new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            JButton button = (JButton)e.getSource();
            panel.remove(iconLabels[dataCount]);
            panel.remove(dataLabels[dataCount]);
            if(button == backButton) {
              dataCount--;
              if(dataCount < 0)
                dataCount = images.length - 1;
            else {
              dataCount++;
              if(dataCount > images.length - 1)
                dataCount = 0;
            panel.add(iconLabels[dataCount], gbc);
            panel.add(dataLabels[dataCount], gbc);
            panel.revalidate();
            panel.repaint();
        backButton.addActionListener(l);
        forwardButton.addActionListener(l);
        JFrame f = new JFrame();
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.getContentPane().add(northPanel, "North");
        f.getContentPane().add(panel);
        f.setSize(400,300);
        f.setLocation(400,300);
        f.setVisible(true);
    }

  • Can't Get Grub2 To Show Splash Images

    I have grub2 installed on i686
    And this is what I have so far;
    grub.cfg
    # Config file for GRUB2 - The GNU GRand Unified Bootloader
    # /boot/grub/grub.cfg
    # DEVICE NAME CONVERSIONS
    # Linux Grub
    # /dev/fd0 (fd0)
    # /dev/sda (hd0)
    # /dev/sdb2 (hd1,2)
    # /dev/sda3 (hd0,3)
    # Timeout for menu
    set timeout=5
    # Set default boot entry as Entry 0
    set default=0
    # (0) Arch Linux
    menuentry "Arch Linux" {
    set root=(hd0,3)
    linux /boot/vmlinuz26 root=/dev/sda3 ro
    initrd /kernel26.img
    # (1) Arch Linux
    menuentry "Arch Linux 2.6.36.1" {
    set root=(hd0,3)
    linux /boot/vmlinuz-2.6.36.1 root=/dev/sda3 ro
    initrd /boot/kernel-2.6.36.1-ARCH.img
    # (2) Arch Linux
    menuentry "Arch Linux Fallback" {
    set root=(hd0,3)
    linux /boot/vmlinuz26 root=/dev/sda3 ro
    initrd /boot/kernel26-fallback.img
    ## (1) Windows
    menuentry "Windows" {
    set root=(hd0,0)
    chainloader +1
    /etc/default/grub
    # If you change this file, run 'update-grub' afterwards to update
    # /boot/grub/grub.cfg.
    GRUB_DEFAULT=0
    GRUB_TIMEOUT=15
    GRUB_DISTRIBUTOR="Arch Linux"
    GRUB_CMDLINE_LINUX_DEFAULT="quiet"
    GRUB_CMDLINE_LINUX=""
    # Uncomment to enable Hidden Menu, and optionally hide the timeout count
    #GRUB_HIDDEN_TIMEOUT=5
    #GRUB_HIDDEN_TIMEOUT_QUIET=true
    # Uncomment to disable graphical terminal
    #GRUB_TERMINAL=console
    # The resolution used on graphical terminal
    # note that you can use only modes which your graphic card supports via VBE
    # you can see them in real GRUB with the command `vbeinfo'
    #GRUB_GFXMODE=1024x768x24
    # Uncomment to allow the kernel use the same resolution used by grub
    #GRUB_GFXPAYLOAD_LINUX=keep
    # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
    # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
    #GRUB_DISABLE_LINUX_UUID=true
    # Uncomment to disable generation of recovery mode menu entries
    #GRUB_DISABLE_LINUX_RECOVERY="true"
    # Uncomment and set to the desired menu colors. Used by normal and wallpaper
    # modes only. Entries specified as foreground/background.
    GRUB_COLOR_NORMAL="light-blue/black"
    GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
    # Uncomment one of them for the gfx desired, a image background or a gfxtheme
    #GRUB_BACKGROUND="/boot/grub/arch.png"
    #GRUB_THEME="/path/to/gfxtheme"
    # Uncomment to get a beep at GRUB start
    #GRUB_INIT_TUNE="480 440 1"
    /etc/grub.d/40_custom
    #!/bin/sh
    exec tail -n +3 $0
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    if loadfont /usr/share/grub/unicode.pf2 ; then
    set gfxmode="800x600x24"
    insmod gfxterm
    insmod vbe
    terminal_output gfxterm
    if terminal_output gfxterm; then true ; else
    terminal gfxterm
    fi
    fi
    insmod tga
    background_image /boot/grub/arch.tga
    Before I wasn't using anything in /etc/grub.d/40_custom and just editing the /etc/default/grub but nothing is working I can'tget an image to show up. Any help getting this thing would really be appreciated.
    THANKS
    Last edited by DasFox (2010-11-25 07:45:42)

    naguz wrote:
    Well, then you most likely  ditched it because you made a mistake.
    grub-mkconfig -o /boot/grub/grub.cf is supposed to write a completely new grub.cfg based on the scripts and /etc/default/grub file. So of course anything you had edited in the grub.cfg directly got lost when you did that. It din't screw it up, it replaced the file like it should.
    If the result didn't work, then something was probably wrong somewhere else in your config files.
    I know how to use Grub I've been using Grub for as long as it's been around and I've also used Grub2 just fine on other distros without a problem.
    I didn't screw anything up and I left the config file alone also and edited it in the /etc/grub path I believe it is, like you are suppose to...
    The simple truth is there was a problem with UUID, so I tried to disable that also in the config;
    GRUB_DISABLE_LINUX_UUID=true
    But this didn't work and it just had a bug I didn't feel like dealing with so I dumped it, anyhow like I said I'm using legacy just fine...
    Don't assume next time that something is wrong, people are screwing things up...
    P.S. Let the post rest it's over and I'm using Legacy so no need to revive it...

  • When browsing a new library that I created, the browser shows dotted lines around grey rectangles, no images. When I double click on a rectangle the image appears. How do I get images to appear in the browser rectangles?

    When browsing a new library that I created and exported onto an external hard drive, the browser shows dotted lines around grey rectangles, no images. When I double click on a rectangle, the image appears, but all the other rectangles remain empty - no image. How do I get images to appear in the browser rectangles? I am viewing this on a second computer (an older intel duo iMac), not the one I created the library on (a MacBook Pro). Both computers have Aperture 3.2.4 installed. When I return the external to the MacBook, all images appear in browser rectangles. What's happening on the iMac?

    You may have a problem with the permissions on your external volume. Probably you are not the owner of your library on the second mac.
    If you have not already done so, set the "Ignore Ownership on this Volume" flag on your external volume. To do this, select the volume in the Finder and use the Finder command "File > Get Info" (or ⌘I).
    In the "Get Info" panel disclose the "Sharing & Permissions" brick, open the padlock, and enable the "Ignore Ownership on this Volume" flag. You will have to authentificate as administrator to do this.
    Then run the "Aperture Library First Aid Tools" on this library and repair the permissions. To launch the "First Aid Tools" hold down the ⌥⌘-key combination while you double click your Aperture Library. Select "Repair Permissions" and run the repair; then repeat with "Repair Database". Do this on the omputer where you created the library and where you can see the thumbnails.
    Then check, if you now are able to read the library properly on your iMac.
    Regards
    Léonie

  • I just installed Yosemite.  Notifications Center will not show ICal entries that were on my ICal at time of installation.  How do I get events to show in Notification Center?

    I just installed Yosemite.  Notifications Center will not show ICal entries that were on my ICal at time of installation.  How do I get events to show in Notification Center?

    Submit your feedback requesting this feature directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback

  • Adobe Web Gallery- can't get more than 10 images to show up

    I am trying to create a Web Gallery from within Bridge (CS4), but I'm not having any luck getting more than 10 images to show up when I create the Gallery, even though I'm selecting nearly 50 images (all in the same folder) that I'd like to be in the Gallery. Does anyone know if there's a limit to the number of images that can be used in an AWG? I can't seem to find ANY documentation that sheds light on that subject. All I know is that no matter WHAT I do, I can only get Bridge to create a Gallery with TEN images!! Very frustrating. Any help will be greatly appreciated.

    Assuming the obvious that in Bridge content panel you have selected all the
    files you want in the web galery
    First try a purge cache for folder using the menu Tools/purge cache for
    folder when having Bridge pointed to the problem folder.
    Second try a reset preferences with option key while restarting Bridge.
    I wish that were the case - it's only outputing up 10 images...

  • In Finder how do I get iTunes to show bit rate and sample rate of an entry?

    In Finder how do I get iTunes to show bit rate and sample rate of an entry so I can set my DAC?

    TonyEyes wrote:
    In Finder how do I get iTunes to show bit rate and sample rate of an entry so I can set my DAC?
    Tony, Make sure you are in Songs view.  Then View > Show View Options, and check the boxes for "Bit Rate" and "Sample Rate."  See picture:

  • How do I get Finder to show thumbnail icons of symlinks to images?

    For some reason, even when I have icon preview enabled, instead of showing the thumbnail of the image, it shows a generic JPG icon with an arrow.  This is really frustrating because I need to be able top see thumbnails of all my images at once, so I can quickly select files for acting on.  And just to be clear, all the images in the directory are symlinks to the original images.  I can't browse by the original images because I am using symlinks for organizational reasons.

    I am porting an image matching program from windows, which has a similar need; to show images which are similar to eachother via symlink or  windows shortcut.
    The data to show a preview of a linked image is readily available to the operating system.
    There should be absolutely no need for a 3rd party app.
    It works seamlessly and effortlessly under windows.
    It is a ridiculous shortcoming by Apple that this functionality is not available.
    (also, @barney, an alias is not the same as a symlink.)

  • Spry Bug? Background Colors/Images not showing in IE6/XpP

    I'm trying to wrap up my site for MiniMAX SE7EN (Cheap plug,
    it's on 6/26 in DC) and I've got a Spry Accordion Component I used
    in Dreamweaver CS3 to display all the speakers and then I switched
    the CSS file to allow for different colors and a background image
    to show through. Seems fine in Firefox and IE7 but in IE6 for PC's,
    it appears black and only black. Is this a Spry bug or something I
    screwed up with regarding the CSS?
    http://www.minimaxconference.com/

    I am having the same problems in IE7. I'm using the latest
    version of everything (Spry 1.6.1 and javascript file version 0.12)
    and at first I was having the problem on my drop down menus
    appearing horizontal with all the correct styles but when I changed
    the rule ul.MenuBarHorizontal ul to position: relative; the drop
    downs appear vertical now but I have no beige border around the
    whole ul anymore and I'm getting white space inbetween list items.
    http://www.wusf.usf.edu/Header_Nav_Footer_newStyleSheet.cfm
    so if anyone has any advice I'd much appreciate it. Also i'm
    using 1px width on my borders no decimals.

  • When a tab is close, firefox next shows the tab to the right. How do I get firefox to show the tab to the LEFT of the closed tab?

    I have 3 tabs open named 1, 2 and 3. If I close tab 2, Firefox will automatically show tab 3. How do I get Firefox to show tab 1 instead of tab 3? Basically, move to the left instead of the right?
    I searched about:config using words like: tab, open, close, next, left and right and compared the results on
    http://kb.mozillazine.org/Firefox_:_FAQs_:_About:config_Entries to get a good idea of what each entry did. Learned a lot and reconfigured other aspects of Firefox in the process! But, I would really like to alter the way Firefox processes tab closures.
    Thank you.

    You can look at these extensions:
    *Tab Control: https://addons.mozilla.org/firefox/addon/1480
    *Tabberwocky: https://addons.mozilla.org/firefox/addon/14439
    *Tab Mix Plus: https://addons.mozilla.org/firefox/addon/1122

  • Thinkserver RD650 & 720ix RAID - How to get all drives showing up in TDM ??

    Hi, Have just received an RD650 with a 720ix controller. The chasis I have is the one where it provides a hybrid of disk form factors. So at the front left of the server it first has 6 x 2.5" bays, and then 3 x 3.5" bays, that makes up the first half of the backplane. Then the rest of the front of the server and the other half of the back plane is populated by 6 x 3.5" bays. I have 6 hard drives in total: 2 x 300GB 2.5" 15k SAS and 4 x 3TB 3.5" 7.2k SAS. However, when I go into storage management in the TDM, the drive count is only 5 and I do not get the option to include all 4 of my 3.5" drives into a virtual drive, I only get the option of including 3. So the last 3.5" drive that is on the right hand side of the server and backplane is not showing as available. Now I know this controller supports up to 32 drives, so what do I need to do to get this to show up as an available drive? I'll post an image here as well, the green outlines are my drives which ARE available, the red box is my one 3.5" drive which is NOT showing as available (all lights are on and drive seems to be working normally, if I swap that drive for another I still just get the same, 3 of the 3.5 drives available instead of all 4). I would REALLY appreciate some help with this, I need that drive showing up for RAID10 or this server goes back! Thank you,LD. 

    Yeah sorry I meant to update this sooner, it was a dead drive, I thought I had checked it in other bays properly but obviously not. This server only has 2 usb ports! Crazy, so if you are flshing a firmware or loading a driverbundle or whatever into the TDM but USB, you have to take out either the keyboard or mouse, what genius decided this? All servers should have at least 3 USB ports, whether you are going to run them headless eventually or not. Also, ALL of the 4 3.5" drive caddies are cracked and broken where the screw attaches the plastic front part to the metal! This must have been done in the factory AND one of the sprung screws that holds the raid card down is snapped! Anyway, original problem is solved.

  • HOw to I get thumbnails to show in more than one column in Finder?

    When viewing images in Finder - they only show up in one column when I am in the thumnail view - how can I get them to show in multiple columns?
    Thanks

    This is Column view. When you select any item in any column, another column comes up on the right until an icon - with no content - is displayed in the far right column.

Maybe you are looking for

  • Movie rental Q: How many times can you watch the film within 48 hours?

    It's just I have 8 hours left on Into The Wild and I fancied watching it a second time, only it is not playing when I click on the thumbnail. It just says "accessing the iTunes store" for a few seconds. I've tried clicking play. Other films appear to

  • What bit of "Please don't phone me" doesn't BT get...

    What bit of "Please don't phone me" doesn't BT get?  I have experienced a cataloge of corrosponce with BT dealing with the bad broadband speed issues that I have had on my connection since last november. Too long to list here see the link below Terr

  • Delete photo in album

    When I try to delete a photo by normal method the yellow frame switches to next photo in the Album but the photo to be deleted remains. When I click on the newly selected photo, then the correct photo, to its left, is deleted.  This is in Iphoto 11 o

  • Viewer not Updating

    I was working in Color (1.0.4, with FCP Studio 2). Things were going smoothly. Then, all of a sudden, the effects I'm applying to the footage aren't showing up in the Viewer. I can see that the effects are still there. I can see that the white balanc

  • Microsoft word doesn't open the file

    whenever i tried to open my document, it shows some kind of error. i also took a screenshot, so can anyone tell me how to solve this problem