Image inserting problem

Whenever I want to insert an image, DW 8 no longer makes a
box pop up where I
can browse to the image, but in stead the prompt for
inserting an Alt text
comes up. After that I get a weird looking symbol
http://www.xs4all.nl/~hogen/voorbeeld/image.htm
, but no image is inserted.
Only when I click on the symbol do I get the normal window
that lets me browse
to the image.
This is a recent problem. Unfortunately I do not remember
precisely when it
started nor what I have changed that might cause this.
The problem occurs both with the keyboard short cut for
inserting an image and
when trying from the Insert menu.
Does anyone have anu ideas about how to solve this?
Regards,
Adriana.
[ put out the rubbish if you need to reach me by e-mail ]
www.spinsister.nl

That's an image placeholder. Most likely you enabled the
accessability
options for image insertion in PREFERENCES....
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"A.Translator" <[email protected]> wrote in
message
news:[email protected]..
> Whenever I want to insert an image, DW 8 no longer makes
a box pop up
> where I can browse to the image, but in stead the prompt
for inserting an
> Alt text comes up. After that I get a weird looking
symbol
>
http://www.xs4all.nl/~hogen/voorbeeld/image.htm
, but no image is
> inserted.
> Only when I click on the symbol do I get the normal
window that lets me
> browse to the image.
>
> This is a recent problem. Unfortunately I do not
remember precisely when
> it started nor what I have changed that might cause
this.
>
> The problem occurs both with the keyboard short cut for
inserting an image
> and when trying from the Insert menu.
>
> Does anyone have anu ideas about how to solve this?
>
> --
> Regards,
> Adriana.
> [ put out the rubbish if you need to reach me by e-mail
> www.spinsister.nl
>
>

Similar Messages

  • Image Upload Problems Today

    Today, on two occasions I've gotten an error trying to upload an image from my local hard drive to a thread.  Normally this has been working in IE9 for me, and in fact I've uploaded a number of images today successfully.  It happened once with a PNG and once with a JPEG  The reported problem, in the dialog the software puts up, was simply "Null".
    Any number of retries to upload the same or different image results in the same failure.
    I'm going to try uploading one of the very same images that failed before here.  If it fails, I'll capture the screen and upload it to my site, then post a link here.  If it succeeds, well, you'll just have to trust me that it happened.
    Bah, of course it succeeds when trying to reproduce a failure.
    Anyone else seeing image upload failures today?
    -Noel

    Likewise, I usually put up a lot of images.
    Here are several, just as a test and so this thread isn't completely filled with just all this boring old text...
    PNG:
    JPEG:
    GIF:
    Image insertion seems to work fine today.  The full moon WAS last night, after all...
    -Noel

  • I have LR5 on a mac book pro with a external hard drive with LR5 images. my problem is my external hard corrupted reformatedand have to this is expensive and i would to start over in LR5

    i have LR5 on a mac book pro with a WD external hard drive with my with my LR5 images . my problem is my external drive is corrupted .i was told by apple that my macshow the hard drive is there but it is not moumting and have to be reformat. i have to use recovery data to save my images on my external before i can refomat.iam willing to lose my images on my extenal hard drive but i would like to know can i erase my LR5 images and start over or delete LR5 and download it again

    Simply start a new catalog:
    File >> New Catalog
    Choose a new name and save.
    When the empty catalog launches you are ready to start over.

  • My iMac 27" Late 2012 has Image Persistence Problem

    I'm wondering what to do about an annoying image persistence problem on my 27" late 2012 iMac. I got the iMac just a few days ago. Monday actually, so 4 days ago.
    It's the 3.4GHz i7, 8GB, NVIDIA 680MX 1TB fusion drive model.
    Overall it has become the love of my life, but the image persistence thing is getting harder to ignore. This happens after only a few minutes of use. If I follow Apple's instruction on dealing with LCD image persistence, I can make it go away for a while, but it comes back very quickly.
    It is extremely noticeable on a plan dark background. It looks as thought he screen has been left on for a very long time with the same windows open, but it occurrs in less than 5 minutes of use with nothing more intense than a bit of web surfing.
    I've read that this is happening a great deal on these new iMacs, particularly teh 27" machines.
    While the problem seems to be known to those of us afflicted I don't know if Apple has acknowledged an issue or not.
    Here is a sample of the complaints: http://forums.macrumors.com/showthread.php?t=1509571
    I can make the ghost image vanish by bringing up an all white scree for a minute or so or using LCD Scrub.
    I'm wondering if anyone else has foun a solution other than asking for a replacement computer, which Apple seems to be granting on this issue?

    Avoiding image persistence on Apple (IPS) displays
    Avoiding image persistence on Apple LCD displays
    If you cannot resolve the issue yourself, then return the computer for a replacement. You may do this freely within 14 days from date of purchase, so don't delay.

  • Image insertion in Database

    Case I:-
    int fileLength =(int)ft.length();
    PreparedStatement pstmt = con.prepareStatement("insert into image values(1,empty_blob()");
    pstmt.setString(1,"MyImage");
    pstmt.setBinaryStream(2,fis,fileLength);          
    int insertcount = pstmt.executeUpdate();
    if(insertcount == 1)
         System.out.println("Image inserted successfully");
              else
                   System.err.println("Some Error occured while writing the image to the database");
                   throw new SQLException("Some Error occured while writing the image to the database");
              try{
                   con.commit(); */
              }catch(Exception et){
              et.printStackTrace();     
              JOptionPane.showMessageDialog(null, "The Image and its record is saved ");
    Case II
         String str = "insert into image values(1,empty_blob())";
    Statement stmt = con.createStatement();
    stmt.executeQuery(str);
    str = "select * from image where id = 1" ;
    ResultSet rs = stmt.executeQuery(str) ;
    if (rs.next())
    oracle.sql.BLOB blob = (oracle.sql.BLOB)rs.getBlob("photo");
         File ft=new File(imageName);
         fis= new FileInputStream(ft);
         System.out.println("After Reading the file");
         OutputStream outstream = blob.getBinaryOutputStream();
                        byte buffer[] = new byte [100] ;
                        int length = - 1;
                        System.out.println("Before writing the file");
                        while ((length = instream.read(buffer)) != -1)
                        outstream.write(buffer, 0, length);
    Case I : The Exception occur as : TNS End Data Channel
    Case II: The insert take place but the value of Orablob is NULL
         If You have any Workable code for just inserting the image and reteriving it just send the code i will try it

    Hi,
    try something like that, it works for inserting. For getting image from database use the second select within changing of input and output streams.
    target = new File("Pictures\\" + tarName + ".jpg");
    String sqlCommand0 = new String("INSERT INTO T_PICTURES VALUES(?,sysdate,empty_blob())");
    String sqlCommand1 = new String("SELECT CODE, PICTURE FROM T_PICTURES WHERE code ='"+ tarName +"' FOR UPDATE");
    Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@pxedms:1521:cam1",user.getUsr(), user.getPass());
    conn.setAutoCommit(false);
    PreparedStatement pstmt = conn.prepareStatement(sqlCommand0);
    pstmt.setString(1, tarName);
    pstmt.execute();
    pstmt.close();
    Statement stmt = conn.createStatement();
    ResultSet rset = stmt.executeQuery(sqlCommand1);
    while(rset.next()){
    FileInputStream inFile = new FileInputStream(source);
    FileOutputStream outFile = new FileOutputStream(target);
    int c;
    BLOB blobFile;
    OutputStream oraOut;
    blobFile = ((OracleResultSet)rset).getBLOB(2);
    oraOut = blobFile.getBinaryOutputStream();
    while((c = inFile.read()) != -1){
    outFile.write(c);
    oraOut.write(c);
    outFile.close();
    oraOut.close();
    stmt.close();
    rset.close();
    conn.commit();
    conn.setAutoCommit(true);
    conn.close();

  • Problem: codebase, jar and image reloading problem please help!

    Hi Java Gurus,
    I have written an applet that extends JApplet for viewing webcam. In order to reduce the download time I put my classes into a doorcam.jar file. The following is my <applet> tag in my html file.
    <applet code="CameraApplet.class"
    archive="doorcam.jar"
         codebase = "webcam/classes"
         width="375" height="475">
    <param name="imagePath" value="http://judge/webcam/images">
    <param name="webCamImage" value="door.jpg">
    <param name="COMPort" value="COM2">
    <param name="frameRate" value="10"> <!-- could not exceed more than 10-->
    <param name="host" value="judge">
    </applet>
    The fist problem is that my class file does not get loaded from the jar file if i provide the "codebase" attribute as above. Instead the browser load every single class file from the webserver. This has some problem too. Coz the browser sometimes just thorough NullPointerException or ClassNotFoundException. After much of debugging I found out that the problem is the IE browser which seldom fails to load classes or image file from the server. If i referesh the browser the applet and all its classes loaded successfully and runs smoothly. This behaviour never occurs when running with "appletviewer".
    I wanted all my classes to be loaded from my jar file. After much of trial and error I found out that if i remove "codebase" attribute the browser loads the classes from my jar file and applet loads very fast. This is where the second problem comes in. The browser does not reload my webcam image file so that the webcam become alive with live images, like before.
    If I run on "appletviewer" everything works fine my web cam is displayed properly. But in IE browser the image does not get reloaded when I refresh my image to give live to my webcam display. The refresh method is given below.
    private void refresh(final URL url) {
    Image webCamImage =getImage(url);
    webCamImage.flush(); // flush out the previous image
    webCamImage = getImage(url); // get a new image
    webCamImageIcon.setImage(webCamImage); webCamImageIcon.paintIcon(webCamLabel, webCamLabel.getGraphics(), 15, 15);
    When I add the "codebase" attribute back, the image gets reloaded for every refresh() and everything works fine. But the classes are also loaded from the server. And occasionally also suffers Class loading and image loading problem. As I presented earlier, when I do refreshing in the browser everything gets loaded and the applet function correctly with web cam displaying very well.
    The problem is so strange that I could not find any way to solve it.
    It would be a great help to me if somebody provide me some work around to the problem.
    I tested on Windows 2000, Windows XP, IE 5.5, IE 6 with J2SDK 1.4.0.
    Thank you all very much in advance.
    best regards,
    Judge

    Thank you so much for the suggestions. I did tried the way u suggested. The problem still the same.
    I think its the problem between IE browser and Java Plug-in.
    I which SUN would find these incompatibilities and solve these problems.
    I even tried using java SDK and plug-in 1.4.1 it even worst. It can't even load an applet. And it does not show any loading messages nor any error messages. It just show a cross sign on the upper left coner.
    I would be so glad, if Sun would try to eliminate the inconsistancies such as caching, loading, initializing etc between browser and its Java plug-In. For example, applets behave well in appletviewer and behave unpredictably in browser environment.
    I have seen so many people in the forums with all sorts of problems because of this.
    Right now I m desperately looking for work around to my problem.
    If somebody would provide me with the solution to my problem it would be a great help to me.
    thank you all so much.
    best regards,
    Judge

  • Update/Insert Problem with Oracle Warehouse Builder

    Hello,
    i have update/insert problem with owb.
    Situation: I have a source-table called s_account and a target table called w_account_d. In the target table are already data which was filled trough the source table inserts. Now anyone make changes on data on the target table. This changes should now give further on the source table with an update operation. But exactly here is the problem i can´t map back the data to source because that will create a loop.
    My idea was to set a trigger but i can´t find this component in owb or is anywhere hidden?
    Also i have already seen properties as CDC or conditonal loading in the property inspector of the table, but i have no idea how it works.
    Give it other possibilities to modeling this case? or can anyone me explain how i can implement this eventually with CDC?
    I look forward for your replies :)

    Hi
    thanks for your answer. I follow your suggestion and have set the constraints of both tables into the database directly.Nevertheless it doesn´t work to begin. In the next step i found by right click on a table the listpoint "configure" - I goes to "unique key" --> creation method and set here follow options: Constraint State = ENABLE, Constraint Validation = Validate. That error message that appears before by the deployment disappears yet. Now i start the job to test if the insert/update process works right. Finally it seems to work - but not really.
    My Testscenario
    1. Load the data from source table about the staging area to data warehouse table: Check - it works!
    2. Change one data record in source table
    3. Load the source table with changed data record once again to staging area: Check - it works!
    4. Load new staging area table with the changed data record to data warehouse table: Check it works! BUT, BUT i can not recognize if it is insert or update operation, then under the design window by jobs execution windows is reported "rows selected 98", Rows inserted" is empty and "rows updated" is empty. So i think works not correct, then my opinion if it works correct it should show be "rows updated" 1.
    What can yet now still be wrong or forgotten? Any ideas?
    *By the way think not 98 rows there is not important if you make an update or insert which performance. It is an example table the right tables have million of records.*
    I look forward for your answers :)

  • CRUD insert problems.

    Hello all,
    I was wondering about DB operations in JSF pages, so I took a look over the Single Page CRUD example. What hitted me was there is a need for a two step insertion, first by issuing a select in search for the biggest ID of the primary key, and after that the insertion of the element with that obtained biggest ID + 1. I see at least 2 problems with this approach:
    1. Concurrency issues.What happends if 2 users are issuing at the same time an insert operation over the same table? There is the possiblity of getting the same ID to insert, and the first one could insert, but the second one would fail even if it's request is logically corect (validated & converted). I see three solutions over the insert problem:
    a. lock on the database (if it's possible).
    b. using a synchronized block in the application bean to get the ID and insert.
    c. using DB specific constructs (e.g. MySQL's AUTO_INCREMENT)
    2. Overhead issues. Why doing in two steps an operation that should be just an insert? Previous a. an b. approaches do not solve our overhead problem, because we still have two steps in insertion; we only synchronize them.
    I was wondering which is the best practice for production quality web applications. Personally because I've picked MySQL as DB I've used AUTO_INCREMENT, but the immediate huge and obvious drawback is dumping DataProvider's capability of changing the storage medium at a glance.

    I'm not sure if I entirely understood your questions here.
    - Concurrency problem.
    database bound Data provider underneath uses CachedRowset, which uses SyncProvider to take care of concurrency problem. If the default RIOptimisticProvider is not enough, it possible to register other more sophisticated SyncProvider.
    You can read about it here.
    http://java.sun.com/j2se/1.5.0/docs/api/javax/sql/rowset/CachedRowSet.html
    - Overhead issue
    I believe, it is possible to let the DB auto increment the primary key field, and left it out in the insertion from data provider.
    - Winston
    http://blogs.sun.com/roller/page/winston?catname=Creator

  • Why does an image inserted goes outside the html structure

    I used the image insert command to place an image on my page in design view but when I looked at the image in code view, it was below the html structure. Yet when I move it in code view into the body section it disappears in design view. Any suggestion of what I'm doing wrong. This never happened before. No matter how many times I inserted the image it still places below the the closing html tag. The  extension is png.

    I suggest change your code manually by going into code view so that it looks like this:
    <body>
    <img src="/letters/letters.png" width="504" height="360" alt="towers" />
    </body>
    hth

  • SSRS indicator image display problem!!

    Hello ALL;
    I am having problem with displaying indicator image in DEV report manager. but same rdl works in QA environment. Both server has SP1 installed. Any Idea? Appreciate for your help. Thanks,

    Hi Techchi,
    Based on the limited information, I cannot figure it out for this issue. As per my understanding, I think this issue can be caused by the browser that run the report manager. If you use IE explorer to render the report, I suggest that you can try to run
    it in compatibility mode. If you are using another browser, I recommend that you should use IE explorer to render the report to check the issue again.
    If this issue still exists, in order to solve the problem more efficiently, I need to clarify some information.
    Are all reports with indicator image cannot render well in DEV report manager? Or just this one report?
    What is the phenomenon about the indicator image display problem? Could you please post a screenshot about this?
    It is benefit for us to do further analysis. Thank you for your understanding.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Having a image alignment problem using clearbox

    Hi,
    I'm having an image alignment problem. I cannot figure it out. I'm using the clearbox - lightbox dreamweaver widget. Using Dreamweaver CS6.
    Actual page located here. Any help would be appreciated.
    http://dirtysouthink.com/gallery/dustin2.html

    This has very little to do with Dreamweaver. DW is merely a tool to assist you in building a web site. It is purely a matter of styling (CSS).
    When I look at the structure, I see
    BODY-CONTENT (width: 490px)
         GALLERY (width: 452px)
              CONTAINER (width: 500px)
                   ITEM (width: 150px)
    From this I can deduce that:
    GALLERY will fit inside BODY-CONTENT
    CONTAINER will NOT fit inside GALLERY or BODY-CONTENT
    ITEM will fit three times into CONTAINER
    To start with, I would reduce the size of the CONTAINER so that it fits inside of its parent. Then I would adjust the width of the ITEM so that only two of them fit inside of the CONTAINER.

  • How to solve the image display problem in the iTunes Store

    Hi guys!
    I just want to give a work-around for all of you having the image display problem in the iTunes Store. In my case only the square images in the slider sections won't load:
    I had this in my last W7-installation and got it again in W8 after the first few weeks.
    There are a lot of reports about this problem out there and adhoc solutions like 'clear the cache' or 'reinstall and drink ice tea' that do not work. It is obviously a file request error. It is all about finding out which server addresses get blocked by your computer.
    Solution: Go to your firewall and your Anti-virus-program. There must be a whitelist option. In Kaspersky, check the web-options, the banner-options and the firewall-options, because the all have whitelists. The following addresses have to be whitelisted:
    *.apple
    *.mzstatic.apple.com.akadns.net
    *.mzstatic.com.edgesuite.net
    *.da1.akamai.net
    *.itunes.apple.com
    se.itunes.apple.com
    upp.itunes.apple.com
    ax.init.itunes.apple.com
    xp.apple.com
    *.mzstatic.com
    client-api.itunes.apple.com
    www.apple.com.edgekey.net
    www.isg-apple.com.akadns.net
    Press Ctrl + R in the iTunes Shop then and browse throught the music sections. All images should be displayed correctly now.
    If not, there might be more Apple servers involved in your case. You can find them by running a DNS sniffing tool like the DNS query sniffer by Nirsoft or Wireshark.

    Phone restarting randomly could be loose battery. Tighten by putting a small strip of electrical tape on the back edge.
    THE BITTERNESS OF POOR QUALITY, LINGERS LONG AFTER THE CHEAPNESS OF PRICE, IS SOON FORGOTTEN.

  • Image reading problem in servlet

    Image reading problem in servlet
    I am reading an image in servlet and writing it to ServletOutputStream
    The following code works fine unless I change the size of the byte array (for increasing download speed) from 8 to something like 128 or any other higher value
    If I change the value of byte array size the image does not get downloaded properly, I mean the quality of the image changes, it does not looks like the original imageURL url = new URL("http://www.mysite.com/images/img1.jpg");
    URLConnection con = url.openConnection();
    con.setUseCaches(false);
    BufferedInputStream in = new BufferedInputStream(con.getInputStream());
    BufferedOutputStream out = new BufferedOutputStream(response.getOutputStream());
    byte b[] = new byte[8];
    while(in.read(b) != -1)
         out.write(b);
         out.flush();               
    out.close();
    in.close();what do I change
    byte array size
    or use the constructor of BufferedInputStream with 2 parameter
    or use the constructor of BufferedOutputStream with 2 parameter
    or use flush outside while loop or what else

    Change your while loop to:
    int count;
    while((count = in.read(b)) != -1)
         out.write(b, 0, count);
         out.flush();               
    }The penultimate time read is called, it may not fill the entire byte array. You only want to write out however much was read into the array.
    For better performance, you should move the flush() outside of the loop too. BufferedOutputStream will flush automatically when its internal buffer is full.

  • Image refresh problem

    hi, i have an image inside an iframe that i'm trying to
    change upon the click of a button. i use the following code:
    <SCRIPT language="JavaScript" type="text/javascript">
    function swapImage(intImage){
    var
    imgs=["images/pic0.jpg","images/pic1.jpg","images/pic2.jpg","images/pic3.jpg","images/pic 4.jpg",
    "images/pic5.jpg"];
    parent.frames['cont'].document.getElementById('mgmnt_pic').src =
    imgs[intImage];
    alert(parent.frames['cont'].document.getElementById('mgmnt_pic').src)
    </SCRIPT>
    then in body:
    <p><a href="javascript:; "
    onclick="frames['cont'].swapImage(0);">Management
    Team</a></p>
    i know from the alert that it is changing the source of my
    image, the problem is that the image itself is not changing at all.
    has anyone experienced this before? what can i do to fix it?

    Hi,
    chk the link
    http://javascript.internet.com/miscellaneous/random-image.html
    shanthi

  • Netinstall image  installation problem

    Hi, I'm new in MacOSX Server and trying to do image file with System Image Utility 10.6.2 - MacOS10.6 and additional packeges (MacOSXUpdCombo10.6.2, iWork'09, iLife'09) with "AddPackages and Post-Install Script". By making a image no problem but when I start the installation occurs the following problem.
    MacOs10.6 install correct but other programs added in "AddPackages and Post-Install Script" is not installed, and in Macintosh HD is created a folder named Install.76443 with locked directories.
    Where is the problem why the additional packages not installed.
    My SIU configuration is :
    Define Image Source: MacOSXInstallDVD
    Add Packages and Post-Install Scripts
    - MacOsx10.6.2. Update Combo
    - iLife'09.pkg
    - iWork'09.pkg
    Create image
    type: Netinstall
    Install Volume: Macintosh HD
    Save to: Documents
    Image Name: Netinstall of Mac OS X Install DVD
    Network Disk: Netinstall of Mac OS X Install DVD
    Image Index: 1533
    Description: Netinstall of Mac OS X Install DVD
    i want to create one image for all packages and updates and install it from network to all computers in my office.
    thanks

    I think this is covered in a different thread but, in short, the 10.6.2 update will fail to install on top of the 10.6 DVD. YMMV with the iLife & iWork packages as they may run pre-install scripts that will also cause them to fail.

Maybe you are looking for

  • TS3212 I can't get the itunes download to run on my computer.

    I have Windows 8 and it shows itunessetup.exe in my downloads, but when I click to run, it won't run and finish the installation. I don't get any error messages, it just won't install. Does anyone have any suggestions?

  • Asset value date

    Hi Guru's I have uploaded asset with  capitalization date is 02.07.2008 the i have uploade the data with the posting date 02.10.2008, the depreciation is calculated from the period 02.10.2008 and not fromt the capitalized date can one let me know ple

  • Someone created a new itunes account using my mac Email!

    Someone using the name "Maryellen McHenry" got into my email account somehow, and used it to create an itunes account! Is there any way I can shut this account down, and/or deauthorize any purchases "Maryellen" made with this account?

  • Guest VM failover cluster on Hyper-V 2012 Cluster does not work across hosts

    Hi all, We are evaluating Hyper-V on Windows Server 2012, and I have bumped in to this problem: I have a Exchange 2010SP2 DAG installed on 2 vms in our Hyper-V cluster (a DAG forms a failover cluster, but does not use any shared storage). As long as

  • Robohelp 6.0 login dll error

    Every time I log in Robohelp 6.0 as an administrator I get the following message : " Unable to register hhctrl.ocx, itircl.dll, itss.dll"  How can I fix this?