Simple way to create rollover text?

I want to ask visitors on my page to enable pop-ups if they click on one of my quicktimes (to decrease load times, I use pop-up windows on my video-heavy pages). I want the text to appear over the still "poster" image of the quicktime when they mouseover it. Is there a simple way to do text rollover? Or do I have to make it into an image (create another jpeg for each "poster" with the text written on it)?
Here's the site: http://web.me.com/roncutz/roncutz/theatricaltvspots.html
Thanks in advance.

Heres' a solution that takes the form into acount :
<iframe style="margin: 0px auto"
src="../../../roncutz/" width="322" height="240" frameborder="0" scrolling="no">
</iframe>
<script language="JavaScript" type="text/javascript">
<!--
function open_win()
window.open("http://homepage.mac.com/roncutz/.Public/MonstersVsAliens.m4v","_blank","
toolbar=no, location=yes, directories=no, status=no,
menubar=no, scrollbars=no, resizable=yes,
copyhistory=yes, width=480, height=270") }
// -->
</script>
<form style="position: absolute; left: 45%; margin-top: -35px;"><input type="button" value="PLAY">
</form>
It would be safer to use a webpage to display the popup movie. A MIME file error exist on the MobileMe server when you either upload your movie from the Finder to the Sites folder on MobileMe or if you upload with Cyberduck.
The movie will download in Safari instead of being displayed.
http://discussions.apple.com/message.jspa?messageID=11150467&tstart=0
Here's a solution : http://www.wyodor.net/MoreEmbed/embedmedia.html
Click the link in the sentence : +Here's a basic sample page with shaded background you can use for testing.+
And click the link in the sentence : +Click to open a window with the pop-up code.+

Similar Messages

  • Is there any simple way to create ods files (OpenOffice Calc)?

    Is there any simple way to create ods files (OpenOffice Calc) using ResultSet (from java.sql)?

    Mabe, you can create CVS files (plain text) Ej...
    ====test.cvs=====
    1, "aaa"
    2, "bbb"
    3, "ccc"
    ===============
    Using a "BufferedWriter"

  • Is there a way to create standard text messages that can be reused easily

    is there a way to create standard text messages that can be reused easily

    if you meant phrases, then Yes
    Setteings> general>keyboard> add new shortcut

  • More simple way for creating dummy variables

    I am finding for more simple way for creating dummy variables.
    For analyzing by linear regression, logistic regression ... creating dummy variables from categorical data is necessary.
    Most simplest way for creating dummy variables is may be pivot function.
    But I need more simple method.
    Anyone's idea. I welcome.
    Naoya Ikeda

    Hi Naoya. Can you give an example of a sample input and output, with a description of what you'd like to do?
    Thanks,
    Ehren

  • HT3697 Is there a simple way to create a borderless PDF from Keynote.

    Is there a simple way to create a "borderless" PDF using Keynote slides?
    When I create a PDF, each slide appears separately with a border around it.
    I am a relatively new keynote and mac user.
    I am using Keynote version 6.2

    I got the same result.
    I'm trying to create what looks like a single document that viewers can scroll through.
    I done quite a bit of checking and it seems that Keynote used to give you the ability to crop the PDF which, if I understand what they are talking about, would make it look like one big document and not a series of slides.
    I read about using terminal commands (?) which are way beyond my skill level.
    Also, I could buy Adobe Acrobat which, from what I've read, would also work. I'm not fond of making that investment.
    Right now, I'm stuck!
    I need to create a "long form sales letter" and I'm starting to think that I'm using the wrong program.
    Thank you very much for your help and any other suggestions you might have.

  • Does OS 10.5x offer a simple way to create an alternating-text screensaver?

    I'd like to create a screensaver from quotations I like and have them scroll across the screen--like Apple's built-in "Word of the Day" screensaver (though I'd like to have a "slow-scroll only" option; Apple's words sometimes whizz across the screen too fast for me).
    Anyone have a simple way to do this for someone who still can't figure out what Apple Script is? Thanks for any suggestions!

    V.K.: Hm, then I guess it's a good thing I don't know what Apple Script is.
    Seriously, it's too bad Apple doesn't give us some way to do this. I'm pretty sure I was able to do it ten years ago on my very first Macbook, and that was only OS 7x.
    Anyone out there know of third-party text-writing screensaver software?

  • Simple way to create field catalogs in ALV Reports using subroutine

         In ALV Reports When creating field catalog, instead of giving field catalog for every field seperatly we can use following simple method to create field catalog.
         This method makes your code very easy to read as well as to understand. I am going to show code only to prepare field catalog to make this method easy to understand. Their also contains code for fetching data from requires table and calling function module for ALV . I am not including it in this program but it should be their in program -
    REPORT ZALV_INTERACTIVE_REPORT.
    TYPE-POOLS SLIS.
    TYPES : BEGIN OF TY_MARA,
         MATNR TYPE MATNR,
         MTART TYPE MTART,
         MBRSH TYPE MBRSH,
         MEINS TYPE MEINS,
    END OF TY_MARA.
    DATA IT_MARA TYPE STANDARD TABLE OF TY_MARA.
    DATA WA_MARA TYPE TY_MARA.
    " Internal table and work area for Field Catalog
    DATA IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA WA_FIELDCAT LIKE LINE OF IT_FIELDCAT.
    START-OF-SELECTION.
    * PERFORM FETCH_DATA .
    " FIELDS IN FIELD CATALOG (PASSED IN SUBROUTINE):-
    "     'FIELDNAME'<SPACE> 'SELTEXT_M' <SPACE>'KEY'<SPACE> 'HOTSPOT'
    PERFORM PREP_CATALOG USING : 'MATNR' 'MATERIAL NO.' 'X' 'X' ,
                                                           'MTART' 'MATERIAL TYPE' ' ' ' ' ,
                                                           'MBRSH' 'IND SECTOR' ' ' ' ' ,
                                                           'MEINS' 'UOM' ' ' ' ' .
    * PERFORM CALL_ALV_FM .
    " Subroutine to create field catalog
    FORM PREP_CATALOG USING VALUE(P_FIELDNM)
                                                                  VALUE(P_SELTEXT)
                                                                  VALUE(P_KEY)
                                                                  VALUE(P_HOTSPOT) .
    WA_FIELDCAT-FIELDNAME = P_FIELDNM .
    WA_FIELDCAT-SELTEXT_M = P_SELTEXT .
    WA_FIELDCAT-KEY = P_KEY .
    WA_FIELDCAT-HOTSPOT = P_HOTSPOT .
    APPEND WA_FIELDCAT TO IT_FIELDCAT .
    ENDFORM .
              Above code will repeat the execution of subroutine PREP_CATALOG for every set of values passed to subroutine because we used
    USING : (chain operator) to pass value to subroutine.
              Subroutine will assign passed values to corresponding field and simply appends those values in ITAB created for field catalog(IT_FIELDCAT). It repeates this process until all the passed values are appended into ITAB.
              This method will reduce complexity of the code as well as time required to write code for every field's field catalog seperatly. It does lots of work in very few lines of codes.

    Scott,
    I don't think there is a way to divide all numbers by a million in one shot, but you could divide the numbers by million by writing code for each amount field as needed: <?FIELD1 div 1000000?> and the use the round function <?xdoxslt:round(2.777,2)?>
    combined function: <?xdoxslt:round((12345605.6 div 1000000),2)?>
    Thanks,
    Bipuser

  • How to create rollover text on an image

    I'm a non-coder I'm using Dreamweaver CS4 to create a personal website.  I know next to nothing about CSS, but I think I understand how to create a style and apply it to elements. 
    My website has several image galleries, and what I'd like to be able to do is create a rollover text box of some kind that floats up in a fixed position when mouseover on an image.  What I'm looking to do is basically what this website does on their top header image:
    AstroBin | AstroBin
    I've experimented some with spry tooltips but I want the text box to be in the same position and not wherever the mouse is pointing at the time.  I have done hours of searching and I cannot come up with a solution to this (at least not one that I understand) and it's quite possible that I don't even know the terms to search for. 
    What tools or terms am I describing here?  What should I be searching for? 
    Can anyone point me to a good tutorial to do what I'm asking?  Please give me the dummy version!
    Thanks in advance.

    import java.awt.*;
    import java.awt.image.*;
    import javax.swing.*;
    public class fireleaf extends JFrame {
      public fireleaf() {
        JLabel label = new ImageLabel();
        JPanel panel = new JPanel();
        panel.setBackground(Color.pink);
        panel.add(label);
        getContentPane().add(panel, "Center");
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setSize(300,200);
        setLocation(300,200);
        setVisible(true);
      private class ImageLabel extends JLabel {
      // image from:
      // http://java.sun.com/docs/books/tutorial/uiswing/painting/imageSequence.html
        public ImageLabel() {
          Toolkit toolkit = Toolkit.getDefaultToolkit();
          Image image = toolkit.getImage("images\\T4.gif");
          ImageIcon icon = new ImageIcon(image);
          setIcon(icon);
          setOpaque(true);
        public void paintComponent(Graphics g) {
          super.paintComponent(g);
          Graphics2D g2 = (Graphics2D)g;
          g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                              RenderingHints.VALUE_ANTIALIAS_ON);
          g2.drawString("hello", 10, 10);
      public static void main(String[] args) {
        new fireleaf();
    }

  • Is there a simple way to create a custom item list for a List Picker field?

    I have created a List picker field and added it to my customized version of the Incident Management form. I need to populate this List Picker with custom items (Departments) and everything I am reading about how to do that is that I have to write a
    bunch on XML code. Is there a relatively simple way to populate a List Picker field with custom entries that does not require me to know scripting or XML?
    Thanks in advance for any help
    Mark

    Assuming that you have created a Enumeration picker (i.e.
    you used the authoring tool and dragged what it calls a list picker in, and then selected a list that you created in the authoring tool), then you can edit the contents of those Enum Lists using
    the Lists view in the Library pane, or by editing the XML as in the last reference. 
    You might also be interested in the
    Bulk Enum creation tool, which automates the process of creating that XML

  • Simple way to create a "RANK" on a graphical Calculation-view ?

    Hi guys,
    I've saw some articles around, about creating a "Rank" column, in order to select TOP N inside analysis level (Design Studio in this case).
    The problem is, that all of them were incredibly complicated (comparing....), And I wonder if there's a simple way to any "Rank" function these days (or in future versions).
    My source:
    SAP HANA: Implementing RANK using Graphical calculation View
    Thank you,
    Or.

    Hello Or,
    Using Script based view, you can use RANK() function.
    From Graphical, I have not found any way to implement RANK. So will have to wait along with you to know, if there is an easier way to implement rank from graphical calculation view.
    Regards,
    Krishna Tangudu

  • HT3529 group texting.  is there a way to create group texting without downloading an app?

    i send a group text every night for my job and I want to know if there is a way to create a group text so i don't have to click on each contact everytime

    I don't use group messageing but I believe that once you send it to the group the first time you should be able to open the conversation and send a new message to the same group without re-addressing.  As you may know, there are apps that will create groups for text messaging (like Speed Names).

  • Is there a way to create a text (key word) field that is searchable to help retrieve photos more quickly

    I would like to create a text field associated and linked to each photo in my iPhoto library so that I can more quickly retrieve photos. I would also like to have a field that describes what was taken for each photo that that information might be printed when printing a photo.

    You can do what you want by printing the photos on a contact sheet.  Add the keywords to the photos anb the description to the Description field in the Info tray at the right.  Select the Contact list as the layout to print, select the no. of columns  and, under settings, select Keywords and Description.
    OT

  • Simple way to create a Helix (Spring) shape?

    I normally try to create shapes from primitives using the Pathfinder tool etc. but I can't think of a way to create a helix easily.
    Has anyone found a way to do this?
    Thanks
    Richard

    Do a search in this forum for "JET spiral" (without the quotes) and you'll find threads demonstrating a variety of approaches.
    JET

  • What is the simplest way to create a text on black background?

    I am new to In Design and want to make a simple design that is a yellow text with a black background. What is the easiest way to do that? I am on a PC running In Design CS4. This is on a computer at work so it may take awhile for me to get back to anybody who answers. Thanks in advance

    If you are a novice then iweb is a good place to start. It will allow you to create a site quickly with the minimum amount of work. You can then learn more as you go along if you want to. To publish you will need web space somewhere. Thats how I started and now I am studying web design with the Open University and am learning xhtml and CSS, then progressing to Java etc. Good luck and have fun - it is quite addictive once you start.

  • Simple way to create XML files on desktop

    Hello Forum
    I am creating a simple application that runs of data in an
    extenal XML file.
    The client has not enough money to create a database and the
    php middleware to facilitate the XML file creation so I am trying
    to look into a way for him to create the XML from Excel perhaps...?
    The person is not the most computer literate but I think if there'
    s a popular or somewhat userfriendly program that I could configure
    to take a bunch of rows (name, title, link, description) and export
    that data properly configuered as an XML file which he can then FTP
    up to the server that would be a fantastic alternative...
    Does anyone have any good (or bad) experiences with such an
    approach? Any recommendations for software that regular people
    would know how to use? (I would like to avoid having to sit down
    with him and explain him the beauty of XML...)
    Any advice is much appreciated.
    Thank you for your time.
    Cheers
    stephank

    Hello Or,
    Using Script based view, you can use RANK() function.
    From Graphical, I have not found any way to implement RANK. So will have to wait along with you to know, if there is an easier way to implement rank from graphical calculation view.
    Regards,
    Krishna Tangudu

Maybe you are looking for