What line of code do I need to use to run flashplayer offline in a HTML presentation?

I have a client who has had an HTML presentation built that uses Flashplayer when online, using the following lines of code:
<!-- flash embed part -->  
             <div id="flashPreview">
                 <a href="http://www.adobe.com/go/getflashplayer">
                    <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
                 </a>
             </div>
He now wants to use it off line. What line of code to I need to add to the header to run Flashplayer on the local machine instead?
thank you

HI Mike,
thank you for your help. The file was built by someone else, so trying to get inside their head!!
There is coding for the expressInstall.swf:
// FLASH EMBED PART
                              var flashvars = {},params = {},attributes = {};
                              params.quality = "high";
                              params.scale = "noscale";
                              params.salign = "tl";
                              params.wmode = "transparent";
                              params.bgcolor = "#111111";
                              params.devicefont = "false";
                              params.allowfullscreen = "true";
                              params.allowscriptaccess = "always";
                              attributes.id = "flashPreview";
                              swfobject.embedSWF("preview.swf", "flashPreview", "100%", "100%", "9.0.0", "expressInstall.swf", flashvars, params, attributes);
but nothing for the swfobject_modified.js, where would I put it???
I really appreciate your help

Similar Messages

  • What event handling code do I need to access a web site ?

    Hello
    I am doing a GUI program that would go to a program or a web site when a button is clicked. What event handling code do I need to add to access a web site ?
    for instance:     if (e.getSource() == myJButtonBible)
              // go to www.nccbuscc.org/nab/index.htm ? ? ? ? ? ? ?
            } below is the drive class.
    Thank you in advance
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import java.awt.event.*;
    import javax.swing.JEditorPane.*;
    public class TryGridLayout
      public TryGridLayout() {
        JFrame myJFrame = new JFrame("Choose your program");
        Toolkit myToolkit = myJFrame.getToolkit();
        Dimension myScreenSize = myToolkit.getDefaultToolkit().getScreenSize();
        //Center of screen and set size to half the screen size
        myJFrame.setBounds(myScreenSize.width / 4, myScreenSize.height / 4,
                           myScreenSize.width / 2, myScreenSize.height / 2);
        //change the background color
        myJFrame.getContentPane().setBackground(Color.yellow);
        //create the layout manager
        GridLayout myGridLayout = new GridLayout(2, 2);
        //get the content pane
        Container myContentPane = myJFrame.getContentPane();
        //set the container layout manager
        myContentPane.setLayout(myGridLayout);
        //create an object to hold the button's style
        Border myEdge = BorderFactory.createRaisedBevelBorder();
        //create the button size
        Dimension buttonSize = new Dimension(190, 100);
        //create the button's font object
        Font myFont = new Font("Arial", Font.BOLD, 18);
        //create the 1st button's object
        JButton myJButtonCalculator = new JButton("Calculator");
        myJButtonCalculator.setBackground(Color.red);
        myJButtonCalculator.setForeground(Color.black);
        // set the button's border, size, and font
        myJButtonCalculator.setBorder(myEdge);
        myJButtonCalculator.setPreferredSize(buttonSize);
        myJButtonCalculator.setFont(myFont);
        //create the 2nd button's object
        JButton myJButtonSketcher = new JButton("Sketcher");
        myJButtonSketcher.setBackground(Color.pink);
        myJButtonSketcher.setForeground(Color.black);
    // set the button's border, size, and font
        myJButtonSketcher.setBorder(myEdge);
        myJButtonSketcher.setPreferredSize(buttonSize);
        myJButtonSketcher.setFont(myFont);
        //create the 3rd button's object
        JButton myJButtonVideo = new JButton("Airplane-Blimp Video");
        myJButtonVideo.setBackground(Color.pink);
        myJButtonVideo.setForeground(Color.black);
    // set the button's border, size, and font
        myJButtonVideo.setBorder(myEdge);
        myJButtonVideo.setPreferredSize(buttonSize);
        myJButtonVideo.setFont(myFont);
        //create the 4th button's object
        JButton myJButtonBible = new JButton("The HolyBible");
        myJButtonBible.setBackground(Color.white);
        myJButtonBible.setForeground(Color.white);
    // set the button's border, size, and font
        myJButtonBible.setBorder(myEdge);
        myJButtonBible.setPreferredSize(buttonSize);
        myJButtonBible.setFont(myFont);
        //add the buttons to the content pane
        myContentPane.add(myJButtonCalculator);
        myContentPane.add(myJButtonSketcher);
        myContentPane.add(myJButtonVideo);
        myContentPane.add(myJButtonBible);
        JEditorPane myJEditorPane = new JEditorPane();
        //add behaviors
        ActionListener myActionListener = new ActionListener() {
          public void actionPerformed(ActionEvent e) throws Exception
            /*if (e.getSource() == myJButtonCalculator)
              new Calculator();
            else
            if (e.getSource() == myJButtonSketcher)
              new Sketcher();
            else
            if (e.getSource() == myJButtonVideo)
              new Grass();
            else*/
            if (e.getSource() == myJButtonBible)
               // Go to http://www.nccbuscc.org/nab/index.htm
        }; // end of actionPerformed method
        //add the object listener to listen for the click event on the buttons
        myJButtonCalculator.addActionListener(myActionListener);
        myJButtonSketcher.addActionListener(myActionListener);
        myJButtonVideo.addActionListener(myActionListener);
        myJButtonBible.addActionListener(myActionListener);
        myJFrame.setVisible(true);
      } // end of TryGridLayout constructor
      public static void main (String[] args)
        new TryGridLayout();
    } // end of TryGridLayout class

    Hello
    I am doing a GUI program that would go to a program or a web site when a button is clicked. What event handling code do I need to add to access a web site ?
    for instance:     if (e.getSource() == myJButtonBible)
              // go to www.nccbuscc.org/nab/index.htm ? ? ? ? ? ? ?
            } below is the drive class.
    Thank you in advance
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import java.awt.event.*;
    import javax.swing.JEditorPane.*;
    public class TryGridLayout
      public TryGridLayout() {
        JFrame myJFrame = new JFrame("Choose your program");
        Toolkit myToolkit = myJFrame.getToolkit();
        Dimension myScreenSize = myToolkit.getDefaultToolkit().getScreenSize();
        //Center of screen and set size to half the screen size
        myJFrame.setBounds(myScreenSize.width / 4, myScreenSize.height / 4,
                           myScreenSize.width / 2, myScreenSize.height / 2);
        //change the background color
        myJFrame.getContentPane().setBackground(Color.yellow);
        //create the layout manager
        GridLayout myGridLayout = new GridLayout(2, 2);
        //get the content pane
        Container myContentPane = myJFrame.getContentPane();
        //set the container layout manager
        myContentPane.setLayout(myGridLayout);
        //create an object to hold the button's style
        Border myEdge = BorderFactory.createRaisedBevelBorder();
        //create the button size
        Dimension buttonSize = new Dimension(190, 100);
        //create the button's font object
        Font myFont = new Font("Arial", Font.BOLD, 18);
        //create the 1st button's object
        JButton myJButtonCalculator = new JButton("Calculator");
        myJButtonCalculator.setBackground(Color.red);
        myJButtonCalculator.setForeground(Color.black);
        // set the button's border, size, and font
        myJButtonCalculator.setBorder(myEdge);
        myJButtonCalculator.setPreferredSize(buttonSize);
        myJButtonCalculator.setFont(myFont);
        //create the 2nd button's object
        JButton myJButtonSketcher = new JButton("Sketcher");
        myJButtonSketcher.setBackground(Color.pink);
        myJButtonSketcher.setForeground(Color.black);
    // set the button's border, size, and font
        myJButtonSketcher.setBorder(myEdge);
        myJButtonSketcher.setPreferredSize(buttonSize);
        myJButtonSketcher.setFont(myFont);
        //create the 3rd button's object
        JButton myJButtonVideo = new JButton("Airplane-Blimp Video");
        myJButtonVideo.setBackground(Color.pink);
        myJButtonVideo.setForeground(Color.black);
    // set the button's border, size, and font
        myJButtonVideo.setBorder(myEdge);
        myJButtonVideo.setPreferredSize(buttonSize);
        myJButtonVideo.setFont(myFont);
        //create the 4th button's object
        JButton myJButtonBible = new JButton("The HolyBible");
        myJButtonBible.setBackground(Color.white);
        myJButtonBible.setForeground(Color.white);
    // set the button's border, size, and font
        myJButtonBible.setBorder(myEdge);
        myJButtonBible.setPreferredSize(buttonSize);
        myJButtonBible.setFont(myFont);
        //add the buttons to the content pane
        myContentPane.add(myJButtonCalculator);
        myContentPane.add(myJButtonSketcher);
        myContentPane.add(myJButtonVideo);
        myContentPane.add(myJButtonBible);
        JEditorPane myJEditorPane = new JEditorPane();
        //add behaviors
        ActionListener myActionListener = new ActionListener() {
          public void actionPerformed(ActionEvent e) throws Exception
            /*if (e.getSource() == myJButtonCalculator)
              new Calculator();
            else
            if (e.getSource() == myJButtonSketcher)
              new Sketcher();
            else
            if (e.getSource() == myJButtonVideo)
              new Grass();
            else*/
            if (e.getSource() == myJButtonBible)
               // Go to http://www.nccbuscc.org/nab/index.htm
        }; // end of actionPerformed method
        //add the object listener to listen for the click event on the buttons
        myJButtonCalculator.addActionListener(myActionListener);
        myJButtonSketcher.addActionListener(myActionListener);
        myJButtonVideo.addActionListener(myActionListener);
        myJButtonBible.addActionListener(myActionListener);
        myJFrame.setVisible(true);
      } // end of TryGridLayout constructor
      public static void main (String[] args)
        new TryGridLayout();
    } // end of TryGridLayout class

  • What is t-code SHD0's 'Variant Groups' used for?

    hi all:
    What is t-code SHD0's 'Variant Groups' used for?
    It seems can't work,who can help me?
    thanksss.

    Variant groups
    An extension of the standard variants is involved in the variant groups; the standard groups are often insufficient:
    Different users (groups) should work with different variants;
    Some users should be able to execute a transaction with different variants.
    This is possible - in addition to the advantages that the standard variants offer - with variant groups:
    Variants from variant groups are automatically applied, but only for users that are assigned to them.
    A user can be assigned to several groups and can change the assignment.
    The values of the groups are not applied in the batch input mode.
    If a transaction is started with another transaction variant, the values are not additionally applied to a variant group.
    How are the variant groups maintained?
    You can enter the group names on the "Variant Group" tab and maintain variant groups with the "Create" or "Change" functions.
    The group name must be in the "correct" namespace.
    In addition, there are two Where-Used Lists:
    Which users are assigned to the group,
    For which transactions the group applies.
    Which transaction variants belong to the groups?
    The name of a transaction variant that is to belong to a group meets the following naming conventions:
    <Name of variant group><name of transaction code>. Example: A transaction variant is to be created for the XYZ transaction that belongs to GROUP1. The name of the transaction variant is then GROUP1XYZ.
    Due to this naming convention, the group name must be in the "correct" namespace.
    Transaction variants that (randomly) meet this naming convention do not necessarily belong to a group. The group assignment is activated by
    1. Creating a group
    2. Assigning users to this group
    A transaction variant that belongs to a group can also be used this way, like a transaction variant without a group.
    How are the transaction variants that belong to a group maintained?
    Transaction variants that belong to a group are maintained in the same way as all other transaction variants, they are distinguished using a naming convention (<name of variant group> <name of transaction codes>).
    They can be maintained in the "transaction variants" tab or in the "variant groups" tab. If you maintain them in the "variant groups" tab, you must always enter the transaction code so that the name of the transaction variant can be determined.
    Under what conditions is a variant from a group applied?
    A variant from a group is applied if users are assigned.
    (Only for the assigned users, all other users get the original transaction with a variant from a different group.)
    It is NOT sufficient to
    Create a group
    Create a variant that satisfies the naming convention.
    How do you assign users to groups?
    You can assign users in the "variant groups" tab in the "user assignment".
    Enter the user name.
    The user is assigned to the group with the "assign" function, but they see original transaction(s) or the transactions with variants from another group as the proposal.
    The assignment of users to the group is deleted using the "delete assignment" function.
    The user is assigned to the group using the "Set Proposal" function and the relevant transactions are started for this user with the corresponding variants.
    The proposal is canceled with the "Cancel Proposal" function, the assignment itself remains.
    If you enter the user names generically (*), you receive a selection screen in which you can
    Choose whether assignments or proposals are to be changed
    Further restrict user names (the group in the "all users from group" option has nothing to do with the variant group, it concerns the "user group for authorization check" from the user master record (logon data)).
    By choosing "Execute", you receive a list in which you can further restrict the user selection. The "Save" function saves the assignments for all selected users.
    If you want to start the report in the background, you can choose if just the list should be outputted, or if the database changes should also be performed.
    If a user is additionally also to be able to execute the original transaction, he must be assigned to the "empty group", the allocation takes place in the same way, in this case, nothing is simply entered in the group name field.
    Regards,
    Joy.

  • What version of Java do I need? I am running Mac OSX 10.6.3.

    What version of Java do I need? I am running Mac OSX 10.6.3 on a MacPro 8 Core. I have downloaded Java Updates 5, 6 and 12 but they won't install. Can anyone offer suggestions?
    Many thanks, Harry.

    Disable Java (not Javascript) in all your web browsers preferences, that's the attack vector, via java web pages applets.
    There is also Java 6 on OS X (10.6) itself already (comes installed) via the Java Preferences in Applications/Utilities folder, leave this on for Java based programs your using.
    10.6 can't use Java 7 and Oracle is dropping support for Java 6 this month.
    Since your not going to use Java 6 online, then your Java programs should work as long as you don't update.
    Don't use Safari online as it hasn't been updated for 10.6 (10.7+ has Safari 6) use Firefox as it does get updates.

  • I have a Dell monitor ST2210, which I want to connect to my new Macbookair, what software and drivers do I need to use?

    I have a Dell monitor ST2210, which I want to connect to my new Macbookair, what software and drivers do I need to use?

    Mar14Apple,
    which resolution are you using when you use your monitor? Is that resolution supported through the monitor’s VGA port? (You’d probably have better throughput by using an adapter for the HDMI port or DVI port instead.) When you say that the trackpad doesn’t work, does that mean that the cursor is not visible on the monitor, or that it physically does not work, such that clicks are not registered, &c.?

  • What lines of code makes a text field remember value?

    Hi, what lines of ADDT code makes it possible for a text field to remember value?
    For example I have 2 text fields on my form and my database is set not to allow null values. If I fill only first text box and click submit, my form will remember the first text box value and will instruct me to fill seconds text box.
    My problem is that some fields on my form do not remember the values entered if I make a mistake when filling my form.

    :: Recall Form Values script ::
    This script remembers the value entered into any form textbox (input type=text) by the visitor, and upon his/her return, preloads the textbox with that value. It's very useful for forms that get used repeatedly by the same visitors and contain the same values each time, such as the "name" or "email" field of a "Recommend Site" form or blog comments form. Just as useful is this script's ease of installation- specify a form textbox value to be retained just by giving it a class="memorize" attribute!
    Tags:
    forms |  JS |

  • What SW and/or Drivers are needed to use my Samsung DVD+/-RW Imagewriter

    Fresh install of OSX 10.3.9 on a PowerMac G4.
    Added a Samsung SH-W162C 16x DVD±RW IDE Internal Drive.
    I then installed the LaCie DiscRecording 1.21 drivers and the the following patch: LaCie DiscRecording Support 1.22 for Mac OS X 10.3.2 or later.
    I then tried to burn an iMovie from iDVD and got the dreaded multiplex error.
    Here is my question: Do I need to install Toast in order to burn DVDs or should OSX 10.3.9 allow me to burn DVDs from iDVD without Toast?

    Have you installed Patchburn?
    http://www.patchburn.de/
    It might be the same thing as the LaCie "driver" but there is no real "driver". It is built into X and the X applications. Patchburn makes your mac think that just about any burner is an Apple branded Superburner. I don't know what the LaCie "driver" does.
    Dual layer support will require Toast or Tiger. Panther does not have dual layer support. But if all you want to do is use imovie and single layer then you don't need Toast.

  • What version of FCP do I need to use an EX1 Camera

    Hi,
    I've done a quick search to find out if Version 6 is enough to work with transferring files from an EX1 Camera.
    From what I've read so far it looks like I need the latest version 6.0.4.
    Can anyone confirm this?
    Thanks

    Hi,
    welcome to the discussion area.
    You need FCP 6.0.2 or higher.
    Read this [releasnotes|http://www.apple.com/support/releasenotes/en/FinalCut_Pro_6.0rn> , specifically about 6.0.2 update (scroll down the page).
    G.

  • What app and settings do I need for using VPN access

    Will I find the app I need to install in the App Store and what are the settings for configuring a vpn

    Depends. If you are downloading an app dedicated to VPN connectivity, you would need to consult the vendor. To simply connect via VPN natively:
    Settings App > General > VPN > Add VPN configuration (and of course turn VPN ON).

  • What kind of adapter do I need to use microphone with G4?

    My son has G4, and I want to record an mp3 using Garage Band. Grandpa gave us a really nice microphone, but it has a 1/4" plug on the end.
    The G4 does not have a jack for that plug. Is there an adapter or converter that we can use? My son said something like plug to USB or plug to firewire.
    I spoke with Best Buy and Radio Shack, and neither could help me. Where would I find the answer to this question?
    Thank you,
    Kirstyn Sierra

    Hm - there is only one PowerMac G4 without a line-in - it's called "PowerMac G4 (Digital Audio)". Take a look at this document:
    http://docs.info.apple.com/article.html?artnum=58418
    ... it shows the back panels of 3 models, and if yours is the 3rd, that's it.
    In this case, you can really only input sounds digitally. The cheapest solution would be to get an iMic USB device (maybe that's what your husband had - look at the pic. Older models were more like silvery), it comes for < 40 $, and you can plug a microphone into it (with the small 1/8" plug). Not super-great sound, but for that mic it should be good enough.

  • HT2513 What version of iCal do I need to use with Mac OS X Snow Leopard?  I upgraded to OS X 10.6.3 and my iCal 3.0.8 won't open.

    I just upgraded to Mac OS X Snow Leopard version 10.6.3 and now my iCal 3.0.8 won't open at all.  What version do I need to or should I upgrade to and where do I find it? 

    The version installed with Snow Leopard since iCal is part of OS X. If you are trying to use iCal from a different drive and version of OS X, then it won't work. If the installed version of iCal in Snow Leopard is the wrong version, then there was a problem. Delete the wrong version then reinstall Snow Leopard:
    Reinstall OS X without erasing the drive
    Do the following:
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    Download and install the Combo Updater for the version you prefer from support.apple.com/downloads/.

  • What other SAP DLL's are needed to use SDK DI?

    Hello,
    Would anyone know which SAP DLL's are needed in order to have a DI SDK application working (in VB.net) uner Windows XP SP3?
    Basically, the DLL's in the DIAPI folder are all registered but I get the following error when I run my application:-
    "Error retrieving the COM class factory for component with CLSID {632F4591-AA62-4219-8FB6-22BCF5F69469} failed due to the following error: 80040154."
    Are there SAP dll's that need to be present on the Windows XP pc for sapbobscom.dll to work?
    Thanks in advance
    Ed

    Hello Jane,
    To answer your question the issue is happening on WIndows XP 32 bit, thus it is not related to the fact I may be running a 32 bit code on 64 bit architectures.
    If you see my other post, the issue goes away if I install the SAP Client, which leads me to conclude that the SDK DI cannot work by itself, without the other DLL's present in SAP.
    I am now looking for confirmation from the SAP Developers that it is true that the SAP Client needs to be installed before the SDK DI works.
    Thanks for your precious feedback.
    Ed

  • What kind of driver do I need to use for HP Elitebook 8440p RICOH Smart Card Reader?

    I'm using Arch linux x86_64 and need to install Smart Card Reader, but I can't find any drivers for it.
    Best regards,
    Taavi

    What operating system is it? Are you sure you put the card in the correct way? [not trying to be mean here]

  • I don't know what camara is it, and i need to use it with xp and didn't work

    hi, i need help!!! i don't know exactly the model of the webcam, the cd said that is video blaster webcam, but y could't find it anywear, mi camera is this http://www.search4hardware.com/Images/tblDigitalCamera/Creative%20Video%20Blaster%20WebCam.jpg
    my uncle used this camera on windows 95, know y have win xp and i can't make to work!!!
    please some who could help me!!
    martin._

    Duplicate post.
    Jason

  • What internal hard drive do i need to use?

    My Macbook's hard drive unfortunately has a fault in it and I need to have this replaced. To save me money I'm wanting to purchase an internal hard drive and D.I.Y I want to make sure I purchase the correct part for my Mac. Whether it's brand or where to shop?
    Thank you

    Start here:
    http://www.macsales.com/
    Instructions, videos, tools, choices...

Maybe you are looking for

  • Blue Screen on Windows 7 Boot

    I repartitioned the hard drive on a computer running only Windows 7.  This was done using non Windows utilities that have proven to be very reliable in the past.  The utilities in question are all on the System Rescue CD and include (GParted, and ntf

  • XP Service Pack 3 installed B4 Bootcamp 2.1

    I installed XP Service Pack 3 before I realized I should have installed Bootcamp 2.1 first. Now Windows XP won't start up. What should I do?

  • Unix TelnetConnector provisioning not working

    Hi, I am trying to provison a user into AIX .Not using sudo.It is not connecting.I tried through putty it connects properly.Any idea? TelnetProvisioning::createUser: TelnetException Error Message = Could not connect for 20000 milliseconds com.jscape.

  • "Save For Web" crashes PS Elements

    "Save For Web" does not function on Photoshop Elements. It's shocking that such a basic thing as this crashes the software!! My whole reason for buying PS Elements was for Web design. Now I have $100 worth of software that is no use to me whatsoever.

  • How do I place a file into the body of the email rather than as an attachment?

    I sometimes want to include a file, such as a "card" into the body of an email rather than as an attachment so that it appears immediately upon opening the email. I did this successfully at Christmas, but cannot remember how to do so now.