Help,I am trying to get function calls from a flash file within an embedded SMIL file to work with Netscape.

Basically, the functions are on the html document in which the SMIL file is embedded and the flash file within the SMIL file calls the function from a button.
The code on the html doc determines whether the browser is Netscape or IE and then executes the appropriate code. For ex. for Netscape the function is:
document.radio.SetSource('video.smi')
and for IE the function is:
radio.SetSource('video.smi')
All the function calls work fine in IE but in Netscape it does nothing.

Basically, the functions are on the html document in which the SMIL file is embedded and the flash file within the SMIL file calls the function from a button.
The code on the html doc determines whether the browser is Netscape or IE and then executes the appropriate code. For ex. for Netscape the function is:
document.radio.SetSource('video.smi')
and for IE the function is:
radio.SetSource('video.smi')
All the function calls work fine in IE but in Netscape it does nothing.

Similar Messages

  • HELP!! Trying to get track names from bought CDs

    When I click on Advanced, Get Track Names it gives the the error: CDDB error. HTTP Processing error. It does this with all of my CDs. Can anyone please help?

    Are you definitly connected to the internet whilst you try to obtain track names?

  • HT201363 my rescue me email is no longer active. trying to get a call scheduled but it says all the numbers i enter are not valid.....help!!

    my rescue me email is no longer active. trying to get a call scheduled but it says all the numbers i enter are not valid.....help!!

    Hi aj_russ,
    As long as you still have access to your Apple ID account, you should be able to change or edit the Rescue email address associated with your security questions. You may find the following article helpful:
    Apple Support: Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/ht5312
    Regards,
    - Brenden

  • HT1222 Hey guys I need help I am trying to get ios 7.0.4 on my iPod touch 5 gen but every time I try downloading it it says download faild and I've rebooted it reset it and cleared storage but it still doesn't work

    Hey guys I need help I am trying to get ios 7.0.4 on my iPod touch 5 gen but every time I try downloading it it says download faild and I've rebooted it reset it and cleared storage but it still doesn't work

    Try disabling the computer's antivirus and firewall.
    - Next try the manual install method of:
    iDevice Troubleshooting 101 :: iPhone, iPad, iPod touch
    - Then try on another computer

  • HT201269 i am trying to get my contacts from an old iphone 3s to a 5c and i am not getting the new phone to stay connected to itunes. some help please on what to do!

    i am trying to get my contacts from an old iphone 3s to a new 5c and i am not getting the new phone to stay connedted to itunes. some help please on  this problem!!!

    One way is to Drag and Drop the  Entire iTunes Folder  from your Old Computer to an External Hard Drive...
    Then Drag and Drop the  Entire iTunes Folder to the location of your Music on the New Computer...
    These Links may Help...
    Backup iTunes to an External Drive
    http://support.apple.com/kb/HT1751
    Moving iTunes Media Folder
    http://support.apple.com/kb/HT1364
    Cheers

  • When I click on iPhoto icon I get a box that reads "The photo library needs to be upgraded to work with this version of iPhoto."  Whether I hit Quit or Upgrade the problem is not fixed.  Any suggestions?  Yes, I have tried Command Option iPhoto..no luck.

    When I click on iPhoto icon I get a box that reads "The photo library needs to be upgraded to work with this version of iPhoto."  Whether I hit Quit or Upgrade the problem is not fixed.  Any suggestions?  Yes, I have tried Command Option iPhoto..no luck.  I think I may have hit Upgrade the first time.  I really need this to be fixed ASAP.  Thanks for your help.

    Assuming iPhoto 09 or later:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • Just finished using iTunes, closed out and then tried to get back in.  Got this message "he iTunes library .itl file is locked, on a locked disk, or you do not have write permission for this file."  How can I get back into iTunes ?

    I just finished using iTunes, closed out and then tried to get ack in.  Got this message "The iTunes library .9tl file is locked, on a locked disk, or you do not have write permission for this file."   How can I get back ino iTunes ?

    I actually figured it out...I had to go to the iTunes Library Extras.itdb file and give myself permission to have full control.  THEN, I could go and estore a previos version.  Once I had done this, I got the same message for iTunes Library Genius.itdb . . . I did the same thing with it and Voila'!!
    Hope this helps...
    SVT

  • Java function call from Trigger in Oracle

    Moderator edit:
    This post was branched from an eleven-year-old long dead thread
    Java function call from Trigger in Oracle
    @ user 861498,
    For the future, if a forum discussion is more than (let's say) a month old, NEVER resurrect it to append your new issue. Always start a new thread. Feel free to include a link to that old discussion if you think it might be relevant.
    Also, ALWAYS use code tags as is described in the forum FAQ that is linked at the upper corner of e\very page. Your formulae will be so very much more readable.
    {end of edit, what follows is their posting}
    I am attempting to do a similar function, however everything is loaded, written, compiled and resolved correct, however, nothing is happening. No errors or anything. Would I have a permission issue or something?
    My code is the following, (the last four lines of java code is meant to do activate a particular badge which will later be dynamic)
    Trigger:
    CREATE OR REPLACE PROCEDURE java_contact_t4 (member_id_in NUMBER)
    IS LANGUAGE JAVA
    NAME 'ThrowAnError.contactTrigger(java.lang.Integer)';
    Java:
    CREATE OR REPLACE AND COMPILE JAVA SOURCE NAMED "ThrowAnError" AS
    // Required class libraries.
    import java.sql.*;
    import oracle.jdbc.driver.*;
    import com.ekahau.common.sdk.*;
    import com.ekahau.engine.sdk.*;
    // Define class.
    public class ThrowAnError {
    // Connect and verify new insert would be a duplicate.
    public static void contactTrigger(Integer memberID) throws Exception {
    String badgeId;
    // Create a Java 5 and Oracle 11g connection.
    Connection conn = DriverManager.getConnection("jdbc:default:connection:");
    // Create a prepared statement that accepts binding a number.
    PreparedStatement ps = conn.prepareStatement("SELECT \"Note\" " +
    "FROM Users " +
    "WHERE \"User\" = ? ");
    // Bind the local variable to the statement placeholder.
    ps.setInt(1, memberID);
    // Execute query and check if there is a second value.
    ResultSet rs = ps.executeQuery();
    while (rs.next()) {
    badgeId = rs.getString("Note");
    // Clean up resources.
    rs.close();
    ps.close();
    conn.close();
    // davids badge is 105463705637
    EConnection mEngineConnection = new econnection("10.25.10.5",8550);
    mEngineConnection.setUserCredentials("choff", "badge00");
    mEngineConnection.call("/epe/cfg/tagcommandadd?tagid=105463705637&cmd=mmt%203");
    mEngineConnection.call("/epe/msg/tagsendmsg?tagid=105463705637&messagetype=instant&message=Hello%20World%20from%20Axium-Oracle");
    Edited by: rukbat on May 31, 2011 1:12 PM

    To followup on the posting:
    Okay, being a oracle noob, I didn't know I needed to tell anything to get the java error messages out to the console
    Having figured that out on my own, I minified my code to just run the one line of code:
    // Required class libraries.
      import java.sql.*;
      import oracle.jdbc.driver.*;
      import com.ekahau.common.sdk.*;
      import com.ekahau.engine.sdk.*;
      // Define class.
      public class ThrowAnError {
         public static void testEkahau(Integer memberID) throws Exception {
         try {
              EConnection mEngineConnection = new EConnection("10.25.10.5",8550);
         } catch (Throwable e) {
              System.out.println("got an error");
              e.printStackTrace();
    }So, after the following:
    SQL> {as sysdba on another command prompt} exec dbms_java.grant_permission('AXIUM',"SYS:java.util.PropertyPermission','javax.security.auth.usersubjectCredsOnly','write');
    and the following as the user
    SQL> set serveroutput on
    SQL> exec dbms_java.set_output(10000);
    I run the procedure and receive the following message.
    SQL> call java_contact_t4(801);
    got an error
    java.lang.NoClassDefFoundError
         at ThrowAnError.testEkahau(ThrowAnError:13)
    Call completed.
    NoClassDefFoundError tells me that it can't find the jar file to run my call to EConnection.
    Now, I've notice when I loaded the sdk jar file, it skipped some classes it contained:
    c:\Users\me\Documents>loadjava -r -f -v -r "axium/-----@axaxiumtrain" ekahau-engine-sdk.jar
    arguments: '-u' 'axium/***@axaxiumtrain' '-r' '-f' '-v' 'ekahau-engine-sdk.jar'
    creating : resource META-INF/MANIFEST.MF
    loading : resource META-INF/MANIFEST.MF
    creating : class com/ekahau/common/sdk/EConnection
    loading : class com/ekahau/common/sdk/EConnection
    creating : class com/ekahau/common/sdk/EErrorCodes
    loading : class com/ekahau/common/sdk/EErrorCodes
    skipping : resource META-INF/MANIFEST.MF
    resolving: class com/ekahau/common/sdk/EConnection
    skipping : class com/ekahau/common/sdk/EErrorCodes
    skipping : class com/ekahau/common/sdk/EException
    skipping : class com/ekahau/common/sdk/EMsg$EMSGIterator
    skipping : class com/ekahau/common/sdk/EMsg
    skipping : class com/ekahau/common/sdk/EMsgEncoder
    skipping : class com/ekahau/common/sdk/EMsgKeyValueParser
    skipping : class com/ekahau/common/sdk/EMsgProperty
    resolving: class com/ekahau/engine/sdk/impl/LocationImpl
    skipping : class com/ekahau/engine/sdk/status/IStatusListener
    skipping : class com/ekahau/engine/sdk/status/StatusChangeEntry
    Classes Loaded: 114
    Resources Loaded: 1
    Sources Loaded: 0
    Published Interfaces: 0
    Classes generated: 0
    Classes skipped: 0
    Synonyms Created: 0
    Errors: 0
    .... with no explanation.
    Can anyone tell me why it would skip resolving a class? Especially after I use the -r flag to have loadjava resolve it upon loading.
    How do i get it to resolve the entire jar file?
    Edited by: themadprogrammer on Aug 5, 2011 7:15 AM
    Edited by: themadprogrammer on Aug 5, 2011 7:21 AM
    Edited by: themadprogrammer on Aug 5, 2011 7:22 AM
    Edited by: themadprogrammer on Aug 5, 2011 7:23 AM
    Edited by: themadprogrammer on Aug 5, 2011 7:26 AM

  • I try to buy the music but is fall but i get a call from my bank say is be charge and because I try twice so it's charge twice too

    I try to buy the music from itunes store but is fall but I get a call from my bank say it's be charge and because I try twice so it's charge twice, too
    please help my 
                   by Sylvia

    If it has a cloud icon it means its no longer on your device.  Tapping on the cloud will effectively reinstall the App from scratch to your device. 
    There is no way to remove it from the cloud because its not yours to remove from there. Its the general App repository, you are just given access to it to download content you've already purchased.

  • Trying to get my photos from my 4s to a netbook

    hi
    trying to get my photos from my 4s - when i connect it to a windows 7 netbook i don't get the option to copy them - help =]
    device driver software was not successfully installed - is the error message when it connects but it seams to sync in itunes?
    anyone know how i can get my photos onto the netbook with out using the cloud?
    d d w

    Do you have a Passcode Lock enabled on your iPhone? Unlock your iPhone first and then connect it to your PC. Do the results change?

  • Trying to get my Viera TX-P42S30B hooked up to me home network via Airport express with no luck.

    Trying to get my Viera TX-P42S30B hooked up to my home network via Airport express with no luck.
    Have tried both wired (network cable) and wireless to no avail, can't find much info online, any help appreciated !
    Airport utility 5.5.3
    Airport Extreme 802.11n
    Airport Express 802.11g

    The problem is that the AirPort Express (AX) is creating a subnet.
    To prevent that, configure the AX to act as a bridge (so that it is NOT sharing a single IP address).

  • I've been getting harassing calls from "restricted"  There's no record of the call in recent or missed calls.  I'm told I can't block them but can I find out where they're originating from?

    I've been getting harassing calls from "restricted"  There's no record of the calls in recent calls or missed calls.  I'm told I can't block these calls.  Is there any way I can find out who is making them?

    There's a fee based service called Trap Call which can give you information about the caller.

  • TS1702 how do i delete from the startup disk? I am trying to get Mountain Lion from the App store and it says that the purchase was not complete because i need 4.06 GB space to download OS x 10.8. and to remove items from my startup disk to increase space

    how do i delete from the startup disk? I am trying to get Mountain Lion from the App store and it says that the purchase was not complete because i need 4.06 GB space to download OS x 10.8. and to remove items from my startup disk to increase space. How?
    Thanks

    You can use iCloud with 10.7.5. You do not need to upgrade to Yosemite. You should provide a minimum of 15 GBs of free space or 10% of the hard drive's capacity, whichever is greater.
    Freeing Up Space on The Hard Drive
      1. See Lion/Mountain Lion/Mavericks' Storage Display.
      2. You can remove data from your Home folder except for the /Home/Library/ folder.
      3. Visit The XLab FAQs and read the FAQ on freeing up space on your hard drive.
      4. Also see Freeing space on your Mac OS X startup disk.
      5. See Where did my Disk Space go?.
      6. See The Storage Display.
    You must Empty the Trash in order to recover the space they occupied on the hard drive.
    You should consider replacing the drive with a larger one. Check out OWC for drives, tutorials, and toolkits.
    Try using OmniDiskSweeper 1.8 or GrandPerspective to search your drive for large files and where they are located.

  • Execute Oracle Package Function call from FORTE

    Has anyone EVER successfully execute an Oracle Package Function call from FORTE
    via " sql execute procedure "?
    Here's my question, I am able to execute a stored procedure but hasn't figured
    out a way to execute a function which defined in a package. The syntax goes
    like this: sql execute procedure <PackageName>.<FunctionName> ( input
    input_parm, output output_parm). If anyone EVER successfully execute a
    function, please let me know, thanks.

    You'll need to provide a column alias for the function call:
    select func(val) as alias from dual

  • I'm trying to get a song from iTunes to Windows Movie Maker

    I'm trying to get a song from my iTunes library to Windows Movie Maker so I can use it in a video. I've tried importing it, copying it and pasting it, and clicking and dragging it, but each time, it says that it could not be impoted... Does anyone know how I can fix this?

    What file format is the song in, Lauen?
    To check, right-click on the song and select Get info. In the Summary tab, what is it saying next to "Kind"?

Maybe you are looking for

  • Keep losing my effects tab.

    Hi Every time I launch FCP my effects tab disappears. I go to window and click it and it comes up in a new window, not in a new tab that I can switch to from the browser tab. Then it disappears again when I relaunch. What's going on? Do I need to tra

  • Seperate Good supplier for two items in same contract

    Hi Gurus, My client has a business scenario to have two different Goods suppliers in the contract for two different material in the same contract. As far as my understanding and practice, it can be possible by different partners at VSR(vendor sub ran

  • Same Sound Stuttering Problem as 50000 other people

    http://h30434.www3.hp.com/t5/Notebook-PC-Sound-and-Audio/HELP-HP-Dv7-audio-Issue/td-p/383299/page/3 http://h30434.www3.hp.com/t5/Notebook-PC-Sound-and-Audio/8560w-sound-stuttering-when-playing-music/m... and dozens more threads like this And still no

  • Crystal Report Server

    I have Crystal Reports Server xi rel 2.  I post the report to the server and schedule it.  I then modify the report , group filter in this case, and save it to the server .  However the scheduled report does not reflect the changes.  I have to create

  • How to keep logs for one week through sm36 jobs creation

    Hi    As i define a job through sm36. Its logs removed next day , but its logs removed through sm37 through next days. But some of the job logs does not removed for even one week. can somebody be help me to sort it out . I want to keep job logs for o