*.wrl file loaded into applet!!!

I am useing vrml97 to load *.wrl file, And it works fine in application mode.
But when I run it as applet mode,it report an error:applet notinited.
I use the *.obj file loaded into applet, and it works fine.
What's the problem between *.obj and *.wrl?
How can I loaded *.wrl into my applet?

Just a little more information. When I enter owa_util.mime_header('image/jpeg') I can't display the file. It just shows up with a red x for the file.
When I enter owa_util.mime_header('image/jpg') it displays the file, but in the format
¿¿¿¿JFIF¿¿-Intel(R) JPEG Library, version [2.0.16.48]¿¿C
This is the way I would expect it to look if I opened it with Notepad, or an application that doesn't recognize jpg files. Can anyone tell me what I am doing wrong?? Thanks.

Similar Messages

  • I need format for data in excel file load into info cube to planning area.

    Hi gurus,
    I need format for data in excel file load into info cube to planning area.
    can you send me what should i maintain header
    i have knowledge on like
    plant,location,customer,product,history qty,calander
    100,delhi,suresh,nokia,250,2011211
    if it is  right or wrong can u explain  and send me about excel file format.
    babu

    Hi Babu,
    The file format should be same as you want to upload. The sequence of File format should be same communication structure.
    Like,
    Initial columns with Characteristics (ex: plant,location,customer,product)
    date column (check for data format) (ex: calander)
    Last columsn with Key figures (history qty)
    Hope this helps.
    Regards,
    Nawanit

  • Refer to an object in Edge from an onclick="" in a .html file loaded into an iFrame in the animation

    HI, I am trying to figure out the Edge hierachies by stumbling my way through coding reference attempts. I've hit a wall...
    How can I refer to an object and a global function in my Edge animation from an onclick=""  located in an .html file loaded into an iFrame created within the master/parent Edge animation. Here's what I have...
    My main index.html is an Edge animation. One object <div> is a box created within Edge. I have added an iFrame with the Edge code:
    sym.$("MenuPanelScreen").html('<iframe src="list_images_cemetery.html" width="267" height="670" sandbox="allow-same-origin allow-scripts allow-top-navigation"></iframe>');
    That .html file which loads into the iframe within the animation contains thumbnails in <a> tags and contain onclick="" statements that should call a function within the Edge file.
    Eventually, I want the statements to read something like... onclick="changePic('Dragon.jpg', 'The Dragon', 'Saint and Worm')"
    However, I had no idea how to reference the changePic() function in the Edge animation. So, just to figure out how to reference the parent animation from an html in an iFrame, I change the onclick="" statements to...
    <a onclick="alert('Try to hide Nameplate'); sym.$('NamePlate_sym').hide();" >  <img src="gallery/TheyGaveUpTheirDead.jpg" width="80" alt="Angel and Worm" /></a>
    I first wanted to see if I could hide an Edge Symbol or div/element from the child html. I tried the following...
    onclick="alert('Try to hide Nameplate'); sym.$('NamePlate_sym', window.parent.document).hide();"
    I tried a few other variations that I won't bore you with. Can someone help me with the proper reference to effect an Edge element?
    Furthermore, I eventually wnat the onclick="" statement to reference a global function on attached to the Edge stage in the compositionReady event of the stage. The function is...
    window.changePic=function(myFileCurr, myLabelCurr, myDescriptionCurr) {
    alert("in changePick");
      document.getElementById("myImage").src="gallery/"+myFileCurr;
      document.getElementById("myImageLabel").innerHTML=myLabelCurr;
      document.getElementById("myImageDescr").innerHTML=myDescriptionCurr;
    I hope someone can point me in the right direction. Please forgive my ignorance. i am just getting back into coding and learning the intricacies of Jscript and jQuery. Thanks!

    Hi again Elaine,
    I actually had some success after many attempts with using your code. I can control the .stop() and .play() of the "NamePlate_sym" symbol. Yet, I am still having trouble doing anything else with it. I cannot .hide() it, nor use .html("Change text") on another element on the stage called"Rectangle". If I can accomplish that and all a global function on the stage, I'm in good shape.
    I placed the following script in the header of the .html file that gets loaded into the iFrame within the Edge composition:
      <script type="text/javascript">
       window.parent.AdobeEdge.bootstrapCallback(function(compId) {
       comp = window.parent.AdobeEdge.getComposition(compId).getStage();
       alert("CompID is "+compId);
       var symbol = document.createElement('div');
       symbol.innerHTML = 'Rotate';
       symbol.style.cssText = 'background-color:#fea; width: 50px; text-align: center;';
       symbol.style.cursor = 'pointer';
       symbol.onclick = function() {
        if (comp.getSymbol("NamePlate_sym").isPlaying()) {
         comp.getSymbol("NamePlate_sym").stop();
        else {
         comp.getSymbol("NamePlate_sym").play();
       window.parent.document.body.appendChild(symbol);
            </script>
    Once I put window.parent. in the first two lines of code and the last, my test worked. As I mentioned earlier though, I still can't get the syntax correct to .hide() an element (i.e. comp.getSymbol("NamePlate_sym").hide(); does not work), or more importantly, change the innerHTML value of an element on the stage. The code either does nothing or freezes.
    Thanks... Tommy

  • How to list the JAR files loaded into the Oracle Database ?

    How to list the JAR files loaded into the Oracle Database ?

    From 11.1 onwards, the below two views are available to identify the jar files loaded into the Database.
    JAVAJAR$
    JAVAJAROBJECTS$
    By querying the JAVAJAR$ view you can know information about the JAR files loaded into the Database and using JAVAJAROBJECTS$ view you can find all the java objects associated with the given JAR file.
    These views are populated everytime you use LOADJAVA with "-jarsasdbobjects" option to load your custom java classes.
    But unfortunately this feature is available only from 11.1 onwards and there is no clear workaround for above in 10.2 or earlier.

  • How do I know when a file loaded into a Sound object is invalid?

    I'm writing an app that allows the user to play various sound files.
    Some of these files are mp3, but some may also be ogg, wma, etc.  The selection is out of my control, so I need the sound API to tell me if it can't play something.
    To test, I loaded some test files into a sound object like so:
                    var urlRequest:URLRequest = new URLRequest("http://support.microsoft.com/support/MediaPlayer/wmptest/samples/new/mediaexample.wma");
                    var sound:Sound = new Sound();
                    var soundChannel:SoundChannel = sound.play();
    Even though Flex doesn't play wma's there is no error information or null objects anywhere.  Everthings seems to be fine to flex, I can even register for progress events and see the wma being loaded.
    Just to see how far this goes, I loaded a gif instead of an audio file and the same thing happened.  Progress went fine with no errors of any kind even though I registered for every listed event.  As expected though, no sound played from the gif file.
    What is the recommended way for checking if a file is not playable?

    I'm looking more for an "is it playable" value (since it might be an FLA or FLV as well).
    Even a meaningful length value would work (for some reason duration is set to a value even when loading a gif file - not sure what it means for a GIF to have a length of 96 milliseconds).
    For now I'll have to filter on extension as you mentioned.

  • Error displaying a jpg file loaded into a table with blob field

    This may not be the correct forum for this question, but if it isn't could someone direct me to the correct one.
    I have created a table with a blob field in which I have loaded a jpg image. This appeared to work correctly, but when I try to display the image in internet explorer it comes back and tells me that it doesn't recognize the file type. Enclosed is the table create, load, and display pl/sql code. Can anyone tell me what I am doing wrong. Thanks. For the mime/header I used owa_util.mime_header('images/jpg') because my image is a jpg file.
    The database is 10g
    -- Create table
    create table PHOTOS
    IMAGEID NUMBER(10),
    IMAGE BLOB,
    IMAGE_NAME VARCHAR2(50)
    load image
    CREATE OR REPLACE PROCEDURE load_file ( p_id number, p_photo_name in varchar2) IS
    src_file BFILE;
    dst_file BLOB;
    lgh_file BINARY_INTEGER;
    BEGIN
    src_file := bfilename('SNAPUNCH', p_photo_name);
    -- insert a NULL record to lock
    INSERT INTO photos (imageid, image_name, image)
    VALUES (p_id , p_photo_name, EMPTY_BLOB())
    RETURNING image INTO dst_file;
    -- lock record
    SELECT image
    INTO dst_file
    FROM photos
    WHERE imageid = p_id AND image_name = p_photo_name
    FOR UPDATE;
    -- open the file
    dbms_lob.fileopen(src_file, dbms_lob.file_readonly);
    -- determine length
    lgh_file := dbms_lob.getlength(src_file);
    -- read the file
    dbms_lob.loadfromfile(dst_file, src_file, lgh_file);
    -- update the blob field
    UPDATE photos
    SET image = dst_file
    WHERE imageid = p_id
    AND image_name = p_photo_name;
    -- close file
    dbms_lob.fileclose(src_file);
    END load_file;
    display image
    PROCEDURE display_image(p_id NUMBER) IS
    Photo BLOB;
    v_amt NUMBER DEFAULT 4096;
    v_off NUMBER DEFAULT 1;
    v_raw RAW(4096);
    BEGIN
    -- Get the blob image
    SELECT image
    INTO Photo
    FROM PHOTOS
    WHERE IMAGEID = p_id;
    owa_util.mime_header('images/jpg');
    BEGIN
    LOOP
    -- Read the BLOB
    dbms_lob.READ(Photo, v_amt, v_off, v_raw);
    -- Display image
    htp.prn(utl_raw.cast_to_varchar2(v_raw));
    v_off := v_off + v_amt;
    v_amt := 4096;
    END LOOP;
    dbms_lob.CLOSE(Photo);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    NULL;
    END;
    END;
    The url I enter is: http://webdev:7777/tisinfo/tis.tiss0011.Display_Image?p_id=1

    Just a little more information. When I enter owa_util.mime_header('image/jpeg') I can't display the file. It just shows up with a red x for the file.
    When I enter owa_util.mime_header('image/jpg') it displays the file, but in the format
    ¿¿¿¿JFIF¿¿-Intel(R) JPEG Library, version [2.0.16.48]¿¿C
    This is the way I would expect it to look if I opened it with Notepad, or an application that doesn't recognize jpg files. Can anyone tell me what I am doing wrong?? Thanks.

  • FLAT FILE LOADING INTO TRANSACTION CUBE

    Hi Guru's,
                 I'm working on bps to load flat file into trasaction cube.
    when i'm actiavting init Functin module, i'm getting the following error.
    'IS NO COMPONENT EXIST WITH THE NAME PARNM'.
    THE ERROR IS COMING  WHEN THE FM IS READING FILE NAME.
    tHANKS IN ADVANCE.

    Hi Vijay,
    Just check Function Module Parameters:
    IMPORT: I_AREA        TYPE     UPC_Y_AREA
                  I_PLEVEL        TYPE     UPC_Y_PLEVEL
                  I_PACKAGE   TYPE     UPC_Y_PACKAGE
                  I_METHOD        TYPE     UPC_Y_METHOD
                  I_PARAM        TYPE     UPC_Y_PARAM
                  IT_EXITP        TYPE     UPF_YT_EXITP
                  ITO_CHASEL TYPE     UPC_YTO_CHASEL
                  ITO_CHA        TYPE     UPC_YTO_CHA
                  ITO_KYF        TYPE     UPC_YTO_KYF
    EXPORT: ETO_CHAS  TYPE     ANY TABLE
                   ET_MESG       TYPE     UPC_YT_MESG

  • Retreive contents of "*.properties" file loaded into jvm in oracle 10.2.0.1

    Hi,
    I have a 10g database with a few jars loaded. One of the files, a .properties file is required to be changed. Whilst I understand how to use loadjava and dropjava, I would like to retrieve the "*.properties" file that is currenly installed in the db.
    Any thoughts on how to do this would be much appreciated....
    regards
    Sc0tt...

    Scott,
    As far as I know, when loading JAR files into the Oracle database, the files contained in the JAR are extracted and stored separately. Hence you should be able to drop and load only your desired properties file. The following query may help verify this:
    (Assuming the properties file is in the schema of the current user.)
    select *
      from USER_OBJECTS
    where DBMS_JAVA.LONGNAME(OBJECT_NAME) = 'name of your properties file'Good Luck,
    Avi.

  • Flat File loading into Hierarchy

    Dear Gurus,
    I am trying to load a hierarchy from a flat file.  I am not able to do it successfully.
    I have a small doubt.  Do we need to load the master data into the master data table before loading the hierarchy?
      Explanation:
    I have an info object zcountry  and i had added zzone and zstate as external characteristics in hierarchy.  the hierarchy structure should be  country with 2 nodes zone1,zone2 and zone one should have 2 states under it as nodes.  In this case do I need to maintain the master data in the infoobjects before loading the hierarchies with flat file.?
    <b>Node ID     InfoObject     Node Name     Link     Parent ID     Language     Short-Txt     Medium-Txt     Long-Txt</b>
    1;     zcountry;     CountryNode;          0;     en;     CountryNode;     CountryNode;     CountryNode;
    2;     zzone1;     SouthZone;          1;     en;     SouthZoneNode;     SouthZoneNode;     SouthZoneNode;
    3;     zstate;     AndhraPradesh;          2;     en;     AndhraPradesh;     AndhraPradesh;     AndhraPradesh;
    4     zstate     Karnataka          2     en     Karnataka     Karnataka     Karnataka
    5     zzone1     NorthZone          1     en     NorthZoneNode     NorthZoneNode     NorthZoneNode
    6     zstate     Haryana          5     en     Haryana     Haryana     Haryana
    7     zstate     Rajastan          5     en     Rajastan     Rajastan     Rajastan
    This is how the flat file looks like.
    Kindly give me a solution.
    Regards
    Mohan Kumar.
    Message was edited by:
            mohan kumar
    Message was edited by:
            mohan kumar

    Dear Gurus,
    I also followed the same weblog  but still i am not able to do that.  That is the reason why I asked the question in that detail (with the data I am trying to load).
    Regards
    Mohan Kumar

  • Cannot find files loaded into my acrobat cloud account

    Hello!
    I have countless of time loaded PDF files into my acrobat cloud account but anytime I try to access the files they are not there.
    What could be wrong?
    Thank you

    Hi dsamp7,
    Welcome to the Apple Support Communities!
    It sounds to me like your iPad is still linked with your Find My iPhone account. You can remove the device from Find My iPhone but keep in mind, doing this will remove the Activation Lock as well. Please use the following article as a reference.
    iCloud: Remove your device from Find My iPhone
    http://support.apple.com/kb/PH2702
    Have a great day,
    Joe

  • No connections of photo files loaded into Organizer - Elements 13 - PC

    I downloaded Elements 13.  I already had Elements 9.  Download went smoothly but there must be an issue with the download.  All files I import into Organizer are fuzzy and very low resolution. If I click on a photo to Edit, it says that I have to reconnect.  I didn't have it in there in the first place.  I have been playing with this for a week so I uninstalled and re-installed and still same issue. Can anyone help?? Thanks.

    Hi,
    It sound like your files have gone missing.
    Please follow this article to reconnect missing files:
    http://helpx.adobe.com/elements-organizer/using/troubleshooting-catalog-issues.html#reconn ect_missing_files_in_a_catalog
    Thanks,
    Anwesha

  • I need to have a URL that's loading from a batch file load into the side bar instead of the main window and I can't figure out what to add to the command line to make it do this.

    I've seen similar questions, but no answers. Most commonly, I've seen people wanting to know how to code a link on their website to make it open in the sidebar. That would be handy too.
    My own goal here is to make all the pages I need open for work open where I want them, all in one click.

    I don't have a Recently Added playlist.  However, I discovered that the file I had named Eating Healthy was given the name You Can Enjoy Eating Healthy when it copied to iTunes.  I'm guessing iTunes pulled the full name of the piece from the internet.  Upshot--the mp3 did transfer to iTunes on all 3 tries, but I was looking in my alphabetized list under E, not Y, so I didn't see it there.  Thanks for your help. 

  • Remove / Update files loaded into a personalised table

    Hello All,
    I have a table in my database which holds pdf documents that i have uploaded using mime types, id's etc from the htmldb_files table. I am doing this using file browse then writing the file to my own table ( approvals ).
    I need to be able to do the following :-
    1: Remove / update the files with new versions or in case wrong file is uploaded to the record.
    2: Have a search that searches inside the BLOB columns contain in two seperate tables and return in one report the records holding files that contain the specified "term" by the user.
    Any help will be much appreciated
    Thanks All
    Rob

    Just a little more information. When I enter owa_util.mime_header('image/jpeg') I can't display the file. It just shows up with a red x for the file.
    When I enter owa_util.mime_header('image/jpg') it displays the file, but in the format
    ¿¿¿¿JFIF¿¿-Intel(R) JPEG Library, version [2.0.16.48]¿¿C
    This is the way I would expect it to look if I opened it with Notepad, or an application that doesn't recognize jpg files. Can anyone tell me what I am doing wrong?? Thanks.

  • .mov file loads into lightroom ok but crashes when playing

    Lightroom 4.1
    QT player 7.7.2 is installed
    Window 7
    H.264 HD video from Canon S100 camera
    .mov files plays fine in WMP
    First frame of video displays in LR library module.  In LR library view, click play.  Video advanced about 1 frame then hangs.  I get the "Adobe Photoshop Lightroom 64-bit has stopped working" pop-up window.  Programs has to be closed.  This happens every time. 
    None of the following processes are running before starting LR:
    dynamiclinkmanager.ex
    dynamiclinkmediaserver.exe
    amecommand.exe
    Adobe QT32 Server.exe.
    video also plays ok in QT player and WMP

    Problem solved. It was an authorization problem. The answer resides here: http://docs.info.apple.com/article.html?artnum=306424

  • Why Does CS3 load into Program Files (x86) in Vista 64bit

    I built a computer with Vista 64bit. All my CS3 files loaded into Prpogram Files (x86). Doesn't that mean they will only run at 32bit?

    PrPro will probably not be 64-bit, until CS5, if then. Now, only Photoshop CS4 is a 64-bit app.
    Judging from some of the questions in the recent Adobe poll, it appears that 64-bit for PrPro is at least a consideration.
    Hunt

Maybe you are looking for

  • HI regarding URL

    hi experts, i m developing a report in alv grid in which one column in which website addresses are coming what the user wants that ven ever the user click on the link in the alv output then that internet explorer will open along with addresses .. for

  • Can't create a true ADF Libray JAR FIle

    I created a Model project. Then created an ADF Library JAR File Deployment Project to deploy the jar to the file system. I then, created a separate project and tried to add the export jar file to it via a File System connection in the Resource Palett

  • Acrobat 10 comparability with Word in Office 2000

    I am still using Office 2000 (cause I like it so please don't suggest I upgrade to a newer version of Office) and having installed a new hard-drive downloaded the trial version of Acrobat X.  If I like it then planning to buy it.  When Acrobat X is i

  • Purchase order customer data enhancements

    my requriment is custom tab add in purchase order in item level i using  Badi. i find the badi but in ME_GUI_PO_CUST Implemented but tab is not display, why? in this badi i m implemented all methods also. then other badi is there ME_PROCESS_PO_CUST 

  • Sol 9 install error on I86...kernel memory

    I was trying to install 'sol 9' on an i86 and get the following error Configuring /dev and /devices Using RPC Bootparams for network configuartion info Skipping interface e1x10 Warning: Request for too much kernel memory (138379264 bytes) , will hang