CS5 : tabs for .php and .css but spaces for .html ?!?

Hello
my problem is simple
I modify the shorcuts for text indent to Tab by changing the files Menus.xml and the shorcuts file (these manips are painfull !). I have set 2 spaces as text indent in the preferences BUT it persists to add 2 tabs in php and css files !! in html-assimilated files no problem : 2 spaces
Is Dreamweaver for pro or .... ?

Hello
lots of answers fo other thread but here...
Please, Did  somebody have the same issue ?
Best regards

Similar Messages

  • Opening a tab delimited file and replacing a space

    Hi,
    I am trying to open a tab delimited file with 4 columns and corresponding values under it. If no value under the column, 0 should be replaced. I used the StringTokenizer and the split methods, but this doesnt seem to work. Any ideas?
    E.g
    Title1 Title2 Title3
    4 7
    5 2
    SHould be like this:
    Title1 Title2 Title3
    4 0 7
    0 5 2
    Thanks..

    The answer, however, is no. Java is a strongly typed
    language; there is no predefined manner in which a
    String object can be casted to an Integer object
    because a String is not an Integer.
    However, if you'd like to create an Integer based on
    the contents of a String, you can pass the String to
    the Integer.parseInt(String) method. That method
    will do one of two things: return the Integer object
    representing the integer contained within the String
    (if the String represents an Integer) or throw a
    NumberFormatException (if the String is not an
    Integer).Hi,
    Thanks tvynr for your reply. Ok first things, sorry, I had written that post in a hurry. Yes i dont usually put capital letters for my fields. Also i did mean using the add method. Not the get..
    And yes I have tried various different type castings. Just to see if one of them would work. And yes i did try Integer.parseInt() by passing in the string to get back its contents as an integer. *And yes the String content is an integer.
    Heres a snippet of my code -
                  List ArrScore1 = new ArrayList(); //List to store Score in one Array
                  List ArrScore2 = new ArrayList(); //List to store same Scores in another Array. FOr comparisions
                  List SCORES = new ArrayList();
                  int dist1,dist2 = 0;
                  float distance,percent;
                    while ((record = br.readLine())!= null)     //To read from a file line by line from first line
                      recCount++;
                      String rec = record;
                      String [] ScoreScop = rec.split("\t");
                      ArrScore1.add(ScoreScop[4])); 
                      ArrScore2.add(ScoreScop[4]);
                    } //End of While loop
                 System.out.println("Total Records: " + recCount);
                 for (int i=0; i<ArrScore1.size(); i++)
                    for (int j = i + 1; j < ArrScore2.size(); j++)
                       dist1  = Integer.parseInt(ArrScore2.get(j));  //Error I get here is is Cannot resolve symbol. What does this mean exactly?
    dist2 = Integer.parseInt(ArrScore1.get(i)); //Same error
    distance = dist1/dist2;
    percent = distance * 100;
    SCORES.add(percent); //Again same error
    } //End of j loop
    } // End of i loop
    I have included all the necessary packages as well. Including :
    import java.io.*;
    import java.util.*;
    import java.lang.*;
    import java.util.List;
    import java.util.ArrayList;Any idea what I am doing wrong here?

  • Help with PHP and CSS links (&mysql results)

    Hi
    Hope someone can help.  I have a column in a mysql5 database that records if an advert is 'featured' or not with 'yes' or 'no' in the database fields.
    I'm dynamically creating a list of adverts using php5 and DWCS3 where each ad comprises several table rows and these are wrapped up in a repeat region (rather than one table row per ad title) and I'd like to highlight the background of the 'featured' advert using  link to a style class eg so that the 'featured' ads have a different background colour to the rest of the ads listed.
    I've got the following code so far, which highlights the adverts but it does this for all of them (featured and non-featured).
    The 'advertpagetabletext' class is the standard (default) rule applied to non-featured adverts.  The "advertfeatured" class is the new background colour.
    Can anyone point me in the right direction / comment on the code below?
    Thanks in advance,
    M
    <?php $featured = $row_listJobs(['job_featured']; ?>
    <?php do { ?>
    <table width="100%" border="0" cellpadding="3" cellspacing="0"<?php if($featured == y) {echo 'class="advertfeatured"'; } else {echo 'class="advertpagetabletext"'; } ?>>
    <tr>
    <td ....rest of table and rows etc etc...

    Ahh, penny drops,
    From what I can see the class is coming through as "advertfeatured" on all of the ads - so it seems to be ignoring the fact that some are not featured / and doesn't revert to the other class for the second ad listing.
    //This is for a featured advert //
    Job Title: Viticulturalist
    etc etc //This is for a nonfeatured advert//
    Job Title: Cellar Hand
    Job Category: �i�o
            <tr

  • Mail.app and CSS Style Sheets in HTML E-mails

    Hi all,
    Query. I recently began to get some e-mails from a blog site where the e-mail background is black (or very dark), with black font. Hard to read of course.
    The background color appears to be getting set by a remote CSS style sheet, for which the URL is embedded in the HTML markup in the e-mail body. The background color is the same as the background color of the blog site.
    Based upon communications with the site author and developer, it would appear that this is unique to Mail.app. They are not seeing this on their end in their e-mail clients.
    When moving the same e-mail to a folder that syncs with Me.com, I can view the same e-mail online in the browser and a white background shows up, not the dark background.
    Thus, it would seem that Mail.app is honoring the CSS style sheet, while other applications are not.
    I do not see any obvious preferences in Mail.app to enable/disable this behavior.
    Am I missing something, or is Mail.app doing something that other mail clients do not.
    Thanks.

    I found an answer :
    defaults write com.apple.mail MinimumHTMLFontSize 13

  • PHP and Dreamweaver Spry Menu

    I have been searching for help with this - I have been getting an "internal error" message when I submit the form. I was having an issue with it working but not receiving anything... so I changed the php code and now it's taking me to an error page. Need this fixed soon.... I just went to a networking meeting... please help.
    I've been reading other people's posts and I just don't know enough about php to know what to change. I know how to write HTML/XHTML and CSS but with the form, obviously that's going to be harder.
    I've pasted both pages below - if anyone can take a look and let me know. Thank you!
    -  C
    The Confirmation Page: (what's supposed to be there instead of the internal error.)
    <?php
    if(isset($_POST['email'])) {
    $email_to = "[email protected]";
    $email_subject = "Caity_FitzGerald_Designs_Contact_Form";
    $message=
    "Customer: ".$_POST['name'] . "\r\n" . "\r\n" .
    "\r\n" .
    "Email: ".$_POST['email'] . "\r\n" . "\r\n" .
    "Phonenumber: ".$_POST['phonenumber'] . "\r\n" .
    "BusinessName: ".$_POST['bizname'] . "\r\n" .
    "\r\n" .
    "Howtheyfound me: ".$_POST['referral'] . "\r\n" . "\r\n" .
    "Location: ".$_POST['location'] . "\r\n" . "\r\n" .
    "\r\n" .
    "Servicesinterested: ".$_POST['wantedservices'] . "\r\n" .
    $_POST['clientrequest']; $from=$_POST['email'];
    $headers="From:$from" . "\r\n";
    mail($to.$subject,$message,$headers);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/template.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Caitlin FitzGerald Designs</title>
    <!-- InstanceEndEditable -->
    <link href="stylesheet.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <!-- InstanceParam name="backgroundpage" type="boolean" value="true" -->
    </head>
    <body>
    <div class="container">
    <div class="header"><!-- end .header --><a href="index.htm"><img src="images/Caitlin-FitzGerald-Designs.png" alt="logo" width="508" height="298" class="imgcentered" /></a>
    <ul id="MenuBar1" class="MenuBarHorizontal">
    <li><a href="index.htm">Home</a></li>
    <li><a href="portfolio.htm">Portfolio</a></li>
    <li><a href="services.htm">Services</a> </li>
    <li><a href="contact.htm">Contact</a></li>
    </ul></div>
    </div>
    <div class="content"><!-- InstanceBeginEditable name="edit body" -->
    <p><img src="pics/surfboard-cutout.png" width="1000" height="750" alt="thanks" /></p>
    <!-- InstanceEndEditable -->
    <!-- end .content -->
    <div class="footer">
    <table width="26%" border="0" align="center" cellpadding="2" summary="Find us on these social networks and connect with us.">
    <tr>
    <td width="17%"><a href="https://www.facebook.com/CFitzDesigns" target="_blank"><img src="pics/facebook.png" width="42" height="42" alt="facebook" /></a></td>
    <td width="17%"><a href="http://www.linkedin.com/in/caityfitzgerald" target="_blank"><img src="pics/linkedin.png" width="42" height="42" alt="facebook" /></a></td>
    <td width="18%"><a href="https://twitter.com/FitzGeraldCaity" target="_blank"><img src="pics/twitterbird.png" width="43" height="42" alt="twitter" /></a></td>
    <td width="20%"><a href="http://pinterest.com/caitlindesigns/" target="_blank"><img src="pics/pinterest.png" width="44" height="44" alt="pinterest" /></a></td>
    <td width="20%"><a href="http://www.behance.net/Cfitz" target="_blank"><img src="pics/behance.jpg" width="44" height="43" alt="behance" /></a></td>
    <td><a href="http://bit.ly/12l8tfu" target="_blank"><img src="img/g+.png" width="39" height="39" alt="google+" /></a></td>
    </tr>
    <tr>
    <td colspan="6"> <div align="center">
    <p>Caitlin FitzGerald Designs<br />
    2013&copy; All rights reserved </p>
    </div></td>
    </tr>
    </table>
    <p><!-- end .footer --></p>
    </div>
    <!-- end .container --></div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    <!-- InstanceEnd --></html>
    The Contact Form:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/template.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Caitlin FitzGerald Designs - Contact Me</title>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationTextarea.css" rel="stylesheet" type="text/css" />
    <!-- InstanceEndEditable -->
    <link href="stylesheet.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <!-- InstanceBeginEditable name="head" -->
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationTextarea.js" type="text/javascript"></script>
    <!-- InstanceEndEditable -->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <!-- InstanceParam name="backgroundpage" type="boolean" value="true" -->
    </head>
    <body>
    <div class="container">
      <div class="header"><!-- end .header --><a href="index.htm"><img src="images/Caitlin-FitzGerald-Designs.png" width="508" height="298" class="imgcentered" /></a>
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="index.htm">Home</a>      </li>
          <li><a href="portfolio.htm">Portfolio</a></li>
          <li><a href="services.htm">Services</a>      </li>
          <li><a href="contact.htm">Contact</a></li>
          <p> </p>
        </ul>
      </div>
      <div class="content"><!-- InstanceBeginEditable name="edit body" -->
         <table border="0" cellspacing="5" cellpadding="0" width="100%">
          <tr>
            <td valign="top"><h1><strong>Contact</strong></h1></td>
          </tr>
          <tr>
            <td valign="top"><p>To contact me you can: call 805.291.1358 or <a href="mailto:caity&#64;caitydesignedthat.com" target="_blank">email me.</a> </p>
            <p>You can also fill out the form below and I will contact you.</td>
          </tr>
        </table>
          <form action="email_form.php" method="post" name="clientrequest" target="_blank" id="clientrequest">
          <p><span id="namefield">
            <label for="name">Name:</label>
            <input type="text" name="name" id="name" tabindex="1" />
          <span class="textfieldRequiredMsg">Please enter your name.</span></span><br /><span id="spryemail">
          <label for="email">Email:</label>
          <input type="text" name="email" id="email" tabindex="2" />
          <span class="textfieldRequiredMsg">An email address is required.</span><span class="textfieldInvalidFormatMsg">Please enter a valid email address.</span></span><br />
          <span id="sprytextfield7">
          <label for="phonenumber">Phone Number:</label>
          <input type="text" name="phonenumber" id="phonenumber" tabindex="3" />
    </span><br />
    Business Name<span id="biznamespry">
          <label for="bizname">:</label>
          <input type="text" name="bizname" id="bizname" tabindex="4" />
    </span>
    <br />
    <span id="sprytextfield5">
    <label for="referral">How did you hear about me?</label>
    <input type="text" name="referral" id="referral" tabindex="6" />
    </span><br />
    <span id="sprytextfield6">
    <label for="location">Where do you live?</label>
    <input type="text" name="location" id="location" tabindex="7" />
    <span class="textfieldRequiredMsg">Please tell us where you live.<br />
    <input type="text" name="textfield" id="textfield" />
    </span></span><br />
      <br />
      <span id="describespry">
      <label for="wantedservices">What services are you interested in?<br />
      </label>
      <textarea name="wantedservices" id="wantedservices" cols="45" rows="5" tabindex="7"></textarea>
      <span id="countdescribespry"> </span><span class="textareaRequiredMsg"><br />
        Please fill in a description.</span><span class="textareaMaxCharsMsg">Exceeded maximum number of characters.</span></span><br />
          </p>
          </fieldset>
          <input type="submit" name="Send" id="Send" value="Send" tabindex="9" />
          <input type="reset" name="clear" id="clear" value="Clear Form" tabindex="10" />
        </form>
      <p> </p>
        <p><a href="https://www.sitelock.com/verify.php?site=www.caitydesignedthat.com" onclick="window.open('https://www.sitelock.com/verify.php?site=www.caitydesignedthat.com','SiteLock','width=600, height=600,left=160,top=170');return false;" ><img alt="malware removal and website security" title="SiteLock"  src="http://shield.sitelock.com/sshield/www.caitydesignedthat.comhttp://shield.sitelock.com/sshield/www.caitydesignedthat.com"/></a><br />
    </p>
      <div id="sitelock_shield_logo" class="fixed_btm" style="bottom:0;position:fixed;_position:absolute;right:0;">
        <p> </p>
      <p> </p>
    </div>
        <script type="text/javascript">
    var sprytextfield1 = new Spry.Widget.ValidationTextField("spryemail", "email", {validateOn:["blur"]});
    var sprytextfield2 = new Spry.Widget.ValidationTextField("namefield", "none", {validateOn:["blur"]});
    var sprytextfield3 = new Spry.Widget.ValidationTextField("biznamespry", "none", {isRequired:false});
    var sprytextarea1 = new Spry.Widget.ValidationTextarea("describespry", {maxChars:1000, counterType:"chars_remaining", counterId:"countdescribespry", isRequired:false});
    var sprytextfield5 = new Spry.Widget.ValidationTextField("sprytextfield5", "none", {isRequired:false});
    var sprytextfield6 = new Spry.Widget.ValidationTextField("sprytextfield6", "none", {isRequired:false});
    var sprytextfield7 = new Spry.Widget.ValidationTextField("sprytextfield7", "none", {isRequired:false});
        </script>
      <!-- InstanceEndEditable -->
      <!-- end .content -->
      <div class="footer">
        <table width="26%" border="0" align="center" cellpadding="2" summary="Find us on these social networks and connect with us.">
          <tr>
            <td width="17%"><a href="https://www.facebook.com/CFitzDesigns" target="_blank"><img src="pics/facebook.png" width="42" height="42" alt="facebook" /></a></td>
            <td width="17%"><a href="http://www.linkedin.com/in/caityfitzgerald" target="_blank"><img src="pics/linkedin.png" width="42" height="42" alt="facebook" /></a></td>
            <td width="18%"><a href="https://twitter.com/FitzGeraldCaity" target="_blank"><img src="pics/twitterbird.png" width="43" height="42" alt="twitter" /></a></td>
            <td width="20%"><a href="http://pinterest.com/caitlindesigns/" target="_blank"><img src="pics/pinterest.png" width="44" height="44" alt="pinterest" /></a></td>
            <td width="20%"><a href="http://www.behance.net/Cfitz" target="_blank"><img src="pics/behance.jpg" width="44" height="43" alt="behance" /></a></td>
                  <td><a href="http://bit.ly/12l8tfu" target="_blank"><img src="img/g+.png" width="39" height="39" alt="google+" /></a></td>
          </tr>
          <tr>
            <td colspan="6"> <div align="center">
              <p>Caitlin FitzGerald Designs<br />
               2013&copy; All rights reserved </p>
            </div></td>
          </tr>
        </table>
        <p><!-- end .footer --></p>
      </div>
      <!-- end .container --></div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    <!-- InstanceEnd --></html>
    I used a self-made template for both pages (as you'll see in the comments... but I don't think that should affect it..) None of the other pages have been having issues.

    Where is the closing bracket????
    <?php
    if(isset($_POST['email'])) { //NO CLOSING BRACKET
    $email_to = "[email protected]";
    $email_subject = "Caity_FitzGerald_Designs_Contact_Form";
    $message=
    "Customer: ".$_POST['name'] . "\r\n" . "\r\n" .
    "\r\n" .
    "Email: ".$_POST['email'] . "\r\n" . "\r\n" .
    "Phonenumber: ".$_POST['phonenumber'] . "\r\n" .
    "BusinessName: ".$_POST['bizname'] . "\r\n" .
    "\r\n" .
    "Howtheyfound me: ".$_POST['referral'] . "\r\n" . "\r\n" .
    "Location: ".$_POST['location'] . "\r\n" . "\r\n" .
    "\r\n" .
    "Servicesinterested: ".$_POST['wantedservices'] . "\r\n" .
    $_POST['clientrequest']; $from=$_POST['email'];
    $headers="From:$from" . "\r\n";
    mail($to.$subject,$message,$headers);
    ?>

  • I want to transfer a movie I have downloaded from itunes to my new IPAD. I have been on the itunes help menu, it tells me to look under 'devices' tab for IPAD. BUT there is no 'devices' tab and it does not list my new IPAD. Help!

    I want to transfer a movie I have bought in itunes to my new IPAD. I have been trying to work how to do this for 3 days now. I have accessed all the itunes help and forums and wiki online. They all tell me to go to the DEVICES tab on itunes and select IPAD then sync. YUP seem simple, BUT there is not DEVICES tab listed on my itunes and it does not list IPAD. Years ago I set up my IPOD no problem and that is listed, but not the new IPAD. Can anyone help? I would love to be able to actually watch films on my IPAD!! thanks

    If you have iTunes 11 on your computer then you can enable the left-hand sidebar on it via option-command-S on a Mac, control-S on a PC - when connected (and if your computer's iTunes is up-to-date) your iPad should then appear on that sidebar under a 'Devices' heading :
    If you select the iPad on that sidebar you can then use the Movies tab on the right-hand side of the iTunes screen to select and sync that film to your iPad's Videos app.
    Has your iPad been synced to the computer before ? If not then you might find this page for syncing to a new computer useful : https://discussions.apple.com/docs/DOC-3141

  • My 16gb iPhone 4S keep tell me that my storage is almost full and I don't have enough space for any upgrades. I don't have any music or videos on my phone. I deleted all old emails, texts, contacts and apps but still nothing. When I check my settings, I n

    My 16gb iPhone 4S keep tell me that my storage is almost full and I don't have enough space for any upgrades. I don't have any music or videos on my phone. I deleted all old emails, texts, contacts and apps but still nothing. When I check my settings, I noticed that my Instagram is at 732mb and it keeps rising. Now it's at 814mb. Please help!!!!!

    What is the precise wording of the message that is occurring?
    Are  you attempting to update via iTunes on a computer or over the air on the device?
    How much free space is actually on the device?
    If updating via iTunes on the computer, how much free space on the computer?

  • I just got the new itunes and I can open itunes and see my music but whenI try and go to the itunes store it just loads to a white page. I try and refresh and go to the home page and nothing happens. I can sign into my account and the tabs for the itunes

    I just got the new itunes and I can open itunes and see my music but whenI try and go to the itunes store it just loads to a white page. I try and refresh and go to the home page and nothing happens. I can sign into my account and the tabs for the itunes store pop up like they normally would when browsing the itunes store but when I click on one of them, it is a blank page. Is there a setting I need to change? Does it just take an extremely long time to load? Please help!!

    Bucktr09:
    I'm having the exact same problem.  I upgraded to the newest version of iTunes on my iMac and ever since I did the store is a blank white screen.  I can get my library content but the store is a no go.  Is there any one out there with a solution?

  • I have Creative Suite 6 Production Premium and InDesign CS5.5 for Windows, but I need the Mac versions of these. Is it possible to swap or exchange these products?

    Does Adobe allow exchanging my Windows version of CS6 Production Premium and InDesign CS5.5 for the Mac version? (The CS5.5 box is unopened, and the CS6 is in mint condition.)

    You might be able to do something for the CS6 product, but as far as the CS5.5 application goes it will not qualify.  See the following:
    Order product | Platform, language swap

  • I bought CS5 Design Premium (Student and Teacher Edition) 3 years ago. Now I want to upgrade it but where can I find prices for Students and Teachers for upgrades?

    I bought CS5 Design Premium (Student and Teacher Edition) 3 years ago. Now I want to upgrade it but where can I find prices for Students and Teachers for upgrades?

    There are no upgrades for Student and Teacher Editions. You can continue to use the version you are using, or you can buy CS6 with no special upgrade price, or subscribe to Creative Cloud. However, I believe if you still qualify, you're offered a discount on Creative Cloud.
    Adobe Creative Cloud for students and teachers | Adobe

  • I followed the instructions for making an APP TAB and succeeded BUT everytime I close Firefox, the app tab disappears upon re-opening. Can someone help please? I held the control button plus I clicked and selected the "Pin..as app tab".

    As my question asks, I followed instructions for creating an APP TAB for my web mail account, and succeeded but each time I close and re-open Firefox, the app tab disappears. Can someone tell me what I am doing wrong please?

    For better or worse, I think it's part of the design for the app tabs to be window specific. I know my first reply didn't solve your problem, but that was one way that worked for me to get the app tabs back when I restarted Firefox. Also I noticed the tag for this post is Firefox 4. I've only tried it with Firefox 5.
    I agree with you that the way it's working isn't ideal. For the time being, I've stopped using the app tabs. Maybe they'll fix/improve it soon.

  • So I had photshop cs5 installed on my pc...i had to get my hard drive replaced! I have the serial number and everything, but I need to know how to download it. I really don't wanna have to pay for the program over again.

    So I had photshop cs5 installed on my pc...i had to get my hard drive replaced! I have the serial number and everything, but I need to know how to download it. I really don't wanna have to pay for the program over again.

    If you registered your product, you should be able to find the download and serial number from your Adobe account.
    https://www.adobe.com/account.html
    Otherwise:
    Download Adobe CS5.5 Trials: Direct Links (no Assistant or Manager) | ProDesignTools
    You might still have to contact Customer Support to reset your Activations, unless you managed to deactivate the original installation.

  • I hit some key or tab by accident and now my bookmarks are no longer in a list but viewable across a set of pages that I can scan left to right.  I would like to go back to the other display which is much easier for me.  Thanks for the help.

    I hit some key or tab by accident and now my bookmarks are no longer in a list but in a page format that can be scanned left to right.  I'd like to return to the listing format.  How do I do this?  Thanks!

    I'm having the same problem.  Did you find a solution?

  • HT4623 I lost my apps and iTunes after a restore, but it says there isn't enough space on the iPhone 4. How do I know how much space needs to be freed up? I keep deleting photos and videos, but I'm still getting the same message.

    I did an iphone 4 software update. It then asked me to do a "restore" in order for me to be able to use the latest iTunes. I did a "restore" to "factory settings" (this was the only option listed) thinking I'd be able to sync later and get everything back and ended up losing all my purchased apps and iTunes. When I open iTunes, "Welcome to your new iphone" and it says I can re-do the "restore" and choose my lastest update. I assume this will give me back my apps and iTunes. When i choose to do this, it says there isn't enough space on the iPhone. How do I know how much space needs to be freed up? I keep deleting photos and videos from the phone, but I'm still getting the same message every time I re-try. I don't want to delete everything, but I don't know what to do...? Thanks!

    Thanks but I think it has something to do with the 'restore'. in the newest iTunes 11, when I click on the tab "iphone", it redirects me to the "welcome to your new iphone" page and asks about doing a 'restore'. I already did a 'restore', but it went to the original factory settings and I want to 'restore' to my lastest back up as of April 12. When I choose that option, it says my iphone doesn't have enough space. I don't know how much I need to delete in order to make it work. I've deleted lots, but it only has 4.1 GB available. I'm not sure why this isn't enough to do a 'restore'. I don't want to delete all my photos and videos, but maybe I will have to?...7.7GB is used up for that. I can't sync or do ANYTHING...

  • Java Swing/AWT and FX is so old school! Give me HTML and CSS for GUI!

    Dear Java,
    I am a seasoned programmer and I feel it's time JAVA implements a GUI system where it uses HTML and CSS for the GUI. For the love of god just look at the interfaces you can make using HTML and CSS alone. I am a big fan of Java Swing and the recent GUI designer for FX is quite cool. But they are just not as simple as HTML and CSS. And JavaFX has some interesting requirements for the graphics.
    I know it is possible to use JavaFX and implement the WebView/WebDriver and make it load a HTML page, etc... but why go through all the trouble?
    Just imagine... if you make Java where it has powerful back-end to do what it does best and the HTML/CSS powered GUI on the front-end. It will make the lives of many developers much much easier.
    I am not sure whether a Swing designed GUI will be faster than a HTML designed GUI... but if you look at a traditional browser and how fast it renders HTML/CSS, I am sure if Java had a native Form where it uses HTML and CSS to render the GUI, Java will make the dreams of many programmers a reality.
    Make it happen!!!!

    Check this i solve problem just now using this
    https://wiki.archlinux.org/index.php/Ja … ow_Manager

Maybe you are looking for

  • UCCX 10.6.1 - Expired, Auto-generated Demo license crashing MCVD-LIB_LICENSE startup process?

    Anybody else experiencing this? I upgraded from version 9.0.x to 10.6.1 at the end of December.  It generated a Demo License (that wasn't needed) during the upgrade, which expired on Feb 27th. I restarted the engine on the HA node last night, and it

  • Update and download problem on ipod touch

    i need help my ipod will not download items or update items if i press update all this note will come uo and say unable to update or download at this time try again later and it does that all the time i try. i recently changed my router at my home an

  • After Effects crashes while rendering on MBP

    Equipment:  MBP with 8GB RAM and 3.06 MHz processor. Problem:  Won't allow me to render out a project above 1/2 resolution. No giant files or multi format craziness going on here. What specific AE settings do you recommend???? Thank you!

  • How to downgrade 10.7.4 to 10.7.3 ?

    Hello, how to downgrade 10.7.4 to 10.7.3 ? Wifi drops constantly after a wake up. Thanks, Daniël

  • Standard Domain Changes

    Hi Experts, I have developed check printing for client. I am getting ZNME1( Name of the Vendor ) field  from REGUH table . But ZNME1 field length is 35 characters. But my client wants field length is 60 characters.. i have taken access key from basis