HELP:  cannot insert images

When I try to insert an image, I get a pop up message reading: "You won't see this element unless View < Visual Aids < Visible Elements is checked, and the preference setting for this setting is on."
I've made sure that Visible Elements has been checked, but I'm not really sure what to do in the  Preference setting.  I'm assuming it's on, but there's nothing to indicate that in the setting.
Anyway, I'm still not able to insert images, either in the body or in the div.  I keep getting the same pop up message and I don't know what to do.  Can someone please help?  Thanks..

How are you trying to insert the image....
1.  Via the Common tab and selecting the image icon.
2.  Via the Insert Menu>Image
From my checking of the Invisible elements there shouldn't be anything there impeding the insertion of an image.  Even in the preferences dialogue box, there's nothing really there specific to images.
See if the following helps:
A lot of unexplained errors in Dreamweaver are the result of a corrupt cache file or corrupt personal configuration file. Go to the Dreamweaver FAQ, and look up "JavaScript and other unexpected errors". Follow the instructions for deleting the file cache. If that doesn't work, try deleting your personal configuration folder.
http://kb2.adobe.com/cps/191/tn_19105.html
INSTRUCTIONS FOR JS ERRORS: 
JavaScript and other unexpected errors in the Dreamweaver FAQ.
Nadia
Adobe Community Expert : Dreamweaver
Unique CSS Templates | Tutorials | SEO Articles
http://www.DreamweaverResources.com
Web Design & Development
http://www.perrelink.com.au
http://twitter.com/nadiap

