Making type change color on rollover: Cant make it work

Incredibly, I can not figure out how to make hyperlinked text change color on rollover.
I thought it was a matter of assigning a new CSS rule, but I cant find the dialog box within which to specify a rollover color.
I cant believe how difficult and obtuse such a super simple and basic function is in Dreamweaver.
WHAT am I doing wrong?

CSS Pseudo-classes work best if defined in the following order (LiVHA):
a:link {color:#FF0000}      /* unvisited  link */
a:visited {color:#00FF00}  /* visited link */
a:hover  {color:#FF00FF}   /* mouse over link */
a:active {color:#0000FF} /* selected  link */
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
www.alt-web.com/
www.twitter.com/altweb
www.alt-web.blogspot.com

Similar Messages

  • Richfaces fileupload with myfaces 1.1.5. Cant make it work

    Hello ,
    I am a newbie to jsf technologies. I use myfaces 1.1.5 with tomcat 5.5 and richfaces 3.2.0 and trying to use richfaces fileupload component. I use netbeans IDE. When i try to run the project it fails building the project and the error in tomcat log is like below.
    16.Tem.2008 11:11:47 org.apache.catalina.core.StandardContext listenerStart
    SEVERE: Exception sending context initialized event to listener instance of class com.sun.faces.config.ConfigureListener
    java.lang.NoClassDefFoundError: javax/faces/component/ActionSource2
            at java.lang.ClassLoader.defineClass1(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
            at org.apache.catalina.loader.WebappClassLoader.findClassInternal(WebappClassLoader.java:1853)
            at org.apache.catalina.loader.WebappClassLoader.findClass(WebappClassLoader.java:875)
            at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1330)
            at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1209)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
            at java.lang.Class.getDeclaredConstructors0(Native Method)
            at java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
            at java.lang.Class.getConstructor0(Class.java:2699)
            at java.lang.Class.newInstance0(Class.java:326)
            at java.lang.Class.newInstance(Class.java:308)
            at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:896)
            at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:945)
            at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:426)
            at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:348)
            at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3764)
            at org.apache.catalina.core.StandardContext.start(StandardContext.java:4216)
            at org.apache.catalina.startup.HostConfig.checkResources(HostConfig.java:1116)
            at org.apache.catalina.startup.HostConfig.check(HostConfig.java:1214)
            at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:293)
            at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:120)
            at org.apache.catalina.core.ContainerBase.backgroundProcess(ContainerBase.java:1306)
            at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.processChildren(ContainerBase.java:1570)
            at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.processChildren(ContainerBase.java:1579)
            at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.run(ContainerBase.java:1559)
            at java.lang.Thread.run(Thread.java:619)I guess it is about the expression language i use in my jsp page. I made it work with jsf 1.2 and tomcat 6.0. But i need to do it with tomcat 5.5 now. Is the expression language different with servlet 2.4 version ? My jsp page is below :
    <%--
        Document   : main
        Created on : 15.Tem.2008, 17:38:00
        Author     : brhn
    --%>
    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
    <%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title>JSP Page</title>
        </head>
        <body>
            <f:view>
                <h:form id="fileUpload" enctype="multipart/form-data">
                    <rich:fileUpload                  
                        acceptedTypes="txt"
                        maxFilesQuantity="2"
                        uploadData="${upload_backing.data}"
                        fileUploadListener="${upload_backing.fileUploadListener}"
                    />
                </h:form>
            </f:view>
        </body>
    </html>and my web.xml is this
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
        <session-config>
            <session-timeout>
                30
            </session-timeout>
        </session-config>
        <welcome-file-list>
            <welcome-file>index.jsp</welcome-file>
            </welcome-file-list>
            <context-param>
            <param-name>org.richfaces.SKIN</param-name>
            <param-value>blueSky</param-value>
        </context-param>
        <filter>
            <display-name>RichFaces Filter</display-name>
            <filter-name>richfaces</filter-name>
            <filter-class>org.ajax4jsf.Filter</filter-class>
        </filter>
        <filter-mapping>
            <filter-name>richfaces</filter-name>
            <servlet-name>Faces Servlet</servlet-name>
            <dispatcher>REQUEST</dispatcher>
            <dispatcher>FORWARD</dispatcher>
            <dispatcher>INCLUDE</dispatcher>
        </filter-mapping>
        </web-app>I cant get what is the problem. Anyone has any idea ? I really need to make this work.

    Yea i solved the problem. I mean at least i know what is the problem :) As you said richfaces 3.2.0 is not working with jsf 1.1. Richfaces 3.1.6 works fine with it. But the funny thing is there is no file upload component in 3.1.6 version :) So, i am using myfaces.

  • Help now please Cant make links work imported from PhotoShop6

    I made slices in Photoshop6 which work when tested in Image ready but when I bring them into GoLive6 cant get to work? Saved as gif, psd, bmp?

    >Dont see where to "copy" inthe save to web window.
    Don't know what you mean by that. When it asks where you want to save the HTML and images, you can point it to a folder in your GoLive site. Otherwise, you could just save it wherever and copy whatever it exports into GoLive (or Dreamweaver) later.

  • Cant make it work

    I have a G5, dual 1.8.. I installed an airport extreme card the other night when I bought a new laptop, a macbook..
    My macbook picks up networks from my neighbors, hotspots and other places.. BUT NOT from my G5..
    On my G5 I went to sharing>internet and started sharing and said from ethernet, to airport. I created a network name, and WEP password.. And on my G5, I get grey lines with an arrow pointing up in dark grey..
    On my Macbook, I see other peoples networks, not mine, so i go to 'other' and type in the network, (lets call it fancy name) name and password, but all I get is a spinning ball, then... There was an error joining network, "fancyName". No explanation, nothing.. It is making me crazy..
    It is making me feel like a big dumb girl!!
    can anyone help?
    christen

    Did you connect the external antenna to the back of the G5?

  • Computer2comp. - cant make it work

    I have a G5, dual 1.8.. I installed an airport extreme card the other night when I bought a new laptop, a macbook..
    My macbook picks up networks from my neighbors, hotspots and other places.. BUT NOT from my G5..
    On my G5 I went to sharing>internet and started sharing and said from ethernet, to airport. I created a network name, and WEP password.. And on my G5, I get grey lines with an arrow pointing up in dark grey..
    On my Macbook, I see other peoples networks, not mine, so i go to 'other' and type in the network, (lets call it fancy name) name and password, but all I get is a spinning ball, then... There was an error joining network, "fancyName". No explanation, nothing.. It is making me crazy..
    It is making me feel like a big dumb girl!!
    can anyone help?

    I have a G5, dual 1.8.. I installed an airport extreme card the other night when I bought a new laptop, a macbook..
    My macbook picks up networks from my neighbors, hotspots and other places.. BUT NOT from my G5..
    Sounds like the AirPort Extreme card and/or antenna is not properly installed in the G5. If you check "About This Mac," from the Apple menu, does the newly installed card show up? I suggest you double-check both first. (ref: http://docs.info.apple.com/article.html?artnum=108039)

  • I'm back! How to change main email address and make i WORK?!

    Okay, so i got my mail app. back ( thanks guys! you know who you are!) But, I had tried to change the email address to my last one, which didn't work. So now that I have a .mac account, I'd like to know...how can I change my main email address to a .mac account ( I think i know how to, but i was wondering what i should change everything to ie. when it says outgoing mail server...what do it put) Thanks guys! I know someone will know...you guys are like....REALLY SMART!!
    haha Thanks!

    Is your main email account/address provided by your internet service provider used for connecting to the internet and is this email account still active?
    If so, you need to create this account in Mail and must know the account type - POP or IMAP, the incoming and outgoing mail server settings, the user name format - usually the portion of your email address in front of the @ sign only but with some providers the user name is the entire email address. You can get this information from the email account provider for the account.
    You can't change your main email address to a .Mac account if not provided by .Mac.

  • Magnets will not download, they worked and I had to reset Firefox and now they don't... what changed or how can I make these work again?

    I use Utorrent as my program for many downloads. The other day I reset Firefox due to some issues. Now I when I click on a magnet file it does nothing and says U torrent not available,. I can still dl a torrent file, thus my u torrent is set properly. Something changed in the Firefox reset, what I don't know.
    I did check in the tools>>>options that magnets are opened with u torrent...still don't work
    All ideas welcomed

    What kind of problems did you have that you reset Firefox?
    Do you still have the "Old Firefox Data" folder on the desktop that contains the personal data from your previous Firefox profile?
    You can try to check the prefs.js file in that folder and use copy and paste to add lines that refer to torrent to the prefs.js file in the current Firefox profile folder.
    You may have to copy the mimeTypes.rdf file as well.
    If you reset Firefox then a new profile is created and some of your data (bookmarks, history, cookies, passwords, form data) is automatically imported and your current profile will be moved to the desktop (Old Firefox Data).
    You will lose extensions and other customizations (toolbars, prefs) that you've made.
    It is possible to recover more data from the old profile, but be cautious to avoid carrying over the problem.
    *https://support.mozilla.org/kb/Recovering+important+data+from+an+old+profile
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Cant make mic work

    Hi, can anybody help me with this:
    MB: 645E Max2 (SiS 645DX chipset)
    BIOS: AMI v1.2
    Sound driver: VIA 6.14.1.4030
    OS: XPH
    Speakers in speaker jack: yes
    S-braket: installed but nothing is plugged in there
    I cant get anything out of my mic. Its plugged to mb rear panel mic connection. I've made sure its not muted and the volume levels are up. Also the mic is checkboxed in the recording control -volume window. I also tried same things with the mic connected to line in -jack.
    The defauld recording device is Vinyl AC97 Audio (wave) and nothing else is selectable there.
    BTW. I dont have any MIS utilities installed to my machine, is there any essentials? The machine works perfectly - only the mic is giving me hard time.
    Any ideas?
    Thanks.
    ToniH

    Ok, problem solved. There was a Realtek-driver on MSI website which recognised my MB and with that the mic started to work ok! Version # 5.10.0.5620.

  • My Tools in Audition CC are no longer soloing the selected frequencies. Is there something I can change in the settings to make it work again?

    This just started yesterday for no apparent reason. Does anyone have a solution?

    It can be re-enabled either in Preferences/Spectral View or by right clicking on the Play button to reveal a drop down menu with a couple of options.

  • Capsule cant make it work with 100mbit

    Hi all
    Hope that some of you can help me out here?
    I have on of the first version of time capsule/500Gb and it have worked perfect since day one.
    but now when i´ve upgraded me speed to 100/100Mbit it wount work anymore, my firmware is 7.4.2 and i´m not able to upgrade to the next version 7.5.1 i suppose the issue is here.
    Can someone of you be kind to advise me what to do?
    Thanks in advance
    Greatlife

    Check this thread: http://discussions.apple.com/thread.jspa?threadID=2298320&tstart=15
    You aren't alone. I have the same problem.

  • My iphone is locked and I cant make it work at all.

    Hi, my iphone is locked and I can't get it to work at all. do you have any suggestions>?

    Hi irishdave75,
    I apologize, I'm a bit unclear on the exact nature of the issue you are describing. If you mean that it is locked with a passcode and you are unable to access it, you may find the troubleshooting steps outlined in the following article helpful:
    Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled - Apple Support
    If, on the other hand, you mean that your iPhone is locked up or otherwise not responding, then this article may be of more use:
    iOS: Not responding or does not turn on - Apple Support
    Regards,
    - Brenden

  • How to change colors of designs

    I would love to be able to change colors of designs I make in Printshop. On my PC I could just highlight an object and choose a color and change it. The Mac is supposed to be the great "artistic" machine, yet it can't seem to do half the stuff my PC does and did for free. I was told to buy Photoshop which is hundreds of dollars. I don't need to do all that it offers, just need to change colors of a logo I've designed. Is there any way to do this on a Mac or do I need to go back to using my PC for graphic design projects?
    Annette

    You can't expect everything to be thrown in there, especially for free. Beyond the basics, pretty much anything else would have a personal preference aspect to it.
    GraphicConverter is one of the few commercial applications I have - definitely worth the money.
    For something free, there is also Gimp.

  • HT1491 I downloaded a song for a ringtone but I cant make it my ringtone? Not sure what I am missing?

    I want to use different songs for ringtones  so I can recognize who is calling me but I dont like the preloaded manufactery ringtones. So I found what I wanted but cant make it work for a ringtone?

    Songs need conversion before they can be used as ringtones.  Songs and ringtones use different formats.
    If you have a Mac, you can use GarageBand to do the conversion.  If you have a Windows computer, there are utilities but I can't name one.

  • A foreign sim Card in my iPhone 4s from Sweden , what do i have to do to make it work ?

    I just changed iPhone and gave my 4s to my son to use in great britain . As he bought a prepid Card to use in my old Phone , he cant make it work . Neither could  the english shop. What can we do to make it work ? . My old simcard is not in use or available which i used in the Phone before . What to do ... Reastart or any configurstions to do ? Please help us out since my son is jumping high in London to be able to Call. Thanks in advance . Mrs Lundin Sweden

    Your iPhone is probably locked to your former cell carrier. In such case only that carrier can unlock it, so you'll need to contact the carrier. Note that unless things have changed recently only 3 offers unlocking. If you used a different carrier, they do not appear to offer unlocking which means that your son will not be able to use your old iPhone. But call your carrier and ask.
    Regards.

  • Pacman now needs to change color, but the types are incompatible ...

    Hi, my book sucks and I need your help again , Thanks In Advance !!!
    OK, now pacman can move in all directions and make a random move, but there needs to be a button to make him change color...
    I have come up with the following code but when I try to compile I get incompatible types for my new Pacmancolors...
    package pacman;
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Autopacman extends Applet implements ActionListener
    boolean Packleur1;
    boolean Packleur2;
    boolean Packleur3;
    boolean Packleur4;
    boolean Packleur5;
    boolean Packleur6;
    int klikken = 1;
    int x = 200, y = 200; //beginpositie pacman
    int width = 50, height = 50; //formaat pacman
    int stap = 20; //standaard stapgrootte
    int stapVerander = 10; //stapgrootte wijziging
    int angleA = 5; //beginhoeken pacman
    int angleB = 345;
    public void init(){
    Button links = new Button("links"); //knoppen worden gemaakt en gelabeld
    Button rechts = new Button("rechts");
    Button omhoog = new Button("omhoog");
    Button omlaag = new Button("omlaag");
    Button harder = new Button("harder");
    Button zachter = new Button("zachter");
    Button random = new Button("Random actie");
    Button kleur = new Button("Kleur veranderen");
    links.addActionListener(this); //action events worden aan knoppen gekoppeld
    rechts.addActionListener(this);
    omhoog.addActionListener(this);
    omlaag.addActionListener(this);
    harder.addActionListener(this);
    zachter.addActionListener(this);
    random.addActionListener(this);
    kleur.addActionListener(this);
    add( links ); //knoppen worden op canvas gezet
    add( rechts );
    add( omhoog );
    add( omlaag );
    add( harder );
    add( zachter );
    add( random );
    add( kleur );
    public void paint(Graphics g){
    g.setColor( Color.black);
    g.drawLine( 0, 34, 600, 34 );
    Packleur1 = g.setColor( Color.yellow );
    Packleur2 = g.setColor( Color.red );
    Packleur3 = g.setColor( Color.blue );
    Packleur4 = g.setColor( Color.green );
    Packleur5 = g.setColor( Color.white );
    Packleur6 = g.setColor( Color.black );
    g.fillArc(x, y, width, height, angleA, angleB); //teken de pacman voor het eerst
    public void actionPerformed(ActionEvent e){
    String str = e.getActionCommand();
    if( str.equals("Kleur veranderen")){
    klikken++;
    if( klikken = 2 )
    {Packleur2 = true;}
    if( klikken = 3 )
    {Packleur3 = true;}
    if( klikken = 4 )
    {Packleur4 = true;}
    if( klikken = 5 )
    {Packleur5 = true;}
    if( klikken = 6 )
    {Packleur6 = true;}
    return false;
    if(klikken == 7)
    {klikken = 1;}
    if( str.equals("Random actie") ){       //Die stomme random functie
    int i = (int)(Math.random() * 10);
    switch(i){
    case 1: case 7 : str = "omlaag"; break;
    case 2: case 8 : str = "omhoog"; break;
    case 3: case 9 : str = "links"; break;
    case 4: case 10 : str = "rechts"; break;
    case 5: case 0: str = "harder"; break;
    case 6: str = "zachter"; break;}
    if( str.equals("harder") ){ stap = stap + stapVerander;} //stap wordt 10 groter
    if( str.equals("zachter") ){ stap = stap - stapVerander;} //stap wordt 10 kleiner
    if( stap < 0){stap = 1;} //Stapgrootte wordt nooit negatief of nul
    if( str.equals("links") ){ x -= stap;     //linksknop laat pacman links kijken en bewegen
    angleA = 185;
    angleB = 345;}
    if( str.equals("rechts") ){ x += stap;    //rechtsknop laat pacman rechts kijken en bewegen
    angleA = 5;
    angleB = 345;}
    if( str.equals("omhoog") ){ y -= stap;    //omhoogknop laat pacman omhoog kijken en bewegen
    angleA = 95;
    angleB = 345;}
    if( str.equals("omlaag") ){ y += stap;    //omlaagknop laat pacman omlaag kijken en bewegen
    angleA = 275;
    angleB = 345;}
    if( x <= 0){ x = 0;} // houdt de pacman tegen als hij links/rechts wil verdwijnen
    if( x > 550){ x = 550;}
    if( y <= 35){ y = 35;} // houdt de pacman tegen als hij boven/onder wil verdwijnen
    if( y > 550){ y = 550;}
    repaint(); // zet de pacman opnieuw op het canvas
    Can anyone help me with this?
    Thanks a bundle!
    Menno.

    Thanks a lot!
    Say if you want to see how it works just compile this source :
    /* Autopacman spelletje
    Menno Hagens, I108
    2001
    Autopacman.
    Maak via overerving van de klasse Packman uit week 4 een nieuwe klasse 'AutoPackman'.
    Deze klasse moet de volgende extra functionaliteit bevatten.
    De kleur van de Packman moet kunnen worden ingesteld.
    Er moet een methode komen die een willekeurige opdracht aan de Packman geeft.
    (naarLinks, naarRechts, gaSneller, gaTrager, etc.)
    Maak vervolgens een applet met vier Packmannetjes en ��n knop 'Beweeg'.
    Als je op deze knop drukt, moeten alle Packmannetjes ��n stap in een willekeurige
    richting doen.
    Programmeer dit efficient met arrays en loops.
    Als je na afloop nog moed hebt kun je de klasse en de applet zo aanpassen dat een
    spel ontstaat, waarbij een Packman die op de positie van een andere komt, de andere
    Packman opeet. Degene die overblijft heeft gewonnen.
    package pacman;
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Autopacman extends Applet implements ActionListener
    boolean Packleur1;
    boolean Packleur2;
    boolean Packleur3;
    boolean Packleur4;
    boolean Packleur5;
    boolean Packleur6;
    int klikken = 1;
    int x = 200, y = 200; //beginpositie pacman
    int width = 50, height = 50; //formaat pacman
    int stap = 20; //standaard stapgrootte
    int stapVerander = 10; //stapgrootte wijziging
    int angleA = 5; //beginhoeken pacman
    int angleB = 345;
    public void init(){
    Button links = new Button("links"); //knoppen worden gemaakt en gelabeld
    Button rechts = new Button("rechts");
    Button omhoog = new Button("omhoog");
    Button omlaag = new Button("omlaag");
    Button harder = new Button("harder");
    Button zachter = new Button("zachter");
    Button random = new Button("Random actie");
    Button kleur = new Button("Kleur veranderen");
    links.addActionListener(this); //action events worden aan knoppen gekoppeld
    rechts.addActionListener(this);
    omhoog.addActionListener(this);
    omlaag.addActionListener(this);
    harder.addActionListener(this);
    zachter.addActionListener(this);
    random.addActionListener(this);
    kleur.addActionListener(this);
    add( links ); //knoppen worden op canvas gezet
    add( rechts );
    add( omhoog );
    add( omlaag );
    add( harder );
    add( zachter );
    add( random );
    add( kleur );
    public void paint(Graphics g){
    g.setColor( Color.black);
    g.drawLine( 0, 34, 600, 34 );
    g.setColor( Color.yellow);
    if( klikken == 1 )
    {g.setColor(Color.yellow);}
    if( klikken == 2 )
    {g.setColor(Color.red);}
    if( klikken == 3 )
    {g.setColor(Color.blue);}
    if( klikken == 4 )
    {g.setColor(Color.black);}
    if( klikken == 5 )
    {g.setColor(Color.green);}
    if( klikken == 6 )
    {g.setColor(Color.white);}
    g.fillArc(x, y, width, height, angleA, angleB); //teken de pacman voor het eerst
    public void actionPerformed(ActionEvent e){
    String str = e.getActionCommand();
    if( str.equals("Kleur veranderen")){klikken++;}
    if(klikken == 7)
    {klikken = 1;}
    if( str.equals("Random actie") ){       //Die stomme random functie
    int i = (int)(Math.random() * 17);
    switch(i){
    case 1: case 7 : case 11: case 15 : str = "omlaag"; break;
    case 2: case 8 : case 12: case 16 : str = "omhoog"; break;
    case 3: case 9 : case 13: case 17 : str = "links"; break;
    case 4: case 10 : case 14: case 0 :str = "rechts"; break;
    case 5: str = "harder"; break;
    case 6: str = "zachter"; break;}
    if( str.equals("harder") ){ stap = stap + stapVerander;} //stap wordt 10 groter
    if( str.equals("zachter") ){ stap = stap - stapVerander;} //stap wordt 10 kleiner
    if( stap < 0){stap = 1;} //Stapgrootte wordt nooit negatief of nul
    if( str.equals("links") ){ x -= stap;     //linksknop laat pacman links kijken en bewegen
    angleA = 185;
    angleB = 345;}
    if( str.equals("rechts") ){ x += stap;    //rechtsknop laat pacman rechts kijken en bewegen
    angleA = 5;
    angleB = 345;}
    if( str.equals("omhoog") ){ y -= stap;    //omhoogknop laat pacman omhoog kijken en bewegen
    angleA = 95;
    angleB = 345;}
    if( str.equals("omlaag") ){ y += stap;    //omlaagknop laat pacman omlaag kijken en bewegen
    angleA = 275;
    angleB = 345;}
    if( x <= 0){ x = 0;} // houdt de pacman tegen als hij links/rechts wil verdwijnen
    if( x > 550){ x = 550;}
    if( y <= 35){ y = 35;} // houdt de pacman tegen als hij boven/onder wil verdwijnen
    if( y > 550){ y = 550;}
    repaint(); // zet de pacman opnieuw op het canvas

Maybe you are looking for

  • Issues   :-   after creating sales order   mail goes to customer

    Hello everybody  , my requriment is that after creating the sales order  , the sales order number goes to the customer  so how can i solve this requriment i  tryed to find out user-exit  but i didn't get proper EXIT  point  . please help me out ASAP

  • How to Assigning Qualification to an Org unit?

    Guyz, I am trying to assing a common qualification to an entire organization so that all the employees are covered with the required Qualfiication at a single go. Please let me know the process and related configuration. Regards G

  • Asia lanugage

    Hi, I'm new to htmldb. my default language of OS is Simplified Chinese. NLS_lang of db home is American_america.utf8. after installing HTMLDB(I noticed chinese is not install into the db), i tried to build a form with a date field. in the running for

  • VS2013 Pro w/Up3 and Update for Windows (KB2506143)

    I'm try to test the http://www.visualstudio.com/explore/cordova-vs and when I select the Multi Device Hybrid App it says I must first install Update for Windows (KB2506143) for my Win7 64 box.  I've tried to install this update and it does nothing bu

  • I can't see the full game in the Flash Player screen

    This happens often, and I was wondering if I am missing something, as I can't find any threads anywhere on the internet which addresses this problem... The picture shows the game screen (this only happens on flash games).  I can't play ANY flash game