JavaFX - Image preloading problem

Hi,
I try to use ImageView and face some problems with image preloading.
Here is the code related to the component that has problems. The component extends CustomNode.
in class attributes declaration:
var imgNodes: ImageView[];
// list of url of images to display
public-init var imgs: String[];
in create function:
for(indice in [0..batch]){
var view= ImageView{
fitWidth:100
fitHeight:100
translateX: (110 * indice)
preserveRatio: true
cursor: Cursor.HAND
insert view into imgNodes;
on an image loading function:
for(indice in [0..batch]){
imgNodes[indice].image = Image{
width: 100
height: 100
url: imgs[firstItem+indice]
preserveRatio: true
backgroundLoading: true
with backgroundLoading set to true, the images are not displayed. When setting it to false, the images appear. So the urls passed to Image are ok.
If I display the fields error and progress of the Image components, both have the value 0.
I have other components that use preloading and they are working great before showing the problematic component. After, preloading does not work anymore.
It looks like as if the thread used to preload images is blocked.
Can anyone help me with it?
Thanks in advance for your help
Thomas

I'm not shure but i think the only group component wich is updated after insert or delete is a Group, so there is the same problem with V/HBox.
Then this code work for me
package forumsamples;
import javafx.ext.swing.SwingButton;
import javafx.lang.FX;
import javafx.scene.Cursor;
import javafx.scene.Group;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.VBox;
import javafx.scene.Scene;
import javafx.stage.Stage;
* @author Alex
var imgNodes: Group;
// list of url of images to display
var imgs: String[] =
for (n in [1..3]) "file:///E:/dev/images/FA/OUI/{n}.bmp";
//in create function:
//on an image loading function:
function load() {
    for(indice in [0..3]){
        insert ImageView {
            fitWidth:100
            fitHeight:100
            translateX: (110 * indice)
            preserveRatio: true
            cursor: Cursor.HAND
            image: Image{
                width: 100
                height: 100
                url: imgs[indice]
                preserveRatio: true
                backgroundLoading: true
        } into imgNodes.content;
Stage {
    title : ""
    scene: Scene {
        width: 200
        height: 200
        content: [
            VBox {
                content: [
                    SwingButton {
                        text: "Button"
                        action: function() {
                            load();
                    imgNodes = Group { }
}

Similar Messages

  • 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.

  • Creating javaFX Image with InputStream

    Hi,
    I have dataset(Medical Image data), i want to build a javaFX Image,
    Can some one help me how can i construct the image from this.
    is there any way creating a image other than using url?
    Thanks....

    Try this:
    var stream = A.class.getResourceAsStream( "lion1.png");
    Stage {
        title: "Image from stream"
        width: 250
        height: 280
        scene: Scene {
            content: [
                ImageView {
                    image: Image {
                        impl_source: stream
    }

  • 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

  • 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.

  • MBean Info preloading problem:

    Hi.
    I have Weblogic 6.1 cluster running on Solaris. When I start the Admin
    server some times I'm getting this following error. This is not
    happening all time. I have noticed this problem during these following
    cases:
    1. When I forcefully stop the server by kill the service
    2. If I try to start the server immediately after shutdown.
    I would appreciate If some can tell me why does this happen?
    WLCP is /export/home/kana/stage01:/export/home/kana/stage01/bin/jars/SessionPatch.jar:/export/home/kana/stage01/bin/jars/kanaPlatform.jar:/export/home/kana/stage01/etc:/oracle/jdbc/lib/classes12.zip:/export/home/kana/stage01/bin/jars/avs30.jar:/export/home/kana/stage01/bin/jars/comm.jar:/export/home/kana/stage01/bin/jars/cs-tidy.jar:/export/home/kana/stage01/bin/jars/ibm-jlog-2.1.1-english.jar:/ex
    ort/home/kana/stage01/bin/jars/oreilly.jar:/export/home/kana/stage01/bin/jars/ssce.jar:/export/home/kana/stage01/bin/jars/w3c-codec-1.2.jar:/export/home/kana/stage01/bin/jars/lotusxsl.jar:/export/home/kana/stage01/bin/jars/commons-beanutils.jar:/export/home/kana/stage01/bin/jars/commons-collections.jar:/export/home/kana/stage01/bin/jars/commons-digester.jar:/export/home/kana/stage01/bin/jars/apoll
    .jar:/export/home/kana/stage01/bin/jars/apollo_common.jar
    /export/home/kana/stage01:/export/home/kana/stage01/bin/jars/SessionPatch.jar:/export/home/kana/stage01/bin/jars/kanaPlatform.jar:/export/home/kana/stage01/etc:/oracle/jdbc/lib/classes12.zip:/export/home/kana/stage01/bin/jars/avs30.jar:/export/home/kana/stage01/bin/jars/comm.jar:/export/home/kana/stage01/bin/jars/cs-tidy.jar:/export/home/kana/stage01/bin/jars/ibm-jlog-2.1.1-english.jar:/export/hom
    /kana/stage01/bin/jars/oreilly.jar:/export/home/kana/stage01/bin/jars/ssce.jar:/export/home/kana/stage01/bin/jars/w3c-codec-1.2.jar:/export/home/kana/stage01/bin/jars/lotusxsl.jar:/export/home/kana/stage01/bin/jars/commons-beanutils.jar:/export/home/kana/stage01/bin/jars/commons-collections.jar:/export/home/kana/stage01/bin/jars/commons-digester.jar:/export/home/kana/stage01/bin/jars/apollo.jar:/e
    port/home/kana/stage01/bin/jars/apollo_common.jar:/export/home/kana/stage01:/export/home/kana/stage01/bin/jars/SessionPatch.jar:/export/home/kana/stage01/bin/jars/kanaPlatform.jar:/export/home/kana/stage01/etc:/oracle/jdbc/lib/classes12.zip:/export/home/kana/stage01/bin/jars/avs30.jar:/export/home/kana/stage01/bin/jars/comm.jar:/export/home/kana/stage01/bin/jars/cs-tidy.jar:/export/home/kana/stage
    1/bin/jars/ibm-jlog-2.1.1-english.jar:/export/home/kana/stage01/bin/jars/oreilly.jar:/export/home/kana/stage01/bin/jars/ssce.jar:/export/home/kana/stage01/bin/jars/w3c-codec-1.2.jar:/export/home/kana/stage01/bin/jars/lotusxsl.jar:/export/home/kana/stage01/bin/jars/commons-beanutils.jar:/export/home/kana/stage01/bin/jars/commons-collections.jar:/export/home/kana/stage01/bin/jars/commons-digester.ja
    :/export/home/kana/stage01/bin/jars/apollo.jar:/export/home/kana/stage01/bin/jars/apollo_common.jar:.:./lib/CR073072_610sp2.jar:./lib/weblogic_sp.jar:./lib/weblogic.jar:/export/home/kana/common/lib/HTTPClient.zip:/export/home/kana/common/lib/adapter.jar:/export/home/kana/common/lib/castor-0.9.4.1.jar:/export/home/kana/common/lib/commons-collections.jar:/export/home/kana/common/lib/commons-pool.jar
    /export/home/kana/common/lib/grnds.jar:/export/home/kana/common/lib/hsqldb.jar:/export/home/kana/common/lib/jakarta-oro-2.0.2-dev-1.jar:/export/home/kana/common/lib/jdom.jar:/export/home/kana/common/lib/junit.jar:/export/home/kana/common/lib/log4j-1.2beta4.jar:/export/home/kana/common/lib/log4j.jar:/export/home/kana/common/lib/soap.jar:/export/home/kana/common/lib/struts.jar:/export/home/kana/comm
    n/lib/velocity-1.2-dev.jar:/export/home/kana/common/lib/xalan.jar:/export/home/kana/common/lib/xalanj1compat.jar:/export/home/kana/common/lib/xerces.jar:/export/home/kana/stage01/bin/jars/ibm-xml4j-2.0.15.jar:/export/home/kana/stage01/bin/jars/lotusxsl.jar:/export/home/kana/stage01/ApolloProject/config
    /export/home/kana/common/lib/HTTPClient.zip:/export/home/kana/common/lib/adapter.jar:/export/home/kana/common/lib/castor-0.9.4.1.jar:/export/home/kana/common/lib/commons-collections.jar:/export/home/kana/common/lib/commons-pool.jar:/export/home/kana/common/lib/grnds.jar:/export/home/kana/common/lib/hsqldb.jar:/export/home/kana/common/lib/jakarta-oro-2.0.2-dev-1.jar:/export/home/kana/common/lib/jdo
    .jar:/export/home/kana/common/lib/junit.jar:/export/home/kana/common/lib/log4j-1.2beta4.jar:/export/home/kana/common/lib/log4j.jar:/export/home/kana/common/lib/soap.jar:/export/home/kana/common/lib/struts.jar:/export/home/kana/common/lib/velocity-1.2-dev.jar:/export/home/kana/common/lib/xalan.jar:/export/home/kana/common/lib/xalanj1compat.jar:/export/home/kana/common/lib/xerces.jar
    -Dweblogic.Domain=wka1stg01 -Dweblogic.Name=app1stg01
    -Dbea.home=/export/home/wls/weblogic
    -Dweblogic.management.password=weblogic
    -Dweblogic.ProductionModeEnabled=true
    -Djava.security.policy==/export/home/wls/weblogic/wlserver6.1/lib/weblogic.policy
    -Djava.protocol.handler.pkgs=com.kana.ebiz.protocol
    -Dapollo.properties=/export/home/kana/stage01/ApolloProject/config/apollo.properties
    -Dapollologger.properties=/export/home/kana/stage01/ApolloProject/config/logger.properties
    -Dstubbo.properties=/export/home/kana/stage01/ApolloProject/config/stubbo.properties
    -Dfile.encoding=Cp1252
    Starting WebLogic Server ....
    MBean Info preloading problem:
    java.lang.ClassCastException: Assigning instance of class
    java.lang.String to field
    javax.management.MBeanAttributeInfo#attributeType
         at java.io.ObjectInputStream.inputClassFields(ObjectInputStream.java:2271)
         at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:519)
         at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1412)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
         at java.io.ObjectInputStream.inputArray(ObjectInputStream.java:1142)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:374)
         at java.io.ObjectInputStream.inputClassFields(ObjectInputStream.java:2263)
         at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:519)
         at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1412)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:236)
         at weblogic.management.internal.Helper.getMBeanInfo(Helper.java:205)
         at weblogic.management.internal.Helper.preloadMBeanInfos(Helper.java:232)
         at weblogic.management.Admin.initialize(Admin.java:212)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:362)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:202)
         at weblogic.Server.main(Server.java:35)
    MBean Info preloading problem:
    java.lang.ClassCastException: Assigning instance of class
    java.lang.String to field
    javax.management.MBeanFeatureInfo#description
         at java.io.ObjectInputStream.inputClassFields(ObjectInputStream.java:2271)
         at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:519)
         at javax.management.MBeanFeatureInfo.readObject(MBeanFeatureInfo.java:78)
         at java.lang.reflect.Method.invoke(Native Method)
         at java.io.ObjectInputStream.invokeObjectReader(ObjectInputStream.java:2214)
         at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1411)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
         at java.io.ObjectInputStream.inputArray(ObjectInputStream.java:1142)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:374)
         at java.io.ObjectInputStream.inputClassFields(ObjectInputStream.java:2263)
         at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:519)
         at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1412)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:236)
         at weblogic.management.internal.Helper.getMBeanInfo(Helper.java:205)
         at weblogic.management.internal.Helper.preloadMBeanInfos(Helper.java:232)
         at weblogic.management.Admin.initialize(Admin.java:212)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:362)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:202)
         at weblogic.Server.main(Server.java:35)
    MBean Info preloading problem:
    java.lang.ClassCastException: Assigning instance of class
    java.lang.String to field
    javax.management.MBeanAttributeInfo#attributeType
         at java.io.ObjectInputStream.inputClassFields(ObjectInputStream.java:2271)
         at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:519)
         at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1412)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
         at java.io.ObjectInputStream.inputArray(ObjectInputStream.java:1142)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:374)
         at java.io.ObjectInputStream.inputClassFields(ObjectInputStream.java:2263)
         at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:519)
         at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1412)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:236)
         at weblogic.management.internal.Helper.getMBeanInfo(Helper.java:205)
         at weblogic.management.internal.Helper.preloadMBeanInfos(Helper.java:232)
         at weblogic.management.Admin.initialize(Admin.java:212)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:362)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:202)
         at weblogic.Server.main(Server.java:35)
    MBean Info preloading problem:
    --------------- nested within: ------------------
    weblogic.management.configuration.ConfigurationException: Error
    creating mbean, type: CustomRealm, parent:
    wka1stg01:Name=wka1stg01,Type=Domain, objectName:
    wka1stg01:Name=defaultLDAPRealmForNetscapeDirectoryServer,Type=CustomRealm
    while parsing XML config file - with nested exception:
    [weblogic.management.MBeanCreationException:  - with nested exception:
    [weblogic.management.MBeanCreationException:  - with nested exception:
    [java.lang.reflect.InvocationTargetException - with target exception:
    [java.lang.ClassCastException: Assigning instance of class
    java.lang.String to field
    javax.management.MBeanAttributeInfo#attributeType]]]]
         at weblogic.management.internal.xml.ConfigurationParser$ConfigurationHandler.createAdminMBean(ConfigurationParser.java:281)
         at weblogic.management.internal.xml.ConfigurationParser$ConfigurationHandler.startElement(ConfigurationParser.java:183)
         at weblogic.apache.xerces.parsers.SAXParser.startElement(SAXParser.java:1340)
         at weblogic.apache.xerces.validators.common.XMLValidator.callStartElement(XMLValidator.java:1183)
         at weblogic.apache.xerces.framework.XMLDocumentScanner.scanElement(XMLDocumentScanner.java:1876)
         at weblogic.apache.xerces.framework.XMLDocumentScanner$ContentDispatcher.dispatch(XMLDocumentScanner.java:1252)
         at weblogic.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:381)
         at weblogic.apache.xerces.framework.XMLParser.parse(XMLParser.java:967)
         at weblogic.management.internal.xml.ConfigurationParser.parse(ConfigurationParser.java:105)
         at weblogic.management.internal.xml.XmlFileRepository.loadDomain(XmlFileRepository.java:261)
         at weblogic.management.internal.xml.XmlFileRepository.loadDomain(XmlFileRepository.java:223)
         at java.lang.reflect.Method.invoke(Native Method)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:636)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:621)
         at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:359)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
         at $Proxy1.loadDomain(Unknown Source)
         at weblogic.management.AdminServer.configureFromRepository(AdminServer.java:188)
         at weblogic.management.AdminServer.configure(AdminServer.java:173)
         at weblogic.management.Admin.initialize(Admin.java:239)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:362)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:202)
         at weblogic.Server.main(Server.java:35)
    Reason: Fatal initialization exception

    You should post this to the weblogic.developer.interest.management
    newsgroup.
    "siva" <[email protected]> wrote in message
    news:[email protected]...
    Hi.
    I have Weblogic 6.1 cluster running on Solaris. When I start the Admin
    server some times I'm getting this following error. This is not
    happening all time. I have noticed this problem during these following
    cases:
    1. When I forcefully stop the server by kill the service
    2. If I try to start the server immediately after shutdown.
    I would appreciate If some can tell me why does this happen?
    WLCP is/export/home/kana/stage01:/export/home/kana/stage01/bin/jars/SessionPatch.ja
    r:/export/home/kana/stage01/bin/jars/kanaPlatform.jar:/export/home/kana/stag
    e01/etc:/oracle/jdbc/lib/classes12.zip:/export/home/kana/stage01/bin/jars/av
    s30.jar:/export/home/kana/stage01/bin/jars/comm.jar:/export/home/kana/stage0
    1/bin/jars/cs-tidy.jar:/export/home/kana/stage01/bin/jars/ibm-jlog-2.1.1-eng
    lish.jar:/ex
    >
    ort/home/kana/stage01/bin/jars/oreilly.jar:/export/home/kana/stage01/bin/jar
    s/ssce.jar:/export/home/kana/stage01/bin/jars/w3c-codec-1.2.jar:/export/home
    /kana/stage01/bin/jars/lotusxsl.jar:/export/home/kana/stage01/bin/jars/commo
    ns-beanutils.jar:/export/home/kana/stage01/bin/jars/commons-collections.jar:
    /export/home/kana/stage01/bin/jars/commons-digester.jar:/export/home/kana/st
    age01/bin/jars/apoll
    .jar:/export/home/kana/stage01/bin/jars/apollo_common.jar
    /export/home/kana/stage01:/export/home/kana/stage01/bin/jars/SessionPatch.ja
    r:/export/home/kana/stage01/bin/jars/kanaPlatform.jar:/export/home/kana/stag
    e01/etc:/oracle/jdbc/lib/classes12.zip:/export/home/kana/stage01/bin/jars/av
    s30.jar:/export/home/kana/stage01/bin/jars/comm.jar:/export/home/kana/stage0
    1/bin/jars/cs-tidy.jar:/export/home/kana/stage01/bin/jars/ibm-jlog-2.1.1-eng
    lish.jar:/export/hom
    >
    /kana/stage01/bin/jars/oreilly.jar:/export/home/kana/stage01/bin/jars/ssce.j
    ar:/export/home/kana/stage01/bin/jars/w3c-codec-1.2.jar:/export/home/kana/st
    age01/bin/jars/lotusxsl.jar:/export/home/kana/stage01/bin/jars/commons-beanu
    tils.jar:/export/home/kana/stage01/bin/jars/commons-collections.jar:/export/
    home/kana/stage01/bin/jars/commons-digester.jar:/export/home/kana/stage01/bi
    n/jars/apollo.jar:/e
    >
    port/home/kana/stage01/bin/jars/apollo_common.jar:/export/home/kana/stage01:
    /export/home/kana/stage01/bin/jars/SessionPatch.jar:/export/home/kana/stage0
    1/bin/jars/kanaPlatform.jar:/export/home/kana/stage01/etc:/oracle/jdbc/lib/c
    lasses12.zip:/export/home/kana/stage01/bin/jars/avs30.jar:/export/home/kana/
    stage01/bin/jars/comm.jar:/export/home/kana/stage01/bin/jars/cs-tidy.jar:/ex
    port/home/kana/stage
    >
    1/bin/jars/ibm-jlog-2.1.1-english.jar:/export/home/kana/stage01/bin/jars/ore
    illy.jar:/export/home/kana/stage01/bin/jars/ssce.jar:/export/home/kana/stage
    01/bin/jars/w3c-codec-1.2.jar:/export/home/kana/stage01/bin/jars/lotusxsl.ja
    r:/export/home/kana/stage01/bin/jars/commons-beanutils.jar:/export/home/kana
    /stage01/bin/jars/commons-collections.jar:/export/home/kana/stage01/bin/jars
    /commons-digester.ja
    >
    :/export/home/kana/stage01/bin/jars/apollo.jar:/export/home/kana/stage01/bin
    /jars/apollo_common.jar:.:./lib/CR073072_610sp2.jar:./lib/weblogic_sp.jar:./
    lib/weblogic.jar:/export/home/kana/common/lib/HTTPClient.zip:/export/home/ka
    na/common/lib/adapter.jar:/export/home/kana/common/lib/castor-0.9.4.1.jar:/e
    xport/home/kana/common/lib/commons-collections.jar:/export/home/kana/common/
    lib/commons-pool.jar
    >
    /export/home/kana/common/lib/grnds.jar:/export/home/kana/common/lib/hsqldb.j
    ar:/export/home/kana/common/lib/jakarta-oro-2.0.2-dev-1.jar:/export/home/kan
    a/common/lib/jdom.jar:/export/home/kana/common/lib/junit.jar:/export/home/ka
    na/common/lib/log4j-1.2beta4.jar:/export/home/kana/common/lib/log4j.jar:/exp
    ort/home/kana/common/lib/soap.jar:/export/home/kana/common/lib/struts.jar:/e
    xport/home/kana/comm
    >
    n/lib/velocity-1.2-dev.jar:/export/home/kana/common/lib/xalan.jar:/export/ho
    me/kana/common/lib/xalanj1compat.jar:/export/home/kana/common/lib/xerces.jar
    :/export/home/kana/stage01/bin/jars/ibm-xml4j-2.0.15.jar:/export/home/kana/s
    tage01/bin/jars/lotusxsl.jar:/export/home/kana/stage01/ApolloProject/config
    >
    /export/home/kana/common/lib/HTTPClient.zip:/export/home/kana/common/lib/ada
    pter.jar:/export/home/kana/common/lib/castor-0.9.4.1.jar:/export/home/kana/c
    ommon/lib/commons-collections.jar:/export/home/kana/common/lib/commons-pool.
    jar:/export/home/kana/common/lib/grnds.jar:/export/home/kana/common/lib/hsql
    db.jar:/export/home/kana/common/lib/jakarta-oro-2.0.2-dev-1.jar:/export/home
    /kana/common/lib/jdo
    >
    .jar:/export/home/kana/common/lib/junit.jar:/export/home/kana/common/lib/log
    4j-1.2beta4.jar:/export/home/kana/common/lib/log4j.jar:/export/home/kana/com
    mon/lib/soap.jar:/export/home/kana/common/lib/struts.jar:/export/home/kana/c
    ommon/lib/velocity-1.2-dev.jar:/export/home/kana/common/lib/xalan.jar:/expor
    t/home/kana/common/lib/xalanj1compat.jar:/export/home/kana/common/lib/xerces
    .jar
    -Dweblogic.Domain=wka1stg01 -Dweblogic.Name=app1stg01
    -Dbea.home=/export/home/wls/weblogic
    -Dweblogic.management.password=weblogic
    -Dweblogic.ProductionModeEnabled=true
    -Djava.security.policy==/export/home/wls/weblogic/wlserver6.1/lib/weblogic.policy
    -Djava.protocol.handler.pkgs=com.kana.ebiz.protocol
    -Dapollo.properties=/export/home/kana/stage01/ApolloProject/config/apollo.properties
    -Dapollologger.properties=/export/home/kana/stage01/ApolloProject/config/logger.properties
    -Dstubbo.properties=/export/home/kana/stage01/ApolloProject/config/stubbo.properties
    -Dfile.encoding=Cp1252
    Starting WebLogic Server ....
    MBean Info preloading problem:
    java.lang.ClassCastException: Assigning instance of class
    java.lang.String to field
    javax.management.MBeanAttributeInfo#attributeType
    at java.io.ObjectInputStream.inputClassFields(ObjectInputStream.java:2271)
    at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:519)
    at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1412)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
    at java.io.ObjectInputStream.inputArray(ObjectInputStream.java:1142)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:374)
    at java.io.ObjectInputStream.inputClassFields(ObjectInputStream.java:2263)
    at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:519)
    at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1412)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:236)
    at weblogic.management.internal.Helper.getMBeanInfo(Helper.java:205)
    at weblogic.management.internal.Helper.preloadMBeanInfos(Helper.java:232)
    at weblogic.management.Admin.initialize(Admin.java:212)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:362)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:202)
    at weblogic.Server.main(Server.java:35)
    MBean Info preloading problem:
    java.lang.ClassCastException: Assigning instance of class
    java.lang.String to field
    javax.management.MBeanFeatureInfo#description
    at java.io.ObjectInputStream.inputClassFields(ObjectInputStream.java:2271)
    at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:519)
    at javax.management.MBeanFeatureInfo.readObject(MBeanFeatureInfo.java:78)
    at java.lang.reflect.Method.invoke(Native Method)
    atjava.io.ObjectInputStream.invokeObjectReader(ObjectInputStream.java:2214)
    at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1411)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
    at java.io.ObjectInputStream.inputArray(ObjectInputStream.java:1142)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:374)
    at java.io.ObjectInputStream.inputClassFields(ObjectInputStream.java:2263)
    at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:519)
    at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1412)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:236)
    at weblogic.management.internal.Helper.getMBeanInfo(Helper.java:205)
    at weblogic.management.internal.Helper.preloadMBeanInfos(Helper.java:232)
    at weblogic.management.Admin.initialize(Admin.java:212)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:362)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:202)
    at weblogic.Server.main(Server.java:35)
    MBean Info preloading problem:
    java.lang.ClassCastException: Assigning instance of class
    java.lang.String to field
    javax.management.MBeanAttributeInfo#attributeType
    at java.io.ObjectInputStream.inputClassFields(ObjectInputStream.java:2271)
    at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:519)
    at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1412)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
    at java.io.ObjectInputStream.inputArray(ObjectInputStream.java:1142)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:374)
    at java.io.ObjectInputStream.inputClassFields(ObjectInputStream.java:2263)
    at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:519)
    at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1412)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:236)
    at weblogic.management.internal.Helper.getMBeanInfo(Helper.java:205)
    at weblogic.management.internal.Helper.preloadMBeanInfos(Helper.java:232)
    at weblogic.management.Admin.initialize(Admin.java:212)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:362)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:202)
    at weblogic.Server.main(Server.java:35)
    MBean Info preloading problem:
    --------------- nested within: ------------------
    weblogic.management.configuration.ConfigurationException: Error
    creating mbean, type: CustomRealm, parent:
    wka1stg01:Name=wka1stg01,Type=Domain, objectName:
    wka1stg01:Name=defaultLDAPRealmForNetscapeDirectoryServer,Type=CustomRealm
    while parsing XML config file - with nested exception:
    [weblogic.management.MBeanCreationException:  - with nested exception:
    [weblogic.management.MBeanCreationException:  - with nested exception:
    [java.lang.reflect.InvocationTargetException - with target exception:
    [java.lang.ClassCastException: Assigning instance of class
    java.lang.String to field
    javax.management.MBeanAttributeInfo#attributeType]]]]
    atweblogic.management.internal.xml.ConfigurationParser$ConfigurationHandler.cr
    eateAdminMBean(ConfigurationParser.java:281)
    atweblogic.management.internal.xml.ConfigurationParser$ConfigurationHandler.st
    artElement(ConfigurationParser.java:183)
    atweblogic.apache.xerces.parsers.SAXParser.startElement(SAXParser.java:1340)
    atweblogic.apache.xerces.validators.common.XMLValidator.callStartElement(XMLVa
    lidator.java:1183)
    atweblogic.apache.xerces.framework.XMLDocumentScanner.scanElement(XMLDocumentS
    canner.java:1876)
    atweblogic.apache.xerces.framework.XMLDocumentScanner$ContentDispatcher.dispat
    ch(XMLDocumentScanner.java:1252)
    atweblogic.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentSca
    nner.java:381)
    at weblogic.apache.xerces.framework.XMLParser.parse(XMLParser.java:967)
    atweblogic.management.internal.xml.ConfigurationParser.parse(ConfigurationPars
    er.java:105)
    atweblogic.management.internal.xml.XmlFileRepository.loadDomain(XmlFileReposit
    ory.java:261)
    atweblogic.management.internal.xml.XmlFileRepository.loadDomain(XmlFileReposit
    ory.java:223)
    at java.lang.reflect.Method.invoke(Native Method)
    atweblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:636)
    atweblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:6
    21)
    atweblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:359)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy1.loadDomain(Unknown Source)
    atweblogic.management.AdminServer.configureFromRepository(AdminServer.java:188
    at weblogic.management.AdminServer.configure(AdminServer.java:173)
    at weblogic.management.Admin.initialize(Admin.java:239)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:362)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:202)
    at weblogic.Server.main(Server.java:35)
    Reason: Fatal initialization exception

  • 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.

  • How to add javafx image project in my jsp page ?

    how to add javafx image project in my jsp page ?

    Create your JavaFX application as an Applet... then embed the applet object inside your html. I'm sure if you create a javafx netbeans project and hit build... you get a html file that shows you how to load the built binary output into the page.

  • 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

  • Preloader problems - disappears at 60%

    Hi,
    I have two Preloader problems for a project I'm working on right now.
    1. The Main Site preloader disappears when 60% is loaded...with a blank screen lag until moving to the main screen
    2. My external .swf Preloader is still on screen after an external .swf has loaded. I can hear the external .swf playing while watching my loader bar at about 20-40%.
    I'm going to show the code I have for each...hopefully someone can help. Thanks!
    Main Site Preloader:
    var yChange = 109.2;
    var yStart = 330.2;
    myInterval = setInterval(preload,100);
    function preload() {
    var current = _root.getBytesLoaded();
    var total = _root.getBytesTotal();
    var pctLoaded = Math.round(current/total*100);
    mask_mc._y = yStart - yChange/100*pctLoaded;
    if (current >= total) {
      clearInterval(myInterval);
      gotoAndStop("Main",1);
    External SWF Preloader:
    var mcLoader:MovieClipLoader = new MovieClipLoader();
    var myListener:Object = new Object();
    mcLoader.addListener(myListener);
    myListener.onLoadProgress = function(target_mc,bytesLoaded,bytesTotal) {
    extLoader_mc._visible = true;
    var pctLoaded = Math.round(bytesLoaded/bytesTotal*100);
    extLoader_mc.extLoaderBar_mc._xscale = pctLoaded;
    if (bytesLoaded >= bytesTotal) {
      extLoader_mc._visible = false;

    change soundHandler in the fla to:
    // this code below is on the main timeline?
    var soundHandler:AdobeCaptivate.rdSoundHandler = new AdobeCaptivate.rdSoundHandler(this);
    and change rdSoundHandler:
    import AdobeCaptivate.rdSound;
    import flash.display.MovieClip;  // if this is as3
    class AdobeCaptivate.rdSoundHandler extends Object
    var m_sounds:Object;
    var m_movieSound:rdSound;
    var mainMC:MovieClip;
    function rdSoundHandler(mc:MovieClip)
      m_sounds = new Object();
      m_movieSound = null;
      mainMC=mc;
    function attachSound(key:Number, id:String):rdSound
      var sound:rdSound;
      if(m_sounds[key] == undefined || m_sounds[key] == null)
      { //attach new sound to the handler
       var newSound:rdSound = new rdSound(mainMC);
    // and now you have to find rdSound() class and post that
       newSound.attachSound(id);
       sound = m_sounds[key] = newSound;
      else
       sound = m_sounds[key];
       sound.stopSound();
      return sound;
    function detachSound(key:Number)
    { //remove the sound object from the handler
      if(m_sounds[key] != undefined && m_sounds[key] != null)
       var sound:rdSound = m_sounds[key];
       sound.stopSound();
       m_sounds[key] = undefined;
    function playAllSounds(bPause:Boolean)
      if(bPause == true)
      { //pause all sounds
       if(m_movieSound != null)
        m_movieSound.pause();
       for(var key in m_sounds)
        m_sounds[key].pause();
      else
      { //resume all sounds
       if(m_movieSound != null)
        m_movieSound.play();
       for(var key in m_sounds)
        m_sounds[key].play();

  • 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.

  • RH8 image map problem

    I created an image map back in RoboHelp 6 and it worked perfectly. When I converted my project recently to RoboHelp 8, the image map pop-ups are not working correctly. I've checked the properties of the image map and they are correct. But the pop-up boxes do not display correctly. I'm going to attached an example of how the same one displays in RH6 and RH8 and a screen shot of my settings.
    Can anyone help me with this?

    After much trial and error testing around this image map issue, I cannot seem to find a fix for image maps within RoboHelp 8. No matter what I've tried (and it was a lot), nothing seems to fix the image map problem. Even creating a new image map on a new page with totally different info, pop up pages, image, etc. and turning OFF all breadcrumbs - the image map does not display correctly once generated (nor in preview).
    I have found a VERY TEDIOUS workaround for this (that I'm not happy about). If I take my original pop-up topic htm pages (9 of them) from my RoboHelp 6 project and the original eHlpDhtm.js file from RH6 and place them in my output Help file from RH8 (overwriting the RH8 with the RH6 files), then the image map works correctly.
    The eHlpDhtm.js file has many more scripts in it than just the image map triggers, so I'm not sure what all else I'm affecting when I'm fixing one problem (i.e. not sure how many more problems I'm creating at the same time when fixing one problem.)
    It's almost like the "breadcrumbs" feature in RH8 has broken the image maps feature in RH8.
    I'm still up for more suggestions as how to fix this if anyone has any ideas.

Maybe you are looking for

  • Fpga HDL code generator

        Hello, It seems that FPGA module cannot interface custom FPGA board. I wonder if FPGA can be used as a HDL code generator. Here is what I'd like to do : - code an algorithm in a LabVIEW block diagram - make a HDL from the BG with FPGA module - bu

  • Webservice Exception from Webdynpro

    Hi, We are on 7.1 SP04 Patch 1. We have created a webservice with http and None Authentication and deployed on EP 7.0 server. We have set a constant User Name and Password in Visual Admin. We are able to execute this webservice successfully from Webs

  • Cannot Access video clips from external hard drive

    I have been using PE9 for six to nine months.  My normal workflow has been to create a separate project file on a 500g external HD. This file includes all video clips (.mov files) and the Project.PREL file. This worked great until just recently.  I c

  • Adding Canvas to JScrollPane

    I'm trying to add a Canvas to a JScrollPane, but it always seems to show the ENTIRE canvas instead of just a scrollable portion of it. I've read about and tried examples using methods such as 'setPreferredSize' for both the scroll pane and it's conta

  • Absolute beginner trying to create folders in Email

    I am a beginner and have also been dabbling with Smart Mailboxes as my objective is to 'order' primarily my work Emails into 'manageable' folders (eg. all mails relating to a particular topic or Event I am managing). Using "rules" to filter is simply