The Line Break option

Hi,
How to insert Line Break (beside Enter) such as the following texts:
A request to delete some−
thing is rare.
to
A request to delete something
is rare.
or
A request to delete
something is rare.
Thanks

shift+enter. That said, this a really poor way to control line breaks in
paragraphs. Using the no break attribute is a far better solution.
Bob

Similar Messages

  • Find Grep And Ignore the line break

    Hi Guys!,
    In my document having the text of "application \nfor you"
    Then, I need to ignore the line break in entire text indesign document.
    please help me!
    Thanks by
    John Peter.

    hi,
    I am find only words
    the line break wherever it is used in the document. so i am ignore the \n
    Document text : \napplication \nfor \nyou      ----this sentence contain many line breaks
    I will find the text of above document text.
    Find what of grep preferences: (application for you)(--here what to do for ignore \n)
    Please help me.
    thanks,
    John peter.

  • Why doesn't the line break change w/font size??

    Hello,
    I am trying to print out a simple paragraph (String object) to the printer. I am trying to get the text to wrap properly based on font size. I've search on the posts and can't find the answer.
    It looks like the LineBreakMeasurer is only working with default font size? No matter what font I use in the graphics, the string always seems to break in the same column? Any ideas?
    Here is a sample of the code I'm using.
    Note - the actual printing (draw) is commented out.)
    Thanks,
    Jim
    import java.awt.*;
    import java.awt.print.*;
    import java.text.*; //for AttributedCharacter
    import java.awt.font.*; //for FontRenderContext
    public class TestPrint implements Printable {
         String textToPrint;
         AttributedString as;
         AttributedCharacterIterator aci;
         //Font font = new Font("TimesRoman", Font.PLAIN, 16);
         Font font = new Font("TimesRoman", Font.PLAIN, 8);
         public TestPrint(String text) {
              //text represents one paragraph of text
              textToPrint = text;
              as = new AttributedString(textToPrint);
              aci = as.getIterator();
              PrinterJob job = PrinterJob.getPrinterJob();
              job.setPrintable(this);
              if (job.printDialog() ) {
                   try {
                        job.print();
                   catch(Exception e) {
                        e.printStackTrace();
         public static void main(String args[]) {
              String testMsg = new String("TEST TEST TEST - The quick brown fox jumped over the lazy dogs back. " +
                             "How now brown cow? This will be a fairly long line so I can see how the text will wrap " +
    "around on the printer when it prints. This is the end of the test string.\n");
              TestPrint tp = new TestPrint(testMsg);
              System.exit(0);
         public int print(Graphics g, PageFormat pf, int idx) {
              if (idx > 0)
                   return Printable.NO_SUCH_PAGE;
              Graphics2D g2d = (Graphics2D)g;
    Font fonta = g2d.getFont();
    System.out.println("orig graphics font = " + fonta.getName() + " - " + fonta.getSize() );
              g2d.setFont(font);
    Font fontb = g2d.getFont();
    System.out.println("new graphics font = " + fontb.getName() + " - " + fontb.getSize() );
              float xo = (float)pf.getImageableX();
              float yo = (float)pf.getImageableY();
              int y = font.getSize();
              FontRenderContext frc = g2d.getFontRenderContext();
              //aci is the AttributedCharacterIterator
              LineBreakMeasurer measurer = new LineBreakMeasurer(aci, frc);
              float wrappingWidth = (float)pf.getImageableWidth();
    System.out.println("wrappingWidth = " + wrappingWidth);
              while (measurer.getPosition() < aci.getEndIndex() ) {
    System.out.println("measurer position = " + measurer.getPosition() + " next offset = " +
                                       measurer.nextOffset(wrappingWidth) );               
                   String printLine = textToPrint.substring(measurer.getPosition(), measurer.nextOffset(wrappingWidth) );
                   measurer.setPosition(measurer.nextOffset(wrappingWidth));
    System.out.println("printLine = " + printLine);               
                   //g2d.drawString(printLine, xo, y + yo);
                   y += font.getSize();
              //return Printable.PAGE_EXISTS;
              return Printable.NO_SUCH_PAGE;
    }

    Just for everyone elses reference, below is the modified code that works for me.
    <pre>
    import java.awt.*;
    import java.awt.print.*;
    import java.text.*; //for AttributedCharacter
    import java.awt.font.*; //for FontRenderContext
    import java.util.*;
    import javax.swing.*;
    public class PrintTest3 implements Printable {
    String textToPrint;
    AttributedString as;
    AttributedCharacterIterator aci;
    Font font = new Font("Arial", Font.PLAIN, 18);
    //Font font = new Font("TimesRoman", Font.PLAIN, 8);
    public PrintTest3(String text) {
    //text represents one paragraph of text
    textToPrint = text;
    as = new AttributedString(textToPrint);
    aci = as.getIterator();
    PrinterJob job = PrinterJob.getPrinterJob();
    job.setPrintable(this);
    if (job.printDialog() ) {
    try {
    job.print();
    catch(Exception e) {
    e.printStackTrace();
    public static void main(String args[]) {
    String testMsg = new String("TEST TEST TEST - The quick brown fox jumped over the lazy dogs back. " +
    "How now brown cow? This will be a fairly long line so I can see how the text will wrap " +
    "around on the printer when it prints. This is the end of the test string.\n");
    PrintTest3 tp = new PrintTest3(testMsg);
    System.exit(0);
    public int print(Graphics g, PageFormat pf, int idx) {
    if (idx > 0){
    return Printable.NO_SUCH_PAGE;
    Graphics2D g2d = (Graphics2D)g;
    g2d.setFont(font);
    as.addAttribute(TextAttribute.FONT, font);
    float xo = (float)pf.getImageableX();
    float yo = (float)pf.getImageableY();
    int y = font.getSize();
    //aci is the AttributedCharacterIterator
    LineBreakMeasurer measurer = new LineBreakMeasurer(aci, g2d.getFontRenderContext());
    float wrappingWidth = (float)pf.getImageableWidth();
    while (measurer.getPosition() < aci.getEndIndex() ) {
    String printLine = textToPrint.substring(measurer.getPosition(), measurer.nextOffset(wrappingWidth) );
    measurer.setPosition(measurer.nextOffset(wrappingWidth));
    g2d.drawString(printLine, xo, y + yo);
    y += font.getSize();
    return Printable.PAGE_EXISTS;
    </pre>

  • Why Rich Text (HTML Only) format email introduces line breaks (paragraph marks) in the email body in html?

    A sentence in rich text (change in Options, Delivery format) appears as a single sentence in browser. But when I check the page source I see that sentence has been broken in to multiple lines. Why is this done? Isn't this a bug?
    When viewed in a browser or application that supports rich text this does not create any problem since the line breaks are not taken into account . But I am trying to extract the text from this html and display in a nonHTML application like notepad.
    Is this done on purpose?
    For eg.
    In browser - Honesty is the best policy
    In View HTML Source -
    Honesty
    Is the
    best
    policy.

    lets start at the beginning.
    There is no such thing as rich text email, unless it in internal corporate stuff like MS Exchange, Lotus notes etc. EMail on the internet is HTML or Plain Text.
    I have no options > delivery format in my settings. Is this something to do with Outlook perhaps?
    Then there is your image. All those MSO objects. They stand for Microsoft Office Objects and indicate the source of the HTML as being Outlook or at least Microsoft Office. All in all I think your asking about Microsoft actions on a Mozilla forum.

  • How to put line break in the text

    Hi guys,
    This is a simple problem.i don't know how to concat a line break while creating a text.
    I am looping through the results of a query and want to form the text using the results.
    For each row of the resultset,I want to create a new line in the text i create.
    I was wondering how to put a new line in the text.
    I thought I can concat '\n' ,but it does not work.
    the code snippet in the procedure is :
    for c1_rec in c1 loop
    vMsg := ' There are ' || c1_rec.total ||
         ' documents of type ' || c1_rec.doc_type || '\n' ;
    end loop;
    Please give the solution.
    Thanks in advance.

    Thank you Mark.
    I tried your suggestion.But line break is not working in email.
    Here is how my code is
    in procedure 1 ,i create the message String as :
    for c1_rec in c1 loop
    vMsg := vMsg || ' ' || today_str || ' - ' || c1_rec.total ||
         ' Total inbound documents from : ' || c1_rec.target_value || CHR(13)||CHR10) ;
    dbms_output.put_line(' ' || vMsg);
    end loop;
    --here sending mail calling another procedure
    sendmail( '[email protected]' ,'[email protected]' , 'Test Subject ' , vMsg );
    In Procedure 2( i.e sendmail procedure )
    i am preparing email server connection from and to adresses .Then i am preparing and sending message as
    crlf VARCHAR2( 2 ):= CHR( 13 ) || CHR( 10 );
    conn:= utl_smtp.open_connection( EmailServer, Port );
         utl_smtp.helo( conn, EmailServer );
         utl_smtp.mail( conn, SENDER);
         utl_smtp.rcpt( conn, RECEIVER )
    mesg:= 'Subject: ' || SUBJECT || crlf ||
                   'Date: '||TO_CHAR( SYSDATE, 'Dy, dd Mon yyyy hh24:mi:ss' )||
                   crlf ||
                   'From:'||SENDER|| crlf ||
                   'To: '||RECEIVER || crlf ||
                   'Content-Type: text/html; charset=ISO-8859-1' || crlf ||
                   '' || crlf || MESSAGE ;
         utl_smtp.data( conn, mesg );
         utl_smtp.quit( conn );
    even now the mail we are getting is not having the line break.I am having line break in dbms output,but not in the mail.
    Is there any mistake how I am sending the mail.Or is there any other way we can put line break in the text
    Thank you.

  • Copy the contents of Jtabl with line breaks to Excel

    Hi every one,
    In my stand alone application,I am copying the contents of Jtable i.e contents having the line breaks(\n).
    While copying and pasting the contents to Jtable,instead of linebreaks, a square symbol is appearing in the excel along with the line break.line break functionality is happening,but the additional symbol(empty square box) is appearing.
    here is my code:
    S = (String) "\""+mProcessQuestionTestItemTable.getValueAt(rowsselected, colsselected[j])+"\""; S=S.replace("\r\n", "\n").replace("\n", "\r\n");
    stringbuffered.append(S);can anyone help me in this?
    thank you!!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    I want to copy the contents of Jtable(contents having Line breaks(\n)) and pasting to Excel.
    While pasting the contents to Excel, a box is appearing in the excel.
    To remove the empty square box, i tried the sample code:
    originalstr =(String)"\""+ mProcessQuestionTestItemTable.getValueAt(rowsselected, colsselected[j])+"\"";
    originalstr=originalstr.replace("\r\n", "\n").replace("\n", "\r\n");
    strngBuffere.append(S);
    There will be no box,If i copy the contents of Jtable and pasting in notepad.
    the box is appearing in Excel only.
    can you suggest something to solve this..
    Thank you.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • LE7:Score Layout:Global Format:Maximum Bars per Line - Line Break Bug!

    Hello
    This problem occurs in Logic Express version 7.
    (I am using MacOS version 10.4.2 on an eMac)
    I am currently compiling and editing a large score for a big band composition consisting of 22 parts:
    Flute 1
    Flute 2
    Clarinet 1
    Clarinet 2
    Alto Sax 1
    Alto Sax 2
    Tenor Sax 1
    Tenor Sax 2
    Baritone Sax
    Trombone 1
    Trombone 2
    Trombone 3
    Trombone 4
    Trumpet 1
    Trumpet 2
    Trumpet 3
    Trumpet 4
    Guitar
    Keyboard
    Electric Bass
    Percussion 1 (Kit)
    Percussion 2 (Aux)
    I am creating the score in a separate file, and I am combining parts into 1 stave each by instrument like this:
    Flute 1 & 2
    Clarinet 1 & 2
    Alto Sax 1 & 2
    Tenor Sax 1 & 2
    Baritone Sax
    Trombone 1 - 4
    Trumpet 1 - 4
    Guitar
    Keyboard (2 staves)
    Bass
    Percussion
    Each instrument, with the exception of keyboard which has 2 staves, consists of one stave, making up systems of twelve staves each. By sizing down each score style to 2,
    I have managed to fit 2 systems onto each page, therefore significantly reducing the amount of paper needed.
    The problem comes when organising the layout of my score,
    in particular, the line breaks. Using layout:global format, I have limited the maximum number of bars per line to 8, both in the page edit and normal score mode.
    I am trying to divide up my score so that there are 8 bars per system. Using the white arrow tool, I am dragging bars up and down in order to achieve this.
    However, when I get 30 odd bars in, I discover a system with 12 bars crammed into it - and even printing it off, it is clear that the system could benefit with less bars; the notation is squashed up together and not very easy to read.
    THIS IS THE ACTUAL PROBLEM:
    So I tried using the white arrow to move the last 4 bars down onto the next system, and a bug occurs where I end up with about 20 bars on the system, oddly distorted, the first few bars of which are squashed up together at the beginning of the line, and the last bar of which is stretched far off the right hand side of the page out of view. Then the next 20 or so bars are no where to be seen (probably far off the right hand side of the page) before the system below.
    If you dont know what I am talking about, I could provide a screenshot if you request.
    I have tried everything to get 8 bars on that particular system; dragging the stretched bar downwards, dragging squashed bars downward, moving bars down 1 by 1, moving bars onto the system above, moving bars away from the system below (to make room for the 4 bars that I want to move from above), adding more bars and dragging them down, but none of these methods have worked. I am either stuck with 12 bars crammed onto one system and 4 bars on the next or an oddly distorted version of the system which cannot possibly be read. Even when I settle with the unsatistactory former, I encounter further problems on subsequent systems below, some systems of which are already distorted.
    All I want is to have 8 bars per system, it should not be too much to ask! The layout:global format:maximum-bars-per-line calculation seems to be redundant, even when I reset the default line breaks - it just does not automatically set 8 bars per line, which it should do. Is there not an option to determine bars individually by number onto their respective lines, without having to use the white arrow graphic layout tool?
    The problem is extremely frustrating, and it is preventing me from completing, presenting and handing in a score for my university music composition.
    I have no other score producing software, and starting it
    from scratch on paper is going to take me weeks, because it consists of 830 12/8 bars in 22 parts, and I need to get it ready by next term!
    Any help would be extremely helpful and much appreciated, especially a patch or a useful way round. It could be related to memory, or hard drive space, as I have experienced similar problems in the past, where my score has been stretched off the page during a time when I have had little disk space...and this is a very large piece of music which might stretch the score capabilities of Logic.
    If so, has anyone got any suggestions?
    Thanks!
    Rory
    eMac   Mac OS X (10.4.2)  
    eMac   Mac OS X (10.4.2)  

    nope just cutting should work.
    here are some things to try:
    1. try assigning a different score style. for the regions. duplicate and then adjust the default ones if necessary.
    2. try creating a new instrument set. in fact delete them and make a new one (use the key command: create instrument set from selected)
    3. it may be a formatting problem so check:
    in global layout constant spacing (try 8 or 9) and proportional spacing (try 45 or so). then try factory defaults.
    4. try copying and pasting the midi into a brand new region and looking at the score for that.
    5. try fiddling with the layout tool drqagging bars up or down.
    normally simply cutting the region of just one object is enough to force a redraw. maybe try it on all of the regions. what happens when you double click on a region?

  • Converting Mac/Unix line breaks to DOS

    I have a text file I regularly have to import into a web application, and the line breaks need to be DOS for it to work. I've been opening/saving as with TextWrangler, which can convert the line breaks.
    Is there a way to create a folder action or automator workflow that would automatically convert the line breaks every time that file (it's always the same file name and in the same folder) is placed in the folder?

    I found this:
    http://forums.macosxhints.com/showthread.php?t=125
    gives a few options, including a shell script.

  • Gmail Exchange - line break issues

    When using Exchange for push Gmail on my iPhone 4, I've noticed that any emails I sent have odd line breaks inserted into them. As I'm using the iPhone for work, any emails I send are rendered almost unintelligible. This is particularly bad as I am a professional writer. When using POP to access Gmail the text appears absolutely fine.
    How can I ensure that my emails stay in their original format and don't have line breaks inserted where I don't want them? If this is possible with POP, surely it should be possible with Exchange. Any ideas?
    Device: iPhone 4
    Carrier: O2
    Country / Language: UK
    OS / Browser / build number (if applicable): iOS 4.2

    gax23 wrote:
    When using Exchange for push Gmail on my iPhone 4, I've noticed that any emails I sent have odd line breaks inserted into them. As I'm using the iPhone for work, any emails I send are rendered almost unintelligible. This is particularly bad as I am a professional writer. When using POP to access Gmail the text appears absolutely fine.
    How can I ensure that my emails stay in their original format and don't have line breaks inserted where I don't want them? If this is possible with POP, surely it should be possible with Exchange. Any ideas?
    Device: iPhone 4
    Carrier: O2
    Country / Language: UK
    OS / Browser / build number (if applicable): iOS 4.2
    The problem arises because the iPhone uses "Plain Text" to send emails.
    When using gmail, gmail automatically inserts breaks in "Plain Text" emails every 78 characters, the reason why you see the breaks when unexpected.
    See: http://www.google.com/support/forum/p/gmail/thread?tid=4d1cecc1aab102ef&hl=en
    To fix this problem:
    1. Apple can allow us to send mail with Rich Text support from iOS devices OR
    2. Google has to change the line breaks setting so that Plain text flows (and isn't broken) <-- this option is probably more realistic
    I have tried from a hotmail account, sending email as plain text doesn't have line breaks imposed like the gmail account, but rather "flows".
    If you want gmail to add a setting to disable line breaks in plain text emails:
    +Suggest the feature here:+
    +http://mail.google.com/support/bin/static.py?page=suggestions.cs+
    +I chose these categories:+
    +- I have another idea+
    +- - Sending and receiving+
    +- - - Composing and delivery+
    +- - - - Sending options+
    +Configure or disable plain text wrap length.+

  • Are line breaks considered as a paragraph ?

    Hi
    I am imorting a HTML text into a TextFlow using TextConverter.importToFlow
    The format I am using is TextConverter.TEXT_FIELD_HTML_FORMAT
    I am setting the formatso the space after a paragrph as follows:
    paragraphSpaceAfter = 30
    My question is why are line breaks tag <br> give me the same space between lines as a paragraph?
    can I control the height of the line breaks ?

    You could try \n as newlines - replacing <br> elements with new lines.  I doubt it will be a robust solution as the TextFieldHTMLImporter collapses the whiteSpace always.
    If you want to import HTML (and not TextField HTML) you're best bet is to create your own importer.  Starting with the TextField HTML importer is an option if you feel its close enough.  Minimally there's some useful code in the class for converting street HTML to XML.
    There's a blog post about connecting a client importer to TLF 2.0.
    http://blogs.adobe.com/tlf/2010/11/custom-clipboard-formats.html
    Hope that helps,
    Richard

  • OutputLabel and line breaks doesn't work - Is there a hack for JSF1.2?

    Hello,
    I use JSF 1.2 and Facelets to generate a form automatically. This works so far well. But if I have a label with line breaks, JSF does not convert the line breaks into �
    � tags. Is there a hack to convert line breaks into �
    � tags?
    A little example
    Code:
    <h:outputLabel value="#{component.label}" for="#{component.id}" />
    <h:inputText value="#{component.value}" id="#{component.id}" />component.label = �First Line\nSecond Line�
    component.value = "UserInput"
    This is rendered to:
    First Line Second Line      [UserInput]
    Instead of:
    First Line        [UserInput]
    Second Line One possible solution is to disable �escape�. But this is a bad solution because there are umlauts and angle brackets (�<�,�>�) in some texts for my labels. Does anyone know a better solution?
    Regards
    Martin

    Hi Raymond,
    thanks for your tip. It is a very good idea. But while testing I have found a little problem. with "pre". JSF renders labels like this:
    <label> <---- notice this line break
    Text</label>All labels start with a line break in the HTML code. So all labels start with a line break in the browser too if I use CSS with the "pre" option :(
    Regards
    Martin
    Message was edited by:
    mwinandy

  • 2.1 RC Extra Line Breaks

    How do I turn off the line break after CREATE OR REPLACE so that CREATE OR REPLACE <package name> PACKAGE AS stays on the same line. Been into the formatting options and tried various combinations and cannot get it to change. Do not remember it doing this with previous version of sql developer.

    Hi colinj ,
    I went through a few of the options and I could not suppress that newline.
    The same happens in 1.5.5.59.69 . There have been a couple of improvements in the formatting
    engine for this release but this newline has not been changed for this release.
    -Turloch

  • SSL and line break "\n"

    Hey,
    I have a SSL client/server pair that pass messages between each other. Basically I'm having a problem where any sent message containing a line break are split based on this line break.
    So if I sent "cheese \n monster \n", the server would recieve it as two different commands ("cheese" and "monster), instead of a single string.
    Is this unavoidable? I could replace the line breaks with some other identifier and replace them with line breaks when the message is recieved. But I'd rather try and find a way around this first.
    Thanks in advance :)

    SSL doesn't do anything with line-breaks. Once the SSL handshake has taken place, it's just a Socket. I've used JSSE to transfer all kinds of data, and it doesn't do anything to the data being sent. If your code's behavior has changed after switching to SSLSocket, then I'm quite certain you've changed more than just the socket-type along the way.
    What I'm saying is, if you're using readLine() to read from the Socket stream, then it's going to give you each line in turn - that's what readLine() does, whether your end datasource is a SocketInputStream or a File. If your data has linebreaks in it, then you have two choices - don't use readLine() the way you are, or encapsulate your data as a message. Say, have a "MESSAGE START" at the beginning, and a protocol that says "do readLine() until you see 'MESSAGE END' ", for example.
    Grant
    (Well, there is a third option - have a protocol that breaks in the face of line-ends in the data. But I don't think you want that one...)

  • ALV Export to excel (spreadsheet) without line break

    my ALV report contains 76 columns, if i try to download it in an excel sheel its not getting displayed in correct format.
    Few columns are automatically displayed in the second row and also all my values are getting collapsed due to this display.
    In the print preview also i am getting the same problem.
    Is there any column limit in ALV display or i can make it to get display correctly as it is in the exact output.
    ALv reports contain various options such as sort,filter,print preview, download to excel etc....in this if i use the download to excel option in the excel sheet its getting displayed as col1,col2,col3.......col54
    col55,col56.................col75
    but i need the output to be in a single line such as col1,col2,col3,.........col75
    I do not want the line break.
    Edited by: Suhas Khengle on Oct 1, 2008 11:50 AM

    Hi Suhas,
    Can you tell me what was the solution for your issue? I'm also facing same issue
    Regards,
    Siva

  • Line breaks in emails when using Gmail

    *The problem arises because the iPhone uses "Plain Text" to send emails.*
    *When using gmail, gmail automatically inserts line breaks in "Plain Text" emails every 78 characters, the reason why you see the breaks when unexpected.*
    *See: http://www.google.com/support/forum/p/gmail/thread?id=4d1cecc1aab102ef&hl=en*
    *To fix this problem:*
    *1. Apple can allow us to send mail with Rich Text support from iOS devices OR*
    *2. Google has to change the line breaks setting so that Plain text flows (and isn't broken) <-- this option is probably more realistic*
    *I have tried from a hotmail account, sending email as plain text doesn't have line breaks imposed like the gmail account, but rather "flows".*
    *If you want gmail to add a setting to disable line breaks in plain text emails:*
    *Suggest the feature here:*
    *http://mail.google.com/support/bin/static.py?page=suggestions.cs*
    *I chose these categories:*
    *- I have another idea*
    *- Sending and receiving*
    *- - - Composing and delivery*
    *- - - - Sending options*
    *-For comments: Configure or disable plain text wrap length.*

    I am having the same problem with an IMAP/SMTP account. It was a GMail account, I switched it to using the GMail auto setup and haven't had any issues.
    But under the standard IMAP/SMTP setting almost 1/3 of all messages were showing no content.
    Though I don't recall exactly - I think most of them were sent while I was on 3G, and it otherwise works fine on WiFi.

Maybe you are looking for

  • Apple ID for 50 users

    My Region is "outside" the VPP allowed regions. I have 50 users and need a work around. How can I manage all of them.

  • Is there a way to change caption info from my iPad in Lightroom Mobile?

    I want my client to be able to caption photos as I do the processing from my laptop.  I want him to work from my iPad. Can this be done? I have the two devices synced. It seems to be working correctly. I just cant find the button to let me do the cap

  • Help on handling large data urgent

    i have to compare fieldname from 2 different servers using table dd03l the problem im facing here is of huge data.. i have created rfc to fetch data from the higher server can neone tell me by ne possible ways i can reduce the load on fetching there

  • IMovie 06 hanging up in Edit mode

    No problems loading and editing frames for a recent project. Today I wanted to add titles and transitions and get nothing but a beach ball when trying anything beyond opening "Editing" and one more click. Frustrating as no problems in Tiger. (Loaded

  • Coming from Android and....

    I am looking for an app like Dindy for Droid. It basically lets your phone be on silence and when someone calls you will send them a text message and tell them to call back if an emergency. Then on second callback phone will go to full volume and rin