HT3576 nt work. how can i my notification pull down bar doesfix this?

my notification pull down bar does not work. how can i my notification pull down bar doesfix this?

Norton says they are going to update 360 in April for the Firefox 4.0.
You can get Firefox 3.6.16 here: <br />
http://www.mozilla.com/en-US/firefox/all-older.html
http://support.mozilla.com/en-US/kb/Installing+a+previous+version+of+Firefox

Similar Messages

  • How can I make a pull down menu in I web

    how can I make a pull down menu in I web?

    You can't do this directly in iWeb itself and it is quite complex - you need to use third party software and it is a matter of pasting code into the html snippet in iWeb and then uploading certain things to your host/server and then connecting them.  It can get quite fiddly if you don't really know what you are doing and it only takes you to upload the wrong thing and get some code wrong and your menu will not show up.
    Why not ditch iWeb in favour of newer software - try EverWeb at http://www.everwebapp.com and in EverWeb you can create drop down menus from within the app and it is very easy to do.
    I would change now as iWeb has not been supported by Apple or sold for the last 2 years, so now might be a good time to look elsewhere and ditch iWeb for good.
    I already have and purchased EverWeb and re-built one of my sites using this app and have moved my other site to Drupal so that I can do more with it and make it a members site - this can be done more easily if you use a Content Management System like Drupal.

  • TS1702 How does one get rid of the stocks from Yahoo Finance on the notifications pull down bar on iPhone 5?

    How does one get rid of the stocks from Yahoo Finance on the notifications pull down bar on iPhone 5?

    If you mean you don't want to see the stocks at all in notification center go to Settings>Stock Widget and turn Notification Center to Off.  If you mean you want to remove some of the individual stocks shown, open the Stocks app, tap the "i " on the bottom right, tap next to the stocks you want to remove, then tap Done.

  • Google Plus notification pull-down bar white space on the right

    Google+ notification pull-down bar shows white space on the right side witch is not suppose to be there.
    I have Google Chrome installed and do not have this problem.

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • How do I find the pull down bar that shows File-View-Bookmarks-History etc on FF 3.6.6

    Downloaded FF 3.6.6 However I don't see the pull down task bar that shows File-View-Bookmarks-Tools etc. How do I find this?

    Hit the '''Alt''' key to show the Menu bar, then open View > Toolbars and select Menu bar, so it has a check-mark.

  • How can i impement some simple menu bar into this code ?

    Hello all.
    I have a problem with my program. I wanna add a simple menu bar, but i don't have any idea how to do it.
    Here is code of my program:
    import java.awt.Menu;
    import javax.swing.event.MenuListener;
    import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter.DEFAULT;
    import org.eclipse.swt.SWT;
    import org.eclipse.swt.events.PaintEvent;
    import org.eclipse.swt.events.PaintListener;
    import org.eclipse.swt.graphics.GC;
    import org.eclipse.swt.graphics.Image;
    import org.eclipse.swt.layout.FillLayout;
    import org.eclipse.swt.widgets.Canvas;
    import org.eclipse.swt.widgets.Display;
    import org.eclipse.swt.widgets.Event;
    import org.eclipse.swt.widgets.Listener;
    import org.eclipse.swt.widgets.MenuItem;
    import org.eclipse.swt.widgets.Shell;
    public class SimpleGraphicEditor {
    public Display display;
    public Shell shell,shellmenu;
    public Canvas canvas;
    public Image imageBuffer;
    org.eclipse.swt.widgets.Menu menu;
    public Menu fileMenu, editMenu, viewMenu;
    int startx=0;
    int starty=0;
    int endx=0;
    int endy=0;
         public SimpleGraphicEditor() {
              display = new Display();
              shell = new Shell(display);
              createGUI();
              shell.open();
                   while(!shell.isDisposed()) {
                   if(!display.readAndDispatch()) {
                        display.sleep();
              } // end of simple grapphic editor
              private void createGUI() {
                   shell.setLayout(new FillLayout());
                   canvas = new Canvas(shell, SWT.BORDER);
                   menu = null;
                   shell.setText("Simple rec draw");
                   shell.setSize(500, 500);
                   shell.setMenuBar(menu);
                   canvas.addPaintListener(new PaintListener() {
                             public void paintControl(PaintEvent e) {
                             e.gc.drawImage(imageBuffer, 0, 0, 500, 500, 0, 0, 500, 500);      
                   imageBuffer = new Image(display, 500, 500);
                   Listener listener = new Listener() {
                        private boolean isDrawing;
                        private GC gc = new GC(imageBuffer);
                        private int oldX = 0;
                        private int oldY = 0;
                        private int newX = 0;
                        private int newY = 0;
                        private boolean isDeleting;
                        public void handleEvent(Event event) {
                             // System.err.println("type=" + event.type);
                             switch(event.type) {
                             case SWT.MouseDown:
                                  // System.err.println("button down");
                                  switch(event.button) {
                                  case 1:
                                       isDrawing = true;
                                       System.out.println("Start at:("+event.x+","+event.y);
                                       startx=event.x;
                                       starty=event.y;
                                       break;
                                  case 2:
                                       System.err.println("button2 down");
                                       break;
                                  case 3:
                                       isDeleting = true;
                                       gc.setBackground(display.getSystemColor(SWT.COLOR_WHITE));
                                       break;
                                  break;
                             case SWT.MouseUp:
                                  // System.err.println("button up");
                                  switch(event.button) {
                                  case 1:
                                       isDrawing = false;
                                       // --- czyszczenie tablicy ---
                                       System.out.println("End at:("+event.x+","+event.y);
                                       int szerokosc=event.x-startx;
                                       int wysokosc=event.y-starty;
                                       //gc.drawRectangle(startx, starty, szerokosc,wysokosc);
                                       gc.setBackground(display.getSystemColor(SWT.COLOR_GREEN));
                                       gc.fillRectangle(startx, starty, szerokosc,wysokosc);
                                       canvas.redraw();
                                       break;
                                  case 2:
                                       System.err.println("button2 up");
                                       break;
                                  case 3:
                                       isDeleting = false;
                                       break;
                                  break;
                             case SWT.MouseMove:
                                  newX = event.x;
                                  newY = event.y;
                                  // System.err.println("mouse moved");
                                  if(isDrawing) {
                                                   // ----------- draw at hold  -----------------------------                    
                                       //gc.drawLine(oldX, oldY, newX, newY);
                                       int szerokosc=event.x-startx;
                                       int wysokosc=event.y-starty;
                                       gc.setForeground(display.getSystemColor(SWT.COLOR_BLACK));
                                       gc.drawText("x:"+event.x+", y:"+event.y+"  ", 0, 0);
                                       canvas.redraw();
                                       // ----- Clear the whole area -------------
                                       gc.setForeground(display.getSystemColor(SWT.COLOR_WHITE));
                                       gc.setBackground(display.getSystemColor(SWT.COLOR_WHITE));
                                       gc.fillRectangle(startx, starty, szerokosc+500, wysokosc+500);
                                       gc.fillRectangle(startx, starty, szerokosc-500, wysokosc-500);
                                       gc.fillRectangle(startx, starty, szerokosc+500, wysokosc-500);
                                       gc.fillRectangle(startx, starty, szerokosc-500, wysokosc+500);
                                       canvas.redraw();
                                       gc.setForeground(display.getSystemColor(SWT.COLOR_DARK_BLUE));
                                       gc.drawRectangle(startx, starty, szerokosc, wysokosc);
                                       canvas.redraw();
                                       int x = (oldX < newX) ? oldX : newX;
                                       int y = (oldY < newY) ? oldY : newY;
                                       int width = (oldX < newX) ? (newX-oldX) : (oldX - newX);
                                       int height = (oldY < newY) ? (newY-oldY) : (oldY - newY);
                                       if(width < 20) width = 20;
                                       if(height < 20) height = 20;
                                       canvas.redraw(x, y, width, height, true);
                                  } else if(isDeleting) {
                                       // Color c = gc.getBackground();
                                       // gc.setBackground(gc.getForeground());
                                       gc.fillRectangle(newX - 15, newY - 15, 30, 30);
                                       canvas.redraw(newX - 15, newY - 15, 30, 30, true);
                                       // gc.setBackground(c);
                                       break;
                             } // end switch caly
                             oldX = event.x;
                             oldY = event.y;
                   canvas.redraw();
                   canvas.addListener(SWT.MouseDown, listener);
                   canvas.addListener(SWT.MouseUp, listener);
                   canvas.addListener(SWT.MouseMove, listener);
              public static void main(String[] args) {
                   new SimpleGraphicEditor();
    }

    nitroduxe wrote:
    ok i add the following code:
    menu = new org.eclipse.swt.widgets.Menu(shell, SWT.BAR);
                   MenuItem fileItem = new MenuItem(menu, SWT.CASCADE);
                  fileItem.setText("menu1");
                  MenuItem editItem = new MenuItem(menu, SWT.CASCADE);
                  editItem.setText("menu2");
                  MenuItem viewItem = new MenuItem(menu, SWT.CASCADE);
                  viewItem.setText("menu3");
                  shell.setMenuBar(menu); // DODANIE MENUhow now i can add some submenu into menu1 and menu2 and menu3 ?
    Edited by: nitroduxe on Mar 9, 2010 10:23 AMI would start by reading the [menu tutorial|http://java.sun.com/docs/books/tutorial/uiswing/components/menu.html].

  • My alerts work when I'm on the phone such as text message Facebook n Instagram but when I'm off the phone it doesn't work how can I fix this :(

    My alerts work when I'm on the phone such as text message Facebook n Instagram but when I'm off the phone it doesn't work how can I fix this :(

    Hello, Trillmonroe. 
    Thank you for visiting Apple Support Communities. 
    Try forcing all open applications to close and power cycle the device as outlined in the first two sections of the article below.  If the issue persists, try the troubleshooting steps in the second article. 
    Restart the app
    Close the app and open it again.
    Restart your device
    Turn the device off and on.
    iOS: An app you installed unexpectedly quits, stops responding, or won’t open
    http://support.apple.com/kb/ts1702
    iOS: Understanding notifications
    http://support.apple.com/kb/ht3576
    Cheers,
    Jason H. 

  • On another PC I want to backup my bookmarks but my Firefox browser is not working how can I do the backup before I reinstall Firefox

    On another PC I want to backup my bookmarks but my Firefox browser is not working how can I do the backup before I reinstall Firefox.
    Firefox can't renew it's last tabs and now won't run and let me do a backup

    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the sessionstore.js file and possible sessionstore-##.js files with a number and sessionstore.bak in the Firefox Profile Folder.
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    See also:
    *http://kb.mozillazine.org/Session_Restore
    *http://kb.mozillazine.org/sessionstore.js
    *http://kb.mozillazine.org/Multiple_profile_files_created

  • Hey my lock screen button and home button jammed it doesnt work.How can I fix this problem.But first of all I live in Turkey.But my Iphone 4 is bought from apple store victoria gardens CA.Do I have warranty in Turkey ?

    Hey my lock screen button and home button jammed it doesnt work.How can I fix this problem.But first of all I live in Turkey.But my Iphone 4 is bought from apple store victoria gardens CA.Do I have warranty in Turkey ?

    The warranty is only good in the country of purchase.

  • I just got a new macbook pro (my other one stopped working). I am trying to sync the music on my iphone to my new mac's itunes library. I've clicked sync in iTunes but it doesnt work. how can i do this?

    I just got a new macbook pro (my other one stopped working). I am trying to sync the music on my iphone to my new mac's itunes library. I've clicked sync in iTunes but it doesnt work. how can i do this? I don't want it to delete everything from my phone or old computer.

    hstarkeyy wrote:
    I don't want it to delete everything from my phone or old computer.
    You don't need to delete anything from your phone or you old computer.
    Copy the entire /Music/iTunes/ folder from old computer or backup to /Music/ on new computer.
    If you cannot use the old computer or don't have a backup...
    -> Recovering your iTunes library from your iPod or iOS device
    Then immediately make a backup of your new computer.
    Get an external drive and plug it in and use -> Time Machine

  • HT201209 I use a Gift card to buy a game and it doesn't work how can I get my money back please help

    I used a gift card to buy games and one of them doesn't  work how can I get my money back

    If the game doesn't work (and you've tried deleting it and re-downloading it via the Purchased tab in the App Store app and you've also tried contacting the app's developer) then try the 'report a problem' page to contact iTunes Support : http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • I purchased the multi-user iworks and recently had to replace my white imac's hard drive but didn't pay to fix the CD drive.  My iworks does not have a serial number on the box and now that my CD drive isn't working how can I reinstall this software?

    I purchased the multi-user iworks (yes back when it was new, 2009 or 2010 and recently had to replace my white imac's hard drive (but didn't pay to fix the CD drive).  My iworks does not have a serial number on the box and now that my CD drive isn't working how can I reinstall this software?

    Buy or borrow an external USB optical drive.
    See the confirmation email or covering letter to obtain the serial number. If you have lost it, contact the supplier.

  • HT4972 I have an iphone 4 , but it still has the ios 4 , and i want to upgrade it to a newer version , but when I try to do it via  Itunes it says there's a problem with the internet (and the internet it's working fine) and it won't work ,how can i upgrad

    I have an iphone 4 , but it still has the ios 4 , and i want to upgrade it to a newer version , but when I try to do it via  Itunes it says there's a problem with the internet (and the internet it's working fine) and it won't work ,how can i upgrade?

    try rebooting your computer.

  • My magsafe adapter doesn't work, how can i solve this problem?

    my magsafe adapter doesn't work, how can i solve this problem?

    You can get a 60W power adapter for about $20 on eBay http://www.ebay.com/sch/i.html?_trkparms=65%253A1%257C66%253A2%257C39%253A1&rt=n c&_nkw=macbook+power+adapter&_dmpt=Laptop_Adapters_Chargers&_sticky=1&_trksid=p 3 286.c0.m14&_sop=12&_sc=1

  • My iMessage and FaceTime doesn't work. how can i get it working?

    my iMessage and FaceTime doesn't work. how can i get it working?

    Without more information such as:
    - what happens when your try?
    - DId it work before and other things
    all I can suggest is:
    iOS: Troubleshooting FaceTime
    iOS: Troubleshooting Messages

Maybe you are looking for

  • Update Profit Center in MARC Table

    Req is to update Profit Center in MARC table.So let me know any BAPI or function module for Mass Upload to change profit center. Thanks Suresh

  • Help - all data fields in all my forms are locked in design view

    Working in LiveCycle Designer ES2 v.9 -  I have 10 forms that I've designed for my client. I opened them this morning to edit the design and all the data fields are locked. In the Hierarchy tab, the names are greyed out. I haven't done anything to th

  • Moving iPhoto pictures to guest account's iPhoto Library.

    Hi, i use a 2006 mac mini, and I was wondering how can I move or Draft all of my iphoto pictures onto my 2nd account's iPhoto library on my mac mini? Because i have a "guest" account so to speak, and was just wondering if there's anyway i can do it.

  • Taking HOURS to copy music files from one external hard drive to another...

    Am I doing something wrong? Have a about 5,000+ songs on an external hard drive (hooked to my pc). I have networked the PC through my mac mini and I'm now copying those files onto a new/fresh external hard drive hooked to the mac mini. It's successfu

  • Asset Master Data not updated

    Quantity purchased via PO is not updating the master data of the newly created fixed assets. When created and inserted into any number, the amount is updated with the purchase. What do you make the purchase of newly created assets are properly update