Similar Messages

  • Cannot insert images

    I'm new to Dreamweaver and web design in general but I do have a brief understanding so far.
    I've been using a tutorial that's been walking me through CS5.5 (i'm using a trial version.)  I used it for a week or so and I got a page setup using a template.  I was able to put the site online and insert a picture and everything was working fine.
    Then my computer crashed lol.  It was old and not a surprise.  The crash had nothing to do with dreamweaver.
    Now I'm on a new pc using the same trial.  My older computer was running Vista and this new computer has Windows 7 64 bit.
    Now I can still put the website online.  I've tested the server and everything is fine until I try to upload a photo.  I click on insert/image and try to upload it.  It shows just fine on the page layout in Dreamweaver but when I try to "put" the site online I get this error:
    "Connected to Metzartonline
    index.html - Put operation successful
    twoColLqlthdr.css - same not transfered
    images/Metzlogo.jpg error occurred - and FTP error occurred.  Cannot put metzlogo.jpg.  Access denied.  The file may not exist or there could be a permission problem.
    I've searched online but haven't been able to find a solution.  Any help would be appreciated.

    Thanks for the reply. It appears that you may  be right about Dreamweaver and my problem. I say my problem because at the moment, I'm not sure what's going on. I kept trying with the form in different versions and always the same results - the ftp error. So I uploaded it with a different ftp successfully. Now somewhat emboldened, I started on other forms and, voila! was successful uploading them with Dreamweaver.
    The only thing I can bring away from this at the moment is that maybe the form was corrupted and Dreamweaver, knowing the time is short to the goblins and ghouls time of year was saving me from myself.
    At any rate, all is well in my world and I am about to devour some pumpkin candy, just to add a little more cafeine to my nerves.
    Many thanks for your time and help.
    Kim

  • Cannot insert image

    Hi there,
    Using the Insert>Image function or using the Common>Insert tab I get the same results:
    Instead of being able to browse for a file I get the accessilbility window.  If I fill in info
    and click ok or just click ok I get a small box in my page and the placeholder
    information opens in the properties bar below the document.
    The only way I can insert image is to highlight the placeholder and browse for file
    using the Src box in the properties bar.
    Is there a setting that I need to change?  I don't see anything in the
    Edit>Preferences box that seems to apply....
    I am using DW CS3 on a Vista 64 computer.  My skilll level is slightly above beginner.
    Thanks in advannce for any help that you can offer!!
    RC

    Hi David,
    I tried deleting that personal configuration folder, there were actually two of them.
    When I re-opened Dreamweaver the same thing that I described above happened again
    when I tried to insert an image.
    I also found another thing that doesn't appear to be right:
    When I highlight a word and try to insert an email link, instead
    of getting the dialog box to create link I get this:
    "email@domain name here.com "  where the highlighted word used to be and
    in the link box in the properties panel.
    And another thing that seems to be going wrong is that if I highlight a word or phrase
    and click on the hyperlink symbol I get a blue underlined # sign where the phrase used to be.
    The # sign also appears in the Link box down in the properities panel.
    I can solve both of the above and the image problem that I mentioned before by highlighting
    the word or placeholder and typing the required info in the appropriate box in the property panel.
    I would be nice to use the shortcuts that DW provides...
    Can you please give me any more things to try?
    Thanks again for any help that you can offer!
    RC

  • Beginner needs help with inserting images in applet.

    //  Name: Sachit Harish
    //  Name of Program: HorseRacing
    //  Date Started: May 15, 2003
    //  Date Finished: 2003
    //  Program Description:
    import java.awt.*;
    import java.applet.*;
    public class HorseRacing extends Applet
    //     Button startGameButton;
         InputField betAmountBox;
         Image redHorse; //<---------//
    //     Button[] drawings = new Button[4];      
    //    String[] labels =  {"Face", "Cheese", "Stick", "Mashed Potatoes"};
        //  Method Name: init()
        //  Parameters Passed: None
        //  Data Returned: None
        //  Method Purpose: Where we initialise the InputBoxes and colors.
        public void init()         
          //     startGameButton=new Button("Click to Start Game");
          //     add(startGameButton);
          /*  for(int i=0; i<drawings.length; i++)
                 drawings=new Button (labels[i]);     
         add(drawings[i]);
    inputBoxes();     
    setBackground(Color.gray); //background color
    setForeground(Color.black); //input field text color
    redHorse = getImage(getCodeBase(), "horse_red.GIF"); //<---------//
    // Method Name: paint()
    // Parameters Passed: Graphics variable screen
    // Data Returned: None
    // Method Purpose: Where the programs calls and collects all the methods.
    //                         If high and low are not integers, an error message
    //                         appears.
    public void paint(Graphics screen)
         //screen.drawString("HORSE RACES!!!!!", 40,60);
         //startGameButton.move(50,300);
         betAmountBox.setPosition(115,200);
         startGame();
         if(betAmountBox.isInt())
              int betAmount=getBetAmount();
         else
    screen.drawString("ERROR: You have not entered an Integer!", 10,110);
    screen.drawString(" Please correct your mistake.", 40,125);
         /*int xPos=10;
         int yPos=10;
         for(int i=0; i<drawings.length; i++)
              drawings[i].move(xPos,yPos);
              xPos+=60;
         screen.drawString("Click each button and get a surprise!", 10,50);*/
    // Method Name: inputBoxes()
    // Parameters Passed: None
    // Data Returned: None
    // Method Purpose: Where we initialise the inputboxes, set the size of
    // the InputField and adds it to the screen. Also
    // initialises the InputField to start with 1's
    void inputBoxes()
    betAmountBox = new InputField(5);
    add(betAmountBox);
    betAmountBox.initialise(50);
    // Method Name: getBetAmount()
    // Parameters Passed: Variable number
    // Data Returned: None
    // Method Purpose: Returns the variable number back to the paint()
    int getBetAmount()
    int betAmount=betAmountBox.toInt();
    return betAmount;
    // Method Name: action()
    // Parameters Passed: Event variable evt, Object varible obj
    // Data Returned: Variable true
    // Method Purpose: This block responds when the user takes an action
    // (such as hitting the return key). It causes the paint
    // block to be done again
    public boolean action(Event evt, Object arg)
    Graphics screen=getGraphics();
    if(evt.target instanceof Button)
         if(arg=="Click to Start Game")
              screen.clearRect(0,0,600,600);
              startGame();
    /*if(evt.target instanceOf Button)
                   if(arg=="Face")
                        screen.clearRect(5,55,400,400);
                        faceDrawing();
                   else if (arg=="Cheese")
                        screen.clearRect(5,55,400,400);
                        cheeseDrawing();
                   else if (arg=="Stick")
                        screen.clearRect(5,55,400,400);
                        stickDrawing();
                   else if (arg=="Mashed Potatoes")
                        screen.clearRect(5,55,400,400);
                        potatoeDrawing();
    return true;
    void startGame()
    Graphics screen=getGraphics();
              //Horse Racing Box
              screen.drawRect(10,10,505,120);
              screen.drawLine(60,10,60,130);
              screen.drawLine(10,40,515,40);
              screen.drawLine(10,70,515,70);
              screen.drawLine(10,100,515,100);               
              screen.setColor(Color.red);
              screen.fillRect(11,11,49,29);
              screen.setColor(Color.yellow);
              screen.fillRect(11,41,49,29);
              screen.setColor(Color.blue);
              screen.fillRect(11,71,49,29);
              screen.setColor(Color.orange);
              screen.fillRect(11,101,49,29);
              screen.setColor(Color.black);
              //Betting Box          
              screen.drawRect(10,150,280,100);     
              screen.drawLine(10,185,290,185);
              screen.drawLine(80,150,80,185);
              screen.drawLine(150,150,150,185);
              screen.drawLine(220,150,220,185);
              screen.setColor(Color.red);
              screen.fillRect(11,151,69,34);
              screen.setColor(Color.yellow);
              screen.fillRect(81,151,69,34);
              screen.setColor(Color.blue);
              screen.fillRect(151,151,69,34);
              screen.setColor(Color.orange);
              screen.fillRect(221,151,69,34);
              screen.setColor(Color.black);
              screen.drawString("BET = ", 40,230);
    screen.drawImage(redHorse, 200,200,300,300,this); //<---------//      
    The picture an't showing up... why? First time trying to insert images. (I made arrows where I did stuff with the image.)
    -sachit

    BTW, ignore the buttons and stuff. I just quickly grabbed this file from an earlier button program. :p
    -sachit

  • Help with inserting image! it's not showing..

    Hi. I'm a very beginner, and really struggling with basics. Please can someone help me?!
    All I'm trying to do is insert a logo to the bottom of the page (or whereever really!) I've inserted the file onto the page which shows fine in dreamweaver, but it doesn't seem to 'put' and when I check page online it just shows as the image name.
    You're prob saying 'duhhh' in your head right now! but I am used to photoshop and illustrator, I'm finding dreamweaver so complicated!
    You can see what i mean on my about page - www.sarahray.co.uk/about.htm (at the bottom underneath the writing it says AOI logo. Thats what I'm trying to put.)
    Any help MUCH appreciated! xx

    Hi
    The file path is pointing to your hard drive not to the location on your server/site -
    <p class="style3"><img src="file:///Macintosh HD/Users/sarahray/Downloads/AOIMembersLog
    OI_Logo_Member_black.jpg" width="280" height="108" alt="AOI logo" longdesc="http://www.theaoi.com" /></p>
    PZ

  • Please help, cannot compare images in full screen mode

    I am not able to compare 2 images in full screen mode. I am using a MBP and a ACD 23". The main image will remain in the ACD while the image being compare is being shown in the MBP.
    I am able to compare images in the viewer mode.
    My main display is the ACD 23 which I selected using the display preferences under 'Arrangement' with the menu bar located on the ACD. In Aperture, Secondary Viewer is set to Blank.
    I had also tried different combinations of Main Viewer and Secondary Viewer settings but was not successful.
    Am I missing something? Anyone have the solution?Thanks in advance for any help.
    norheng

    Anyone have any suggestions to using Aperture to edit images using a MBP and ACD so that it best utilize Aperture full screen mode in comparing and narrowing down to the pick.
    I am now trying to use the MBP as the main display and ACD as the secondary. This way I am able to compare images with the MBP in the Browser mode and the ACD display the compare images full screen. It work with the secondary display - ACD set to mirror, span and alternate mode.
    It would be best if only one screen is use and hence save energy consumption (reducing global warming and bill, if it help).
    Thanks in advance for any suggestions or and solutions.
    norheng

  • Urgent Pl help :Cannot insert Order Group in KONK

    I am not able to insert new Order Group in KONK the number range i select for the Group get added in the number range interval but i can not see any order group which i am trying to insert.
    I have check the transaction SU53 for any authorization object issue but there is no such issue and system is showing the message authorization check was successful.
    Please help its urgent
    points will be awarded

    Hi
    For internal order group number ranges try in T.code: KOT2_OPA
    select the order for which you want to change the number range
    click on change button at the number range, select order group again,
    go to Intervals menu and click on Maintain it will allow you to change the number ranges.
    Regards
    Prasad
    Accenture - Hyd

  • SCN document: 'Insert Image' greyed out at a certain stage/size

    I noticed  a similar issue likeTammy has reported in discussion/thread .Cannot insert or upload an image
    After having inserted text and several images to a draft document, the 'Insert Image' icon became greyed out at a certain stage/size.
    I did some tests following document Solution for Error: Cannot Insert Images on SCN Content, but the the behavior remained the same. Only after having deleted the last inserted image in the document > Save Draft > Edit again the 'Insert Image' icon was not greyed out anymore which is argueing for a size restriction.
    The same html coding as in the document put into a blog does not grey out the ‘Insert Image’ icon. But I found out that after clicking on the ‘Insert Image’ icon > ‘From your Computer’  tab ‘Browse’ is greyed out. Strange and argueing against a size limit is, when I choose ‘Uploaded Images’ I can select images and still  insert them into the blog.
    Does someone have similar experiences / can assist.
    Thank you, Barbara

    We have a recent discussion in SCN support.
    He has same problem. Have a look into the discussion Issue with 'Insert Image' button while creating document in SCN
    I suggest to split you document into two part as part 1 and part 2.

  • I cannot insert a graphic image in a new composition: win 7, tb 24

    At times when composing a new e-mail I cannot insert a graphic image in the message. I have tried both the Insert button and the Insert icon. This does not happen all the time; but, when it does happen I can't seem to make it work. My system is a Win 7 with Thunderbird 24.3.0.5. I have tried inserting different graphic images and have tried all combinations in the Image Properties pop-up window.
    I have closed and reopened Thunderbird. I have restarted my system. I have closed all windows except Thunderbird. Nothing helps. Help! Thank you, Bill Gray

    Bill Gray here again. I find that if I open another Write window, then copy/paste my entire e-mail from the initial window -- I can insert graphics into the new window.
    What happens in Thunderbird to make this happen? This has happened a number of times. But, at least now I know that I can open a new Write window and get around the problem. Yet, I am still stuck with the nagging question: Why does this happen?
    Thank you and God bless, Bill Gray

  • Help! i Cannot put image on a JToolbar in my java application

    hi! i am new in developing java application via mac osx Xcode. i cannot put image in my JToolbar..please help me how to put icon in my JToolbar in Xcode.thanks..

    add a button to toolbar and use the setIcon property of the JButton.
    jButton1.setIcon(new javax.swing.ImageIcon(.............

  • Word 2011 in Lion, cannot insert multiple images, crashes...

    Greetings all,
    Having made the great switch to Lion last week, I have difficulty with Word '11. When trying to create a document with more than one picture, the program allows the first insertion, but thereafter it is not possible to add another. I have tried opening iPhoto and doing a copy/paste, however this causes a crash and the usual 'send error report'.
    The only thing that works is if I close the document and quit word, restart and then I can add only one more image. Deep breath. Rpt. And so on.
    Grateful for any suggestions,
    D.

    Dear coocooforcocoapuffs,
    Thank you for your suggestions.
    I have tried with the console open and got messages as follows:
    7/26/11 4:55:54.979 PM Dock: kCGErrorIllegalArgument: CGSSetWindowListSystemAlpha: Failed
    7/26/11 4:55:54.979 PM Dock: kCGErrorIllegalArgument: CGSSetWindowListSystemAlpha: Failed
    7/26/11 4:56:53.096 PM Microsoft Word: NSOutlineView Warning: reloadData called while in the middle of doing a reloadData (break on NSLog to debug)
    7/26/11 5:02:30.922 PM Microsoft Word: NSOutlineView Warning: reloadData called while in the middle of doing a reloadData (break on NSLog to debug)
    The dragging & double-click doesn't work.
    I tried inserting images from areas other than iPhoto, and this worked, as well as with various file types.
    I also opened Pages and the whole process works fine.
    Headscratcher, eh?
    D.

  • I cannot open images in my email since the Firefox update. Help!

    I cannot open images in my email or view the embedded photo in a new tab since the Firefox Update. "IE" will let me open them, but not Firefox... How can I fix this?

    Hi Pat..When I tried to run Fix It the computer pops up a screen that says this trouble shooter does not apply to this computer .The article refers to Internet Explorer 10 and Im running Internet Explorer 11. I did try to see it it would fix my problem but the registry entry does not exist on my computer (HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\TabProcGrowth) I can get as far as HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer but I dont have the option to choose Main. I only have the option to choose New Window which does not open up when clicked. Internet Explorer also has no value. Is there anything else I should try?

  • Help! Please!  I cannot view images on any website or button as in submit, delete, previous, next...

    I cannot view images on any website, or buttons only text.  I can view youtube videos but none of the video thumbnails on the sidebar.  I have never had this problem and have searched the forums for an answer. 

    Hi F. Carl
    The clip is intact and it has video and audio.
    I have worked on it before and all was fine until I lost the work when it got frozen!
    The issue is:
    I have a (MOV.) ready clip that I wanted to edit a bit, hence I have imported the clip (import media) and whenever I try to work on it, the black screen prohibits me from doing anything.
    Any ideas please ... It's really strange !

  • I can insert images in gmail. However, I cannot insert a screen capture on one computer when I can on another. So I think its the way I have Firefox setup...but I don't know how to change it.

    In gmail I enabled insert images. I can now copy/paste an image....but not a screen capture. I'm using the same process to capture the screen shot and paste as I do in Word. It works on one computer...but not another.

    Move the cursor to the very top of the screen, maybe push up a bit. The main menubar should then appear. All the way to the right should be a bright blue icon - click it, and the Safari window should revert to 'normal' size.
    Pressing Command-Control-F should accomplish the same thing.
    Once it is back to normal size, click and hold on the top portion of the Safari window and drag to left or right to place it where you want it to be. Once you leave it there, the next time you open Safari it should open its window in normal size at that place.
    If you need to re-size the window a bit, you can click-and-hold on the bottom-right corner of the window and drag to resize it.

  • HT203175 I cannot remove  iTunes Helper .exe- Bad Image warning from my PC when it opens. Can someone help a luddite?

    I receive an error message each time I start my PC. I get the I Tunes Helper.exe- Bad Image message and need to click 5 times before it goes away. I was trying to sync my I Phone with OUtlook and something happened. I am not tech-savvy.

    Many thanks.
    Taken at face value, you're having trouble with an Apple Mobile Device Support file there.
    Let's try something relatively simple first.
    Restart the PC. After you've fought your way through the error messages, go into your Uninstall a program control panel, select "Apple Mobile Device Support", and click "Repair".
    Does the repair install seem to go through okay? If so, restart the PC again. Have the error messages from iTunesHelper.exe stopped?

Maybe you are looking for

  • PURCHASE INFO RECORD TAX CODE UPDATION THROUGH PO

    In Purchase info record tax code is alredy exist  for one vendor and material. while making new  Purchase order for same vendor and material but tax code is differant then can tax code will not update automatic in purchase info record. How to do auto

  • F110 Clearing Program

    I'm trying to find out which program utilized for the F110 to post in the company bank account and clearing the vendor. Does anyone know? Thanks

  • Error al instalar Creative Cloud para escritorio. (Código de error: 1)

    Hola, estoy recibiendo el error con código 1 cuando trato de instalar creative cloud para escritorio, Alguien que me pueda ayudar?

  • Move schema to anothe tablespace

    Hi During installation of one Oracle application , this has created "WIRELESS" schema in system tablespace. "WIRELESS" schema consis of table/index/LOB Objects. Now I want to migrate entire wireless schema to xx_tablespace. kindly suggest me the ways

  • Columns Counting

    Could you pls tell me how to count the number of columns for a specific Datatype in a table. E.g my table contain these columns: Colname Datatype Col1 Number Col2 Number Col3 Varchar2(30) Col4 Varchar2 Col5 Date Now How to write a query which could t