Appearance of text on webpage

text on webpages is thin/ shaky-looking/ hard to read. Not talking about font size here.
== after downloading Firefox onto my computer

You can enable ClearType, used by IE as default.
You can enable ClearType system wide for all programs to make other programs like Firefox use it.
Vista: Control Panel > Personalization > Window Color and Appearance > Effects: "Use the following method to smooth edges of screen fonts"
XP: Control Panel > Display > Appearance > Effects: "Use the following method to smooth edges of screen fonts"
See http://support.microsoft.com/kb/306527 - HOW TO: Use ClearType to Enhance Screen Fonts in Windows XP
[http://www.microsoft.com/typography/cleartype/tuner/tune.aspx Windows ClearType Tuner] (online version only works with IE)
[http://www.microsoft.com/typography/ClearTypeInfo.mspx Microsoft typography: ClearType information]

Similar Messages

  • I have poor/no service on my iphone 6  in places that I do have service on my old iphone 5.  Takes 10 minutes to send text and webpages will not load but load within seconds on the iphone 5 and forget making a phone call.  How do i resolve this issue??

    I have poor/no service on my iphone 6  in places that I do have service on my old iphone 5.  Takes 10 minutes to send text and webpages will not load but load within seconds on the iphone 5 and forget making a phone call.  How do i resolve this issue??

    Hey kristiac,
    Thanks for the question. If I understand correctly, you have no service on the iPhone. I would recommend that you read this article, it may be able to help the issue.
    If you can't connect to a cellular network or cellular data - Apple Support
    Thanks for using Apple Support Communities.
    Have a good one,
    Mario

  • Jbutton in applet not appearing when embedded in webpage(jre1.6.0_02)

    Hi,
    I am accessing a webcam from an applet embedded in a webpage using JMF 2.1. I am using JButtons using Image Icons. When i view the applet using applet viewer both the player and buttons appear fine. However when the applet is embedded in a jsp page the image JButtons don't appear at all. I am using jre1.6.0_02.
    Following is the code( The capture and cancel JButtons dont appear when viewed in webpage):
    import java.awt.*;
    import java.io.*;
    //import java.awt.Graphics;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.*;
    import java.net.URL;
    import java.net.URLConnection;
    import javax.media.format.*;
    import javax.media.control.*;
    import javax.media.util.*;
    import javax.media.*;
    import javax.swing.ImageIcon;
    import javax.swing.JApplet;
    import javax.swing.JButton;
    import javax.swing.JComponent;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import com.sun.image.codec.jpeg.JPEGCodec;
    import com.sun.image.codec.jpeg.JPEGEncodeParam;
    import com.sun.image.codec.jpeg.JPEGImageEncoder;
    public class WebCamUnit extends JApplet implements ActionListener
         static final long serialVersionUID = -116069779446114664L;
         private static final String FILENAME_HEADER = "fileName";
         private static final String FILELASTMOD_HEADER = "fileLastMod";
         public static Player player = null;
         public CaptureDeviceInfo captureDeviceInfo = null;
         public MediaLocator ml = null;
         public JButton captureButton, cancelButton = null;
         public Buffer buf = null;
         public Image img = null;
         public VideoFormat vf = null;
         public BufferToImage btoi = null;
         public Component comp;
         public static boolean isTrue = true;
         public JPanel buttonPanel, playerPanel;
         public static String localDirectoryName = null;
         public static String serverDirectoryName = null;
         public static String servletURL = null;
         public static String localImageName = null;
         public static String serverImageName = null;
         String webCamDriverName = null;
         String middleButtonFilename = "TakePicture.JPG";
         String frontButtonFilename = "Cancel.JPG";
         public void init()
              localImageName = getParameter("LOCAL_IMAGE_NAME");
              serverImageName = getParameter("SERVER_IMAGE_NAME");
              localDirectoryName = getParameter("LOCAL_DIRECTORY_NAME");
              serverDirectoryName = getParameter("SERVER_DIRECTORY_NAME");
              servletURL = getParameter("SERVLET_URL");
              webCamDriverName = getParameter("WEBCAM_DRIVER_NAME");
              setLayout(new BorderLayout());
              setSize(320, 340);
              ImageIcon middleButtonIcon = new ImageIcon(middleButtonFilename);
              ImageIcon frontButtonIcon = new ImageIcon(frontButtonFilename);
              captureButton = new JButton(middleButtonIcon);
              cancelButton = new JButton(frontButtonIcon);
              captureButton.setBackground(Color.WHITE);
              captureButton.setContentAreaFilled(false);
              captureButton.setBorderPainted(false);
              captureButton.setFocusPainted(false);
              captureButton.addActionListener(this);
              captureButton.setEnabled(true);
              cancelButton.setBackground(Color.WHITE);
              cancelButton.setContentAreaFilled(false);
              cancelButton.setBorderPainted(false);
              cancelButton.setFocusPainted(false);
              cancelButton.addActionListener(this);
              cancelButton.setEnabled(true);
              buttonPanel = new JPanel();
              buttonPanel.add(captureButton);
              buttonPanel.add(cancelButton);
              buttonPanel.setBackground(Color.WHITE);
              getContentPane().add(buttonPanel, BorderLayout.CENTER);
              if(null==webCamDriverName)
                   webCamDriverName = "vfw:Microsoft WDM Image Capture (Win32):2";
              captureDeviceInfo = CaptureDeviceManager.getDevice(webCamDriverName);
              ml = captureDeviceInfo.getLocator();
                   try
                        player = Manager.createRealizedPlayer(ml);
                   catch (Exception e)
                   try
                        player.start();
                   catch (Exception e)
         public void destroy()
              player.close();
         public void start()
              try
                   if ((comp = player.getVisualComponent()) != null)
                        playerPanel = new JPanel();
                        comp.setBounds(0, 0, 320, 240);
                        playerPanel.add(comp);
                        getContentPane().add(playerPanel, BorderLayout.NORTH);
                   player.start();
              catch (Exception e)
              setVisible(true);
              invalidate();
              repaint();
         public boolean action(Event e, Object o)
              return true;
         public void paint(Graphics g)
              super.paint(g);
         public static void playerclose()
              player.close();
              player.deallocate();
         public void actionPerformed(ActionEvent e)
              JComponent c = (JComponent) e.getSource();
              if (c == captureButton)
                   player.stop();
                   FrameGrabbingControl fgc = (FrameGrabbingControl) player
                             .getControl("javax.media.control.FrameGrabbingControl");
                   buf = fgc.grabFrame();
                   btoi = new BufferToImage((VideoFormat) buf.getFormat());
                   img = btoi.createImage(buf);
                   String newDir = localDirectoryName;
                   boolean success = (new File(newDir)).mkdirs();
                   String imageServername = localDirectoryName + localImageName;
                   saveJPG(img, imageServername);
                   isTrue = false;
              else
                   if ((comp = player.getVisualComponent()) != null)
                        getContentPane().add(comp, BorderLayout.NORTH);
                        player.start();
                   isTrue = true;
         public void stop()
              player.stop();
              player.deallocate();
              getContentPane().removeAll();
         public static void saveJPG(Image img, String s)
              img = img.getScaledInstance(160, 120, 1);
              BufferedImage bi = new BufferedImage(img.getWidth(null), img
                        .getHeight(null), BufferedImage.TYPE_INT_RGB);
              Graphics2D g2 = bi.createGraphics();
              g2.drawImage(img, 0, 0, null, null);
              FileOutputStream out = null;
              try
                   out = new FileOutputStream(s);
              catch (java.io.FileNotFoundException io)
                   String message = "File Not Found";
                   JOptionPane pane = new JOptionPane(message);
                   JDialog dialog = pane.createDialog(new JFrame(), "Dilaog");
                   dialog.show();
              JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
              JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(bi);
              param.setQuality(0.50f, false);
              encoder.setJPEGEncodeParam(param);
              try
                   encoder.encode(bi);
                   out.close();
                   try
                   transferFile(localDirectoryName+localImageName,serverImageName,"",-1);
                   catch (Exception e1)
                        String message = "Error occurred while transferring image to server!!";
                        JOptionPane pane = new JOptionPane(message);
                        JDialog dialog = pane.createDialog(new JFrame(), "Dilaog");
                        dialog.show();
                   String message = "Image saved successfully!!";
                   JOptionPane pane = new JOptionPane(message);
                   JDialog dialog = pane.createDialog(new JFrame(), "Dilaog");
                   dialog.show();
              catch (java.io.IOException io)
                   String message = "Error occurred while saving image!!";
                   JOptionPane pane = new JOptionPane(message);
                   JDialog dialog = pane.createDialog(new JFrame(), "Dilaog");
                   dialog.show();
              catch (Exception e)
            // this method transfers the prescribed file to the server.
            // if the destination directory is "", it transfers the file to      "d:\\".
            //11-21-02 Changes : This method now has a new parameter that references the item
            //that is being transferred in the import list.
            public static String transferFile(String srcFileName, String
         destFileName,
                                              String destDir, int itemID)
               if (destDir.equals(""))
                  destDir = serverDirectoryName;
               // get the fully qualified filename and the mere filename.
               String fqfn = srcFileName;
               String fname = fqfn.substring(fqfn.lastIndexOf(File.separator)+1);
               try
                  //importTable importer = jbInit.getImportTable();
                  // create the file to be uploaded and a connection to      servlet.
                  File fileToUpload = new File(fqfn);
                  long fileSize = fileToUpload.length();
                  // get last mod of this file.
                  // The last mod is sent to the servlet as a header.
                  long lastMod = fileToUpload.lastModified();
                  String strLastMod = String.valueOf(lastMod);
                  URL serverURL = new URL(servletURL);
                  URLConnection serverCon = serverURL.openConnection();
                  // a bunch of connection setup related things.
                  serverCon.setDoInput(true);
                  serverCon.setDoOutput(true);
                  // Don't use a cached version of URL connection.
                  serverCon.setUseCaches (false);
                  serverCon.setDefaultUseCaches (false);
                  // set headers and their values.
                  serverCon.setRequestProperty("Content-Type",
                                               "application/octet-stream");
                  serverCon.setRequestProperty("Content-Length",
                  Long.toString(fileToUpload.length()));
                  serverCon.setRequestProperty(FILENAME_HEADER, destDir + destFileName);
                  serverCon.setRequestProperty(FILELASTMOD_HEADER, strLastMod);
                 // if (webadminApplet.DEBUG) System.out.println("Connection with FTP server established");
                  // create file stream and write stream to write file data.
                  FileInputStream fis = new FileInputStream(fileToUpload);
                  OutputStream os = serverCon.getOutputStream();
                  try
                     // transfer the file in 4K chunks.
                     byte[] buffer = new byte[4096];
                     long byteCnt = 0;
                     //long percent = 0;
                     int newPercent = 0;
                     int oldPercent = 0;
                     while (true)
                        int bytes = fis.read(buffer);
                        byteCnt += bytes;
                        //11-21-02 :
                        //If itemID is greater than -1 this is an import file      transfer
                        //otherwise this is a header graphic file transfer.
                        if (bytes < 0) break;
                        os.write(buffer, 0, bytes);
                     os.flush();
                     //if (webadminApplet.DEBUG) System.out.println("No of bytes sent: " + byteCnt);
                  finally
                     // close related streams.
                     os.close();
                     fis.close();
                 // if (webadminApplet.DEBUG) System.out.println("File Transmission complete");
                  // find out what the servlet has got to say in response.
                  BufferedReader reader = new BufferedReader(
                                 new
         InputStreamReader(serverCon.getInputStream()));
                  try
                     String line;
                     while ((line = reader.readLine()) != null)
                       // if (webadminApplet.DEBUG) System.out.println(line);
                  finally
                     // close the reader stream from servlet.
                     reader.close();
               } // end of the big try block.
               catch (Exception e)
                  System.out.println("Exception during file transfer:\n" + e);
                  e.printStackTrace();
                  return("FTP failed. See Java Console for Errors.");
               }  // end of catch block.
               return("File: " + fname + " successfully transferred.");
            }  // end of method transferFile().
    }

    >
    I am accessing a webcam from an applet embedded in a webpage using JMF 2.1. I am using JButtons using Image Icons. When i view the applet using applet viewer both the player and buttons appear fine. However when the applet is embedded in a jsp page the image JButtons don't appear at all. >That is probably because of security. Add 10 Dukes to the thread to indicate you are serious about resolving this, and I might expand on that answer.

  • Buttons just appearing as text for certain clients until enabled with onClick and enabled

    Would anyone know why buttons may disappear for some clients but not others.   I'm not finding a consistent pattern.  When I sign in locally or through vpn they display and behave properly, but when I sign in externally via Chrome or IE 11
    sometime the buttons only appear as text other disable buttons that are enabled on click.  I have a laptop with ie11 Win8 and desktop with ie11 win7.   The laptop displays the buttons proper behavior and the desktop does not.  
    anyone have any ideas.  Someone was working on the server recently and I'm wondering if any IIS setting may cause this problem.  Thanks for help!
    Buttons original state:
    <td><asp:Buttonrunat="server"Text="Print"ID="btnPrint"CssClass="tablerowheader"Enabled="False"/>
    <asp:Buttonrunat="server"Text="Submit"ID="btnSubmit"OnClick="btnSubmit_Click"
    CssClass="tablerowheader"Enabled="False"/></td>
    Buttons action:
    <asp:checkbox runat="server" id="chkSignature" onclick="EnableSubmitButton(this)" text="I Agree" Font-Bold+"true" checked="False">

    Solved.  The disabled status was being overwritten as null.

  • Mountain Lion - Window for ID and Pw appear without text!

    After install Mountain Lion, (Leopard to Mountain Lion with succes!) the window for ID and Pw (that appear for all permission, to install a new program or other) appear without text! Button to say ok or return are without text so I can't see nothing! And I can't insert my ID or my password!
    What appened?????
    Sorry for my english..
    Thanks, Sara

    Please read this whole message before doing anything. This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it. Step 1 The purpose of this step is to determine whether the problem is localized to your user account. Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up guest users” (without the quotes) in the search box. Don't use the Safari-only “Guest User” login created by “Find My Mac.” While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin. Test while logged in as Guest. Same problem(s)? After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it. *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing. Step 2 The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login. Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows: 
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click Log in.
     Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs. The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. *Note: If FileVault is enabled, or if a firmware password is set, you can’t boot in safe mode. Test while in safe mode. Same problem(s)? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Contact does not appear when texting

    Although the contact does save and comes up when I call it or look it up in my contact book, it does not appear via text/imessage. Ive restored the phone and deleted and recreated the contact numerous times yet the problem persists.

    I am expriencing the same issue with my iPhone 4S, were you able to resolve the problem?

  • Well I was using my iphone 5, When restart and it did not turn on gets stuck in the presentation of apple (the apple) and at the top left of the screen above the apple logo reincia Appears this text, down and then turns back on and i get the same error ,

    Well I was using my iphone 5, When restart and it did not turn on gets stuck in the presentation of apple (the apple) and at the top left of the screen above the apple logo reincia Appears this text, down and then turns back on and i get the same error , i try to restore with itunes restore mode and throws me error!, could anyone help? I'm going crazy!. Thank you!
    This is the mistake That I get up the logo and then reboots iphone and Continues to Appear;
    (NAND) _findflashmediaandkeepout: 601 physical nand block offset 1
    (NAND) start: 356 this 0x96959400 PROVIDER = 0x96b1de80 falshmedia = 0x96b1de80
    (NAND) WMR_Start: 149 apple PNN  NAND Driver, Read / Write
    (NAND) WMR_Start: 174 FIL_INT (OK)
    (NAND) WMR_open :371 vfl_open (ok)
    (NAND) s_cxt_boot:88 sftl: error, unclean shutdown; adopted 7775 spans
    (NAND) WMR_open:420 FTL_open      (ok)
    (NAND)_publishServices:642 FTL capabilities: 0x00000001
    (NAND)_ppnvflGetStruct:3469 checking borrowed blocks-count:23 max_count:23
    (NAND)_fetchBorrowedList:881 number of borrowed blocks 16

    Hi Guys!
    I'm German, so my english writing might not be perfect
    I had the same Issue on a 5 i bought. Exact same screen and writing. Battery was totally drawn, first thing I had to replace. The screen had been replaced and since then it wouldn't work anymore according to the previous owner.
    It took me a couple hours, after recieving a few errors like 4013 it just never completed the restore, got really hot as well. The Flexwire of the Dock Connector seemed damaged, replaced the dock, but that didn't help.
    I almost gave up, thought the Logic Board was bad.
    BUT! Then i deceided to check if it has anything to do with the Screen assembly, and it did.
    Long story short, on mine the front facing camera, and sensor assy were bad.
    Anyhow, the phone works ''perfect'' when i leave them unplugged. So I just ordered a new one and we will see if thats the problem or if the damage is in the Logic Board.
    If so, i can live without the sensor and front cam.
    Just wanted to share, good luck everyone.

  • Appearance of text/fonts on OS X

    What do people think about the appearance of text/fonts on systems running OS X? As a long-time windows user, I find it might take a little getting used to.

    Believe it or not, I think the latest FreeType interpreter does better, at least when its hint interpreter is enabled. Letterforms are sharper and yet not blocky.
    I should say that when I switched my Linux system from a VGA-driven CRT to a DVI-driven LCD, I had to throw out all my old font settings and start over to get a good subjective result.
    Randall Schulz

  • TS2928 could someone please tell me how to attach a document to email as an icon that opens....so it does not appear as text in the email??

    could someone please tell me how to attach a document to email as an icon that opens....so it does not appear as text in the email??

    Paste this into Terminal and hit return. If this attachment is text, it should work. Not sure about jpegs.
    defaults write com.apple.mail DisableInlineAttachmentViewing 1
    To reverse the setting, change the 1 to a 0.

  • How do I get specific font to ALWAYS appear in text field whether user has font on computer or not?

    I am designing a simple form to be used as template for OTHER people to type up room signs. We would like the signs to be in a specific font that is not generally loaded on the average computer, and we do not want to have to distribute fonts to a gazillion people. My thought was to create a LiveCycle from, whereby the room user could type their name and title in the text fields on the form, and in theory, it would appear in the font I chose for the text field. I have tried various things, but it always gets substituted by the user's computer.
    Tried: Choosing "rich text" for field format in Object palette; choosing "Embed fonts" in "Save Options"; tried static form, tried dynamic form.  It could be that my test user has such an old version of Reader that it just CANNOT work.
    Thanks!

    The restrictions are listed as "normal." And it does appear as embedded when I go to the document properties, though it didn't until I used it for the text on the form (as apposed to just using in the text fields.) And when another user opens the form, the text appears in the specified font, but once they type in the text field, it defaults to different font.
    BTW, it is an Open Type Font, if that makes any difference.

  • Received emails from Verizon - Pictures do not show correctly and strange characters appear in text

    When I receive emails from Verizon users, embedded images do not display inline.  Each image(s) instead is displayed as a empty box with the red X boxed at the upper left.  The images are correctly displayed at the very end of the email.
    Additionally, dotted capital A's appears frequently within the text as well as other extraneous characters and symbols.
    Do I have an incorrect setting in Live Mail (Outlook express displays the same) or is it something Verizon is doing?  All of my other emails from different providers display properly.
    Thanks in advance for any assistance which might be offered.
    nosewiki

    I have the same problem rec eiving from a friend who uses verizon. I use aol and even opened it in Internet Exporer and the same thing happened. This is a programing glitch with verizon email. I get the text in the email but the white squares with an x and no image. I have to downlod the images and open it as an attachment. The problem is you look at the image without the text which might be describing the image. Very inconvient. The person sending the emal has to enable the rich text option . I am still looking on how to do it on Verizon email but since I don't have it I am having trouble finding a solution.
    Pokerj

  • Attachments appear as  text

    When I am sent an attachment that is a video or picture when I click on it "textedit" appears and all I receive is garbled text or "Movie cannot be opened". Why is this happening? The "Movie cannot be opened" has always appeared but since I installed Leopard I get the garbled text.

    In most cases, the movie is labeled with a file extension, such as .wmv. The full file name would be: NewMovie.wmv.
    If that's the type of file you're seeing, installing Flip4Mac may help: http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx
    ~Lyssa

  • Checkbox appears with text behind box in FORM

    Hello,
    i created a master detail page where i can also edit the master through a form (all on the same page). The check boxes in the reports are fine but in the form (to edit the master) the box appears with a text behind the box: Eigen Fust ?      " id="P19_IND_EIGEN_FUST" />
    So "Eigen Fust ?" is the label i set for the check box then the actual check box appears and after that the text i do not know where it is from (" id="P19_IND_EIGEN_FUST" />).
    The "P19_IND_EIGEN_FUST" is the NAME of the form item i have for the check box.
    This is the LOV i set for the check box item:
    Select NULL d, HTMLDB_ITEM.CHECKBOX(1,IND_EIGEN_FUST,DECODE(IND_EIGEN_FUST,'Y','CHECKED','N','UNCHECKED')) r
    From KOOPOVEREENKOMSTEN
    Where id = :P19_ID
    Please can someone tell me why the text is placed behind the checkbox ?
    Regards Doenja

    No it is not the label that is shown there.
    The label is before the checkbox 'EIGEN FUST ?'.
    In the string that is shown behind the box the ITEM NAME from the checkbox in the form is shown. So it says : " id="P19_IND_EIGEN_FUST" />
    and there P19_IND_EIGEN_FUST is the ITEM FORM name from the check box.
    I really do not unserstand where that string is coming from.
    Has someone any other idea ?

  • Dotted Underline appears in text?

    When I try to change the text color, a dotted line appears beneath my text and it renders when I export to a pdf.  There are no settings activated for underline and I can't seem to be able to find anything online.?

    It would have to be a Stroke setting of Type:Dotted, no? (Window--Stroke, F10), not an underline.  Don't underlines always result in a non-dotted solid line underneath the text?
    Or, I suppose it could be a Character Style (Shift F11) with the Strikethrough suboption of Type:Dotted and possibly an Offset as well (?).
    I guess you'd have to select it first then check both the Character Styles and Paragraph Styles panels to see if any style gets chosen (turns blue) as you do the selecting.
    Keep the Stroke (F10) panel  open as well to see if anything "lights up" when you select the text with the dotted line.
    Then check the Character Panel (Shift-F11) menu (top right of panel): Strikethrough Options to see if a dotted strikethrough has been set.
    Or, it could be a Paragraph Style (F11) with either of the above embedded in it.

  • BBC News website appears in "text mode"

    The BBC News website has just started appearing in a "text mode". Previously the items were separated and the font was "filled in". Now the articles are all run together and the font appears as an outline.

    The problem seems to have cleared.
    I used System Restore to go back to a point before I had installed a plug in to enable FF to look at a TV web site. No improvement. (See attachment).
    because I had gone back a few days a couple of Win 7 updates had been rremoved. On closing down the pC they were re-installed. Restarting showed no improvement.
    I then started to use IE to browse the web and looked at a couple of sites. Then I went back to FF and the BBC site is running perfectly.

Maybe you are looking for

  • Email alias not working

    Under iOS6, I was able to create an alias for one of my email accounts and reply/send email with the alias in the From line.  With my upgrade to iOS7, while inputting the alias is easier, none of the smtp servers that worked before will accept the al

  • Need help: unique constraint

    Hey please tell How to add unique constraint on two columns on a table say Name and id Name should be case independent unique something like alter table xyz. add unique constraint on (upper(name),id ) Thnx

  • Premiere Pro cc14 keeps crashing... Yes, for me too.

    Premiere Pro cc14 keeps crashing, freezing and I keep having to force quit it, start again, and then after another little while (5-10min) - it does it again and again and again and again... you get the drift. I am on a MacBook Pro retina. Specs are l

  • Don't want all to open in Fireworks

    How do I stop Fireworks from taking over every photo

  • ITunes Store Crashing My iMac?

    For about the past hour, whenever I click on the iTunes store link in iTunes and then click the TV Shows link my iMac crashes. It completely locks up and requires a hard restart and it only happens if I am in the iTunes store TV Shows section. Anyone