Trying to learn Dreamweaver, weird icon order

Why are the icons in a different order from my mac to my pc if version and workspace are the same?

Mac OS sorts ALL files alphabetically (folders included) WIndows sorts by type and then alphabetically. Personally, I prefer the Windows sorting method, but... given all that my Mac does so much better than either of my PCs... I'll live with it.
Mac also uses a decimal system as opposed to binary for determining file size too, so a 5kb file on a Mac shows as a 4.6kb file on a PC.

Similar Messages

  • I'm trying to learn how to use Xcode. I've create a simple Hide App app from a youtube video tut, but I can't get it to export with the icon I've chosen. Any clues why?

    I'm trying to learn how to use Xcode. I've create a simple Hide App app from a youtube video tut, but I can't get it to export with the icon I've chosen. Any clues why?

    We didn't do that video. Why are you asking here?
    Those videos are usually outdated....
    Use the current tools etc., in the iOS Dev Center and iTunes/iTunes U ~ Stanford.

  • I have a new iPhone 5S.  While trying to learn about it, I accidentally recorded a voice memo with no content.  I cannot now figure out how to get rid of it.  There is a banner across the top of my phone with this memo which I don't want.  Help!

    I have a new iPhone 5S.  While trying to learn about it, I accidentally recorded a voice memo with no content.  I cannot now figure out how to get rid of it.  There is a banner across the top of my phone with this memo which I don't want.  I have deleted it from iTunes but cannot get it off the phone.  Help!

    The banner usually indicates that the memo is "Paused." If you go back into voice memos, touch the word "Done" beside the big red pause button, give it a name, then it will show in a list. Touch the memo in the list then touch the trash can icon that should appear.

  • Trying to learn about threads

    Hi guys,
    I'm trying to learn more about threads......i've written a small program for a better understand, but i don't understand the order of the output i'm getting:
    public class testme {
    public static void main(String[] args) {
    Theshape mover = new Theshape("go");
         mover.start();
    System.out.println ("checkpoint 1");
    System.out.println ("checkpoint 2");
         }//main
    }//class testme
    class Theshape extends Thread {
    public int count;
    public String thego;
    Theshape (String gg){
         thego= gg;
    count=0;
    }//constructor
    public void run(){
    try {
    do{
    System.out.println (thego);
    sleep(1000);
    System.out.println ("johnny");
    count=count+1;
    }while(count<8);
    } catch (InterruptedException e) {}
    }//run          
    }//class theshape
    ........the output i get is:
    checkpoint 1
    checkpoint 2
    go
    johnny
    go
    johnny
    go
    johnny
    go
    johnny
    go
    johnny
    go
    johnny
    go
    johnny
    go
    johnny
    I would like to know why "checkpoint 1" and "checkpoint 2" is printed first, even though the call to the run method is made before the two statements. i would have thought that the two checkpoint statements would be printed last.
    Can anyone help?
    Thanks,
    Zaf

    After you've issued the 'mover.start()' call, a new thread pops into existence. The first thread (your main thread) continues to run while the second thread prepares itself to start up. On your machine, this startup takes a (little) while, so your main thread is able to print those two line just before the other thread is able to print something. That's all there is to it. If you put a 'Thread.sleep(1234)' between those two println statements in your main thread, the output would probably be a bit different. Give it a try.
    kind regards,
    Jos

  • Trying to learn to code div tag so that i can make 3 columns

    Hello,
    I am trying to learn how to work with the code for div's in Dreamweaver.
    I have a id for the main container named wrapper that is 900px wide and I have 3 div's inside of it that are just long blocks of type . Each div (#history, #attitudes, #per) is 300px wide with the height falling to accommodate the type. I want then next to each other, and right now they are just one long column with the 3 sections..each have a different background color. Here is the code so far...I am trying to play with the float and positioning but nothing I do works.  In the End, it should just be 3 columns of type next to each other. Each column has one header tag for the topic name and the rest is just using the p body tag. can someone help me get the columns next to one another using the code?
    thanks!
    babs
    #wrapper{
    width:900;
              background-color:#CCCC66;
    #history{
              width:300px;
              height:80px;
              background-color:#FF9999;
    #attitudes{
              width:300px;
              height:80px;
              background-color:#ccFF99;
    #per {
              background-color:#FFFF99;
              width:300px;
              height:80px;
    Here is an image to see them on top of one another....I jusyt want them side by side.....

    Copy & paste this code into a new, blank document in code view.  Save and preview in browsers.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 document</title>
    <style>
    body {
        margin:0;
        padding:0;
        font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
        font-size:16px;
    #wrapper {
    width: 900px;
    margin: 0 auto;
    background-color: #CCCC66;
    overflow: hidden;  /**float containment**/
    /**three columns**/
    #history, #attitudes, #per {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    float: left;
    width: 33.33%;
    min-height: 80px;
    padding:12px;
    #history { background-color: #FF9999; }
    #attitudes { background-color: #CCFF99; }
    #per { background-color: #FFFF99; }
    </style>
    </head>
    <body>
    <div id="wrapper">
    <div id="history">
    <h3>History</h3>
    <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae libero lacus, vel hendrerit nisi!
    Maecenas quis velit nisl, volutpat viverra felis.
    Vestibulum luctus mauris sed sem dapibus luctus.
    Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus. Aenean tristique enim ut ante dignissim. </p>
    </div>
    <div id="attitudes">
    <h3>Attitudes</h3>
    <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae libero lacus, vel hendrerit nisi!
    Maecenas quis velit nisl, volutpat viverra felis.
    Vestibulum luctus mauris sed sem dapibus luctus.
    Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus. Aenean tristique enim ut ante dignissim. </p>
    </div>
    <div id="per">
    <h3>Per</h3>
    <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae libero lacus, vel hendrerit nisi!
    Maecenas quis velit nisl, volutpat viverra felis.
    Vestibulum luctus mauris sed sem dapibus luctus.
    Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus. Aenean tristique enim ut ante dignissim. </p>
    </div>
    <!--end wrapper--></div>
    </body>
    </html>
    Nancy O.

  • Trying to learn Spry Framework Ajax

    So I am trying to learn how to use Spry Framwork for Ajax;
    which I downloaded from
    http://labs.adobe.com/technologies/spry/
    Does anyone know if this some how plugs into Dreamweaver 8 or
    if I wish to use it, "the Photo Gallery to be specific", that I
    have to manually manipulate the code to use my photos and then
    implement their html into my template?

    With DW8, you will have to use the Spry Framework manually.
    It's built into
    the new Dreamweaver CS3.
    Nancy Gill
    Adobe Community Expert
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner''s
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development

  • Using PHP code hinting in Dreamweaver CS5 | Learn Dreamweaver CS5 & CS5.5 | Adobe TV

    Learn how easy it is to create PHP code by using some of the new code-hinting features in Dreamweaver CS5
    http://adobe.ly/wjmnc1

    I've been using Dreamweaver to create php based websites with the popular Zend Framework 1.  I'm now trying to integrate Dreamweaver with ZF2 and the Dreamweaver is giving me errors for lies such as:
    $loader = new Zend\Loader\StandardAutoloader(array('autoregister_zf' => true));
    and
    use Zend\Session\Container;
    even though the lines are correct.  Do I have to do anything special in Dreamweaver so that it recognizes these statements as not being errors?

  • Error occurs when trying to purchase Dreamweaver subscription - Time out error

    Hi there
    I am trying to purchase Dreamweaver subscription with my Master Card and when I accept terms and proceed to pay a message box pops up, see screen capture below:
    Could this be my Master Card or is there something else perhaps on Adobe's side that causes this error.

    Hi
    There are a number of possibilities, (not including an Adobe server problem).
    You have taken too long between entering your details and entering your card details.
    You used the browsers 'back' button for some reason.
    You have cookies turned off.
    For the first item - The application times out when a user takes more time that set between completing the form and entering their card details. This is done as a security measure.
    The second item - The use of the back button causes problems as the data sent to the server is duplicated, (often the use of the back button invalidates a purchase process).
    The third item - Cookies are required in order for the purchase process to take place.
    PZ

  • HT4783 I'm trying to learn how to use Airdrop between my wife's Mac and mine. We both have it, but this article did not help us learn HOW to share files.  Yippeee that we can...but HOW?

    My wife and I are trying to learn how to use Air Drop.  The "tutorial" showed us where it is.  It came up.  I saw hers (Mac).  She saw mine (Mac). But where to go after that is, apparently, in the cloud somewhere.  The description says we can share files...which is nice...but nothing tells us HOW to share those files. 
    Thanks for your help out there...
    Dennis

    1. Open a new Finder window or use one that's already open
    2. Click on Airdrop, press Shift+Command+R, or find "Airdrop" in the "Go" menu
    3. Drag your file to the icon of the person you want to send the file to (if you have mountain lion, you can use the share button).
    4. The other person has to click "save"
    5. The file will send and appear in the receiver's downloads folder
    In Mountain Lion, a new feature was added: the share button. It's a button with a picture of a box and an arrow jumping out of it. Click on it and the third (and last) option is "Airdrop" and clicking on it will allow you to send files over Airdrop without opening it in Finder.

  • Weird Icon on my mabook Pro, Doesn't go away

    Hi Everyone,
    I've had this weird Icon on my toolbar (right next to the Airport, bluetooth, Clock, Battery etc), it is a gray circle with 3 other circles inside it , im talking about the second icon from left in the picture below:
    whenever I move my cursor on it the colorful loading wheel starts apearing and I cant do anything unless I move the cursor away from the Icon, I cannot click on it I cannot do anything with it, and as soon as I move my cursor away from it the loading wheel changes back to normal cursor!!!!
    Does anyone know how can I get rid of this thing? I dont even know where it came from
    Many Thanks in advance

    hey man thanks for the reply,
    I think I tried to install it around 2 years ago Im not sure why I gave up, is it because of that? I can't find anything about Logmein in my application folder or by searching in finder

  • I am trying to install Dreamweaver CS3 on Windows 8 it says "The Installer Database is corrupt"

    I am trying to install Dreamweaver CS3 on my new Windows 8 PC and when I run SETUP.EXE it says "The Installer Database is corrupt" on both my original CD and backup I made.

    The error is here:
    Dreamweaver CS3 on my new Windows 8 PC
    This will most likely never work. CS3 wasn't even fit for Win 7. Delete the caps.db in the respective caps folder (info here) and then take the usual steps of running as admin, turning off UAC and security tools and possibly using compatibility modes, but as I said, be prepared that this may be futile and you spend a Sunday afternoon without achieving anything...
    Mylenium

  • I am trying to reinstall Dreamweaver CS3 from the CD after having computer issues.  Now getting error "You can only install one Adobe product at a time.  Please complete the other installation before attempting to install ......."  There is no other Adobe

    I am trying to reinstall Dreamweaver CS3 from the CD after having computer issues.  Now getting error "You can only install one Adobe product at a time.  Please complete the other installation before attempting to install ......."  There is no other Adobe product installing.  I have used the Adobe Cleaner Tool many times and uninstalled other Adobe Products but neither has worked.  I have uninstalled/reinstalled this CD version of Dreamweaver several times when changing computers and after having computer issues. A google search of the problem suggested it may be an error related to the number of times I can reinstall this product due to licensing issues.  Please help.

    A google search of the problem suggested it may be an error related to the number of times I can reinstall this product due to licensing issues.
    Absolutely not. You are misinterpreting things. The activation check never happens when just running the installer, only much later. It means what it says - there is another "install" pending/ active on your system, meaning somewhere there is an (invisible) process still blocking things. Either way, since you haven't provided any real technical info, we can't advise specifically. if you are on Windows, you may want to check your task manager and terminate any setup.exe and msiexec.exe processes plus potentially may need to manually fix/ delete some registry keys. For anything beyond that you will have to be much more specific.
    Mylenium

  • When trying to creat a desktop icon, it does not go to the URL.....instead I get 'script' and not a website......the script has http//etc but I am not directed to the website......I previously had IE 8 (on Vista).....is that the problem...

    Question
    When trying to create a desktop icon, it does not go to the URL.....instead I get 'script' and not a website......the script has http//etc but I am not directed to the website......I previously had IE 8 (on Vista).....is that the problem?I do not have any installed plugins....at least none that I know of.....remember I am a new user......Basically, the desktop icon is not going directly to the Mozilla FF to get me to the web site I need to go to.....FF works when I use the Mozilla FF icon.....just not the icons I create.....THANKS!!! I have also tried reinstalling FF and get the same results.....HELP!!!

    The address beginning with file:/// denotes a saved file (local file). The file may not be present. You can try dragging the site icon of this page on the left edge of the location (Address) bar and release it on the desktop. Please try opening it. If it still shows an error it could be a problem with the system's zone permissions. You can try setting each zone in the Windows Control Panel or IE > '''Internet Options''' > '''Security''' tab to '''Default Level'''.

  • Error message for Adobe AIR 2.0.3 while trying to run Dreamweaver CS5

    imac 2.66 Ghz, Intel Core i5, OS 10.6.4.
    Error message for Adobe AIR 2.0.3 while trying to run Dreamweaver CS5:
    Adobe Air
    the installation of this app is damaged. Try re-installing or contacting the publisher for assistance.
    Tried several times to uninstall and reinstall from fresh download to no avail.
    I'm finding the instructions in the trouble shooting area a tad esoteric.
    Will there be an update to the installer released soon?

    Hi,
    I'm assuming your having troubles installing the 2.0.3 runtime?  If so, can you please try the instructions in this post?
    Thanks,
    Chris

  • I'm trying to learn and I think the knowledge is here!

    Hi! i'm always trying to learn and pass forward.  I'm not here to cause trouble. I have some things that I would like to have confirmed or denied. I do not own a HP computer at this time, but several of the residents in my village do. I have observed some great advice to community members from some smart people here on the forum. I have some things that I have learned from other forums and I want to share them. I would like to have comments from all the smart members here on the community forum. OK here we go!!
    Let's say we have a PC that won't boot into windows for some reason. Now IMHO, we have software or hardware problems.
    This is what I do. I down load a linux program. It's called Pupply Love.http://puppylinux.org/main/Overview%20and%20Getting%20Started.htm
    This is a ISO file that you burn to a CD. It is a live CD and you can boot with it. You do not need a HD.
    Even if your PC has no hard disk (ex, broken hard disk), you can still boot Puppy via CD or USB and continue working. Old PCs that no longer work with new systems will still work good-as-new with Puppy.
    Now IMHO, you have proved that your monitor,power supply, and CPU are working. So now the HD is left. There are many ways to test your HD. One that comes to my mind is seatools dos.http://www.seagate.com/support/downloads/item/seatools-dos-master/
    One way to test your memory is memtest86.http://www.memtest86.com/download.htm
    memtest and seatools dos are both live CD's and should boot even if you don't have a working OS.
    Another live CD is the system repair CD  and the system recovery discs that you should have created on day one.
    I realize that HP has some great tools and I'm hoping that a guru will reply to this thread and add their comments. This is the way I learn. Computers can be a pain in the neck, but us humans can hold our own if we are willing to learn and pass forward to others.
    Dokie!!
    PS I take criticisms pretty well! This thread can be deleted if it is out of line or does not meet the standards of the forum. Some times I get a little windy and carried away.

    Hi Leo! If you can stop these down load managers, you will be my hero.
    Dokie!!
    PS I have tried my best to warn members here on the forum, but I haven't got a lot of support so far.
    I have my figers crossed that the new team will get-er-done

Maybe you are looking for

  • Brazil Notafiscal error at Display Invoice MIR6

    Hi Guys We have one problem with Brazil invoice MIRA  we are saving invoice ( We are entering NF type E1 in details tab) Later on MIR6 post the invoice documnet Once MIR4 dispaly invoice if you click notafiscal button Error saying that notafiscal doc

  • Hyper-V Failover Cluster - Inconsistent Network Availability

    We've got a Small cluster with, 7 hosts and a dozen or two VM's.  For some reason i'm getting inconsistent availability with the Cluster networks.  The host seem to function fine on there own but theres all types of issues using Migration which i'm a

  • Why can't i open my photoshop cs6?

    same as title. there is a error code:16.

  • Custom window

    I have a movieclip located on my root's timeline named conInfo and that's it's instance name also. Inside conInfo is another movieclip called moveWindow with an instance name of moveWindowMC. When I converted this movieclip I exported for AS3 and it

  • New 30gb, the backlight is always on when plugged in to the computer

    is this normal? i keep it plugged in to the computer all night long and the backlight stays on the whole time. is this going to wear the light down?