Some very, VERY basic questions from a newbie.

Hi all.
After an intense week of trial and error I'd came to the
point where to create and apply a template to my project. Only to
see that everything screwed up big time. So, I now belive I better
start over and get it right from the beginning. Therefore I need to
know;
(I am using ISS 5 as webserver on my local machine.)
1.
Where to put up my site "mysite.com". Like this,
"inetpub\wwwroot\mysite\index.html" or just like
"inetpub\wwwroot\index.html"?
2.
Can I use a index.php insead of index.html as the default
page when uploading all to the real internet? See, when I type
http://localhost/index.php in
Firefox and IE it tries to download the file but When using Opera
it shows properly.
3.
When creating a site I shall use links that are relative to
siteroot yes? What exactly is my siteroot(depending on the answers
in Q. 1?)(Better safe than sorry this time :) ).
4.
Depending on Q. 1 again. What will my links look like? I
will use "graphics" as my picture folder containing several
subfolders. Will it be like
"../graphics/subfolder_name/picture_name.gif",
"/graphics/subfold..." or simply just
"graphics/sub...". or should it be something else?
This problem I have is why I decided to start over. For
example, in one file I have that is based on my template I have
them here pictures;
graphics/sitegraphics/logo_<?php echo
$row_recordset_site['site_name']; ?>.jpeg
graphics/sharkr/btnread0.gif
graphics/shark_small.gif
The first one shows up nicely both in DW and in browser.
The second one shows up only in DW.
The third one doesnt show up at all.
They are all located in the same(and only) editfield
5.
When creating a new page based on the template, should I
create it directly from the template rather than applying the
template to the page when its done. I have only done the later, and
that showed to be rather unsuccessful :(
Thats all for now. I now this dynamic templateusing
websitebuilding is way over y head, but what the heck :)
I thank you in advance
/konfjuusd

You're still very confused.
The root of your site is the first folder that contains all
of the files in
your site, but NO files for another site.
> Ok, Then if I use the C:\Inetpub\wwwroot\mysite\ layout
and chose wwwroot
> as
> my root folder
You wouldn't. You'd choose 'layout' as the root (assuming
that this is the
folder that contains all of your site files).
Look - my sites are like this -
C:/Documents and Settings/..../MyCompanyName/Client1/site
C:/Documents and Settings/..../MyCompanyName/Client2/site
C:/Documents and Settings/..../MyCompanyName/Client3/site
C:/Documents and Settings/..../MyCompanyName/Client4/site
C:/Documents and Settings/..../MyCompanyName/Client5/site
In each case, the root folder of the site is "site" and it's
the one under
the respective client name.
> And this would work both from the templatefile and the
html-files, so that
> they will NOT look any different from templates and
files?
Any link in a template file MUST work from that template
file. If that's
the case, then they are sure to work in your child pages. in
other words,
ALL links in a template file MUST look like this -
<img src="../whatever... (because you have to go UP one
level from the
template file to reach the root of the site, which contains
all of your
site's files/folders), or like this -
<img src="/whatever... (because the ROOT of the site is
always the root of
the site).
A document relative path is like what would happen when you
get a call from
a friend coming to your house looking for directions - you
start by saying
"where are you"? They tell you, and you say "OK - go 3
traffic lights, turn
right, and I'm 4th on the right". Your directions are
dependent on where
they are at the time you state them.
A root relative path is like when you say to that friend -
"OK - wherever
you are, get to the town square, and with the clock on your
right do the
following....". Your directions are dependent on some fixed
location, and
will work no matter where your friend is when he/she calls.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"konfjuusd" <[email protected]> wrote in
message
news:[email protected]...
>>
2.
> > Can I use a index.php insead of index.html as the
default page when
> > uploading
> > all to the real internet? See, when I type
http://localhost/index.php in
> > Firefox and IE it tries to download the file but
When using Opera it
> > shows
> > properly.
>
> Are you building PHP pages? Why do you want to use
'index.php'? If you
> are
> building PHP pages, then you would need a webserver (for
local testing)
> that
> knows PHP - like Apache.
>
> Yes, I am building PHP pages. Why use index.php? Because
my index page
> would
> consist of PHP code. When renaming the extension .php to
.html neither DW
> or
> the browser treat them as files containing PHP. I am
using the built in
> version
> of ISS version 5 as my webserver.
>
>
>
> ____________
>
> >
3.
> > When creating a site I shall use links that are
relative to siteroot
> > yes?
>
> Depends on how you are creating your pages. In general,
either will work.
>
> > What exactly is my siteroot(depending on the
answers in Q. 1?)(Better
> > safe
> > than
> > sorry this time :) ).
>
> It's the 'top-level' of your site, i.e., its the place
where all files
> that
> contribute to your site can be found either at that
level or below that
> level. In other words, it's the root of the tree that
represents the
> folder
> hierarchy of your site. You will find the path to the
root folder of your
> site in your 'Local root folder" field of your site's
definition.
>
> I've put it up like this;
> C:\Inetpub\wwwroot\mysite\
>
> So if I understand you right both the wwwroot and the
mysite folders can
> be
> root folders?
>
>
>
> _____________
>
> >
4.
> > Depending on Q. 1 again. What will my links look
like? I will use
> > "graphics"
> > as my picture folder containing several subfolders.
Will it be like
> > "../graphics/subfolder_name/picture_name.gif",
> > "/graphics/subfold..." or simply just
> > "graphics/sub...". or should it be something else?
>
> Assuming 'graphics' is the name of a folder at the root
level of your
> site,
> a page that is also at the root level of the site could
link into it like
> this -
>
> <img src="graphics/whatever/whatever.gif" (that's a
document relative link
> since it starts the path at the current file's location
and therefore it
> depends on the location of the file CONTAINING the link)
>
> or this -
>
> <img src="/graphics/whatever/whatever.gif" (that's a
root relative link
> since it starts the path at the root "/" and will work
no matter where the
> location of the file containing the link would be in
your site)
>
> Ok, Then if I use the C:\Inetpub\wwwroot\mysite\ layout
and chose wwwroot
> as
> my root folder and uses siteroot relative links the
links will start with
> the
> "slash"-sign followed by mysite like this right?
> /mysite/filename (or path to filename).
> And this would work both from the templatefile and the
html-files, so that
> they will NOT look any different from templates and
files?
>
> I'm sorry for going on like a senile, but its the
linkissues that is
> causing
> me problems all the time. Just want to be 100% sure so
the whole thing
> doesnt
> fall to peices again in another week.
>
> Thanks once again Murray, you're doing a great job
>

Similar Messages

  • HT201272 I have recently picked up an Apple TV. When I go to the movies tab, there are less movies available there than there are in my i-Tunes account. I've done some looking around at questions from others, but haven't found an answer that works for me.

    I have recently picked up an Apple TV. When I go to the movies tab, there less movies available there than what is available in my i-Tunes library. I have 38 movies showing in my library but only 23 are showing in the Movies tab on the Apple TV. After researching this a little, there are only 23 movies showing under Purchased in the Quicklinks of my i-Tunes account. The majority of my collection are digital copy downloads that came from DVD purchases. Some of the missing movies were added in the past couple of months, the rest are a year-or-so old. I have done some looking around at questions from others, but I have not found an answer that will fix my situation. How do I update my library to get ALL of my movies to reflect that they were "Purchased"(as it says they were in their Properties)?

    Biggles Lamb wrote:
    Chill out guys, getting personal will never ever change another persons view, right or wrong, they are entitled to them .
    The pros and cons of to CC or not to CC have been done to death
    Its a fact the CC model will work for some, especially newbies and small businesses.
    The risks associated with the CC model have been well documented.
    For long term users of CS perpetuals its generally a large hike up in cost compared to the upgrade system.
    Then there are the....... Adobe can rot it hell...... group who will never subscribe
    To each their own, you do the math to suit your cashflow whatever that is and then make an informed decision
    To those on the CC model, I'd like to offer some practical advice.........do not allow automatic updates.........make regular backups............develop an exit strategy of alternatives for when you can no longer afford the subscription costs............never ever assume that the Adobe update is bug free
    Enjoy your cloud
    Col
    Thank you for that post, and the advice. I just happen to be one of those who it does work for. I've been around long enough to know that CC isn't going to work for everyone(the large publishing/radio/web company I work for isn't upgrading to CC because of the costs involved). But it does for me as I potentially venture out into the full-time freelancing world and away from the more structured big office environment. I can't make decisions based on what is best for anyone else, or what will hurt or help Adobe. Just what affects me, and that's all.
    Brent

  • Basic questions from a new mozaic owner

    I have some very basic questions about how to use the new mozaic 2G mp3 player. I bought the Mozaic because it has a speaker and sleep timer, but I'm finding it to be much harder to use than other mp3 players that I have had (Ipod shuffle, clix etc). This may reflect my failure to look in the right place but I have to say the "help" section isn't much help.
    Here goes:
    . I download podcasts to listen to during my morning run. WMP provides an easy to find place in its program, "recently added," which allows the user to just work with those files. As near as I can tell, Creative makes you wade through all of your tracks. Is there some way to create a file to which "recently added" tracks, or specific tracks, can be dumped? How about automatic tagging of these added files?
    2. I have several thousand pictures on this hard dri've. Apparently, the Mozaic Centrale
    Is going to copy all of them, which strikes me as a waste of space. Is there a way to shut this function off? I couldn't care less if a single photo was added to the centrale program (or whatever it's called). Is it really going to duplicate all of the jpg files?
    3. I have the Zen Stone plus speaker which has served me very well. I had similar problems working with whatever Zen was calling its media player and wound up using WMP instead. I"d like to take a run at using the dedicated Zen media player....
    I apologize for the basic nature of these questions, but the answers weren't obvious to me from the materials I was able to locate.
    gba

    sineadholly wrote:
    Problem with speaker. I read you need to do a firmware update to get the speaker option on your product's menu so i've completely updated it, but still no option to switch speaker on, and won't just come on when i unplug the headphones, any ideas?
    what exactly is the model of your Mozaic? Is it EZ 00, EZ 300 or plane ZEN Mozaic?

  • Basic questions from techie thicko with 'new' G4

    I've looked but can't find the answers to these basic questions.
    My new (reconditioned) computer as below came with just the operating systems and something called 'Cloner' plus some Utilities.
    A) What is the best way to switch between OSX and Classic?
    (It defaults to X on start-up and I can get to X from Classic by re-starting pressing 'x'. If that's the right way to do it, what is the approved way of getting into Classic?)
    B) I'm not sure (after reading about it!) what I can do with Cloner and how.
    C) I have AppleWorks on OS9. Can I update this for OSX? Failing this, is there a Software Download that will give me a basic DTP facility until I can afford to buy an advanced programme? I also have Pagemaker 7 in Classic.
    D) I have been transferring stuff to Classic from my iMac DV 9.2.2 with my card reader and this seems to work well. Anything to watch out for?
    There's more but I can't impose on members' kindness too much!
    For future reference, is it possible to post pictures on these boards and if so how please? I have Photoshop and hosting sites.
    Sorry to be a pain but I really am an idiot about techie stuff.
    Thanks for any help.

    I'm not sure what Cloner does. It sounds as if it may clone the hard drive, a bit like Carbon Copy Cloner:
    http://www.bombich.com/software/ccc.html
    I'm wondering whether it was just used to put the operating systems and utilites onto the drive in the first place when they reconditioned the computer. Perhaps they use a 'master' drive and just clone it to the drives in the computers they're reconditioning, rather than installing everything separately and repeatedly.
    I think version 6 of AppleWorks runs under both OS 9 and OS X natively. If you have an earlier version, I'm not sure whether it's a free downloadable upgrade or whether you have to pay for it.
    I'm sure the card reader works fine, although you could network the two computers together with an ethernet cable and create a small network. With two computers you just need a crossover cable to create a crossover network:
    http://docs.info.apple.com/article.html?artnum=106658
    If you're thinking of keeping your iMac, that may be a better long term solution. You could then use the iMac as your OS 9 machine and the PowerMac as your OS X machine if you wanted to.

  • Basic Questions from Prospective Lion Server Switcher

    I have five servers I am running right now using Windows 2003 Server and various 3rd party packages.     Several years ago I became a Mac fan, moved all of my client based stuff to Mac, and now want to start moving my server based equipment to the OSX platform.
    I stopped by my local Apple Store, and they had a version of OSX Lion Server running on a MacMini, but couldn't seem to answer the most basic of questions because as their business people stated "We are not Server Certified" ... they recommended I talk to an outside consultant to get these basic questions answered which seems a little extreme.
    So I'm hoping the group can help.
    (1) I read through most of the Lion Server Advanced Administrative manual.    Lion server appears from the manual to do most of what I need.   However, when I tried doing some of the functions in the manual on the demo Lion Server at the Apple Store, many of the functions I wanted to do did not seemed to either be installed, or their were buttons missing in the Server App.     I do not know if this was a permission level problem, because the account I setup for myself had administrative rights.
    (2) In the mail app, it only appeared you could setup one mail domain.    It appeared you could setup virtual domains and users through the user app, but not through the mail domain itself?
    (3) I could not find any where to enable DNS services.    The manual seems pretty straight forward in turning on DNS, but the Lion Server I saw had no DNS services running, or any way to enable them?
    (4) Same for mailman listserv type function ... manual seems to be straight forward on enabling under the mail server, but again, no signs of the settings or enabling under the mail service.
    (5) Under the mail app, didn't find any way to setup alternative SMTP ports  ( I allow now Port 26 besides the standard Port 25 and SSL ports for my users.) ... I find port 26 gets past most firewalls at hotels etc.      Didn't see any way to control SMTP authentification too.
    (6) Under the Lion Server tech description, it talk about a built in web editor, saw nothing of the kind.
    So did the apple store have a limited install or am I missing something that the lion server manual does not match the capabilities of lion server.
    Love to get a straight answer before purchasing hardware to replace 5 present machines.
    Thank you.
    David

    Thanks for quick response.   Indeed, in hindsight, it appears that they had only installed the Server App, but not the Server Admin tools.
    Unfortunately, I am not a system admin, but I played one on TV <grin>
    All kidding aside ... I'm willing to learn, but would need most of the basics controlled through the GUI ... and then feel comfortable reading up and editting configuration files and running commands from the Terminal.
    On this line, is there good documentation of this, or is this something that you know because you are familiar with Unix?    ie something like the alternate port issue ... is this something in the GUI, or something I would have to edit via Terminal?
    Just trying to make an informed decision before jumping platforms.
    Thanks
    David

  • Miscellaneous - Questions from a Newbie

    I just got my iPhone this week and some questions popped up. I know that some of them might fit better in other categories than "basics"...
    1. Sync with Outlook - I was under the impression that the iPhone syncs up with Outlook but:
    a) How can you mark an Outlook Appointment as "privat" so not everyone in your company who has access to you calender can read it?
    b) Why are no documents synced, which are in a Calender Appointment save in Notes? (The Text in Notes will sync, but no PDFs for example...)
    c) When I reply to an E-Mail, the info that an when I replyed is not saved in Outlook
    d) in Outlook I can mark e-mails with priorities... this is not shown on the iPhone
    e) can the Auto-reply or Out-of-the-Office message set or changed from the iPhone?
    2. Mail
    a) I have differnt E-Mail accounts and would like to use different signitures for each account... the is an App, but thats too complicated. Is there a way to have an automated signature for each acount (this should be a basic feature!!!)
    b) Can I save e-mail attachments in specific folders? (eg a word doc)
    3. Media
    a) How can i created different Folders in the photoalbum, so I can sort them and don't have to scroll for ages...
    b) Can I get access to the Folders on the iPhone, so I can copy (for example Music) for differnt sources to the iPhone?
    c) Is there another Sync programm than iTunes?
    d) Can I delete Apps which I don't use (eg. Weather, Stockmarket...), but which are allready installed when i bought it
    4. Sounds and Alerts
    a) Can i create my own ringtones (eg an mp3)?
    b) Can I add other alert sounds (for E-mails for example)
    c) How can I change sounds for different Events (New Mail, Alert...)?
    5. Connectivity
    a) Can I sync the iPhone over bluetooth?
    b) Can I use the iPhone as a modem for my laptop? how?
    c) If stolen, can I remotely delete it or search it via GPS?
    6. Battery
    a) is it normal that when you use push mail and make a couple of calls a day the battery only last for max. 20 hours?
    Thats the first lot of question from week one... Thanks in advance for replys and the awaiting answers
    Axl

    I can answer some of them:
    Is there a way to have an automated signature for each acount (this should be a basic feature!!!)
    No
    b) Can I save e-mail attachments in specific folders? (eg a word doc)
    No. You can't save attachments - just view them
    b) Can I get access to the Folders on the iPhone, so I can copy (for example Music) for differnt sources to the iPhone?
    No. The iPhone cannot be directly accessed like a hard disk. There are third-party apps that allow this to a certain degree, but you can't add Media to the iPhone via this method.
    c) Is there another Sync programm than iTunes?
    Not really. There's some that may do some features, but not a complete replacement for it. What's wrong with iTunes?
    d) Can I delete Apps which I don't use (eg. Weather, Stockmarket...),
    No. But you can move them to a different Home screen.
    a) How can i created different Folders in the photoalbum, so I can sort them and don't have to scroll for ages...
    http://www.question-defense.com/2009/08/15/how-to-create-photo-albums-on-your-ip hone-on-a-windows-xp-computer/
    a) Can i create my own ringtones (eg an mp3)?
    Yes. Google "create iPhone ringtone" for a variety of options
    a) Can I sync the iPhone over bluetooth?
    No.
    b) Can I use the iPhone as a modem for my laptop? how?
    Yes, although it depends where you are. See:
    http://support.apple.com/kb/HT3574
    http://support.apple.com/kb/TS2756
    c) If stolen, can I remotely delete it or search it via GPS?
    Yes. See MobileMe's "Find My iPhone" feature:
    http://www.apple.com/mobileme/features/iphone.html
    a) is it normal that when you use push mail and make a couple of calls a day the battery only last for max. 20 hours?
    Quite possibly. Battery life seems to be reduced in the latest firmware and lots of people are awaiting a fix from Apple.

  • Two really embarrassing questions from iPod newbie!

    Although I've been using Macs since the steam-powered Mac SE, I've never actually owned an iPod (until now), because I never listen to music 'on the go'.
    However, I've just ordered an 80Gb Classic from the Apple Store, principally as a handy way to have all the songs I've written or played on in one handy, small location.
    However, because I've never owned one before, I have a couple of questions that probably seem +really stoopid+ (red face)...
    1. I guess I will copy all the songs from CD to iTunes on my iMac and then upload them to the iPod. But will I have to keep all those songs in iTunes? If I subseqiently delete them from iTunes, will they be automatically deleted on the iPod the next time I try and copy any songs from iTunes to it?
    2. When I copy the music files to iTunefrom CD, can I copy the music files to an external Firewire HD, not my main hard drive? There are a lot of songs to copy and I don't want to fill a significant chunk of my main hard drive if I don't have to. Would iTunes 'see' them on an external HD? Or can I copy them straight from the CDs to the iPod via iTunes, without physically copying them to an HD at all?
    Sorry for the basic questions, I hope someone can help.

    Robin,
    You might want to consider a few things before you wipe your iTunes library clean (assuming you have already trasnfered them onto your iPod).
    If, for some reason, you need to restore your iPod and put music back on, iTunes will have to transfer that music back to your iPod. If you have wiped your iTunes library clean that could mean spending a lot of time REformatting your music collection to put back on your iPod.
    Also, I have had a few instances where, although I have iTunes set to 'manually' manage my transfers, iTunes has deleted all of my music. Thank God I had my library on my hard drive as it only meant a 20 minute sync to transfer 6,000 songs back on.
    If hard drive space on your desktop or laptop is limited, iTunes offers a way to 'backup' the library on DVD+R or similar media. So, for about $10 in blank DVD costs, you can just make a portable backup to put in a drawer.
    Just PLEASE think about these issues before you put music on your iPod and delete it from your hard drive. From experience, things happen and you don't want to go through the 'ripping' hassle again! (ripping, the term for making mp3/wma/aac files from a CD)
    Last, if this is your first attempt at putting your music collection on your computer, you might want to keep them there. You might be surprised at how handy it is to have all of your music in one place close by, especially if you invest in a pretty moderately priced speaker setup for your computer.
    Best of luck!

  • Question from a Newbie wireless user

    Please excuse the naivete of this question. I'm completely ignorant on everything pertaining to wireless internet. My old Powerbook 400mHz G4 Titanium has never had wireless of any kind until this week when I bought a PCMCIA wireless adapter. Never used wireless, don't know anything about it.
    I started following the instructions on the PCM adapter this morning to get it all set up. I plan to toggle back and forth between wired internet at home and the wireless adapter when I'm out on the road.
    I was surprised when I saw the window where I enter my settings that there were no less than ten different internet services flying around the room in my house! I guess I have a lot of wireless neighbors and I could easily access their bandwidth.
    I imagine the same would go when I'm in town sitting in the library. They welcome you to use their internet access, but it's in a busy end of town and I'm sure I'll see numerous services available there too.
    So I'm clueless on this topic. Again, I've never used wireless internet before - but I've read about these guys who've been arrested in front of coffee houses for stealing bandwidth at WiFi hotspots when they weren't paying customers.
    What's the deal with sitting in your living room and using your neighbor's internet access? I know it's not ethical and we should all get our own, but what are legalities? And say I hopped on to someone's internet access +quite accidentally+...how does one get caught if you do it quietly? And have people actually gotten into trouble beyond these two guys that made national news?
    I guess my main question is exactly how careful do I need to be to set the correct access service when there are ten immediately available in a public place? Can I just click on whatever signal is strongest and log on without fear of being caught?
    I hope somebody knowledgeable can set me straight on this.
    Thanks.
    -JOHN
    ps. Here's the news item on these guys stealing wireless internet access:
    http://arstechnica.com/tech-policy/news/2007/05/michigan-man-arrested-for-using- cafes-free-wifi-from-his-car.ars

    You may find this technical article I've written helps you:
    http://homepage.mac.com/rfwilmut/notes/wireless.html
    It is fairly long, but it was originally written in response to some questions from a non-technical friend, and so I've tried to keep it as straightforward as possible.

  • Very basic question from beginner

    Hello,
    In Photoshop Elements I can only save a slide show as wmv or
    pdf file. Is it possible to export/convert the photoshop slide show
    directly to flash (swf) format? If not, how should I proceed in
    order to get the slide show as a flash file (swf)?
    I have downloaded Flash Media Server 3 from Adobe.
    I would need some very detailed advice, because I'm a TOTAL
    beginner! Thanks in advance!

    Well I think since you saved the file. Open up Flash and then
    click file new. Then click file>import>to library> and
    then import your file from there.

  • Some basic questions from a mac newbie

    hi,
    i have been using linux and windows all this while, and recently began using an apple too. have some simple questions here that i hope to get some answers for.
    1. is there something similar to /etc/hosts in linux where i can add the IP address of a server? this is for me to use the 'ssh' command in the terminal
    2. when i open up an application, say safari or chrome, i want the window to fill the entire screen automatically, instead of having to drag the bottom right of the window to fill the screen. how to configure that?
    3. when i close an application by clicking on the 'x' at the top left, why is it that it still appears in the list when i press command+tab? to remove the application from the list, i have to right click on its icon on the dock, then click 'quit'. this is rather troublesome.
    appreciate any help!

    1. is there something similar to /etc/hosts in linux where i can add the IP address of a server? this is for me to use the 'ssh' command in the terminal
    The /etc/hosts file is there, but the /etc/ folder is hidden. You can use the Terminal (in /Applications/Utilities/) to access it via Unix, or could enter "open /etc" in the Terminal to open that folder in the Finder.
    However, I'm not sure how this relates to ssh... I have not needed to modify that file, yet I can ssh all I need to. Are you trying to connect to your new Mac via ssh, or connect to other machines from the Mac via ssh?
    2. when i open up an application, say safari or chrome, i want the window to fill the entire screen automatically, instead of having to drag the bottom right of the window to fill the screen. how to configure that?
    Just drag the window out to full-screen and the browser should remember and open new windows at that size in the future. There are also some utilities (one called "Right Zoom" IIRC?) that will make the zoom button (green + button) behave more like the Windows zoom button.
    3. when i close an application by clicking on the 'x' at the top left, why is it that it still appears in the list when i press command+tab?
    Applications shouldn't quit just because you close their last window, unless the application's entire user interface is contained within that window. That is the case with ALL Windows apps, since there's no global menu bar, but only in some Mac apps. This is something that always ticked me off big-time with Windows... there have been times when I carelessly closed a window I didn't need anymore, but wanted to keep using the app, and then had to wait for it to load again. That won't happen on the Mac.
    If this bothers you, just use the key combination command-Q to quit apps.

  • Some questions from a newbie...

    Hello,
    I just switch to the Adobe Design Suite and bought LightRoom too. Since I worked more than 25 years with Corel I have some questions:
    01. Is or will there be facial recognition? (like in "Elements")
    02. When adding photos from a card is there a way to add the coordinates from a GPS log to the photos?
    03. Does noise reduction work with exif values (iso, camera model etc) from the specific photo or is it a "general" reduction?
    04. Is there a place I can download more web/HTML templates?
    05. When adding keywords and other meta data, can they be used in other programs too? (Will they show up in other graphic programs?) Or is it a specific "LightRoom" thing?
    Thanks for any help,
    Theo

    Hello Pete,
    Yes, I do understand that it will take time. But I must focus on Photoshop and Dreamweaver first since these are the programs that I use most of the time on a daily basis. I worked with the demo versions too to get an impression of what I was about to buy.
    I worked with a DW version from Macromedia and used Corel for more than 25 years. Since CorelPaint was crashing all the time and more and more people were complaining, I switched radically to Adobe. The reasons I had, besides the crashing, is that I could start fresh and use it with my children now. They have to use it for school purposes etc. Also I believe that Adobe is leading in the world and makes it more universal for us to work with. I found a lot of stuff on the internet like manuals etc. and will go into that soon. I'm aware of the fact that posting here is best done with problems not covered in help, but of course I tried the find it first myself. I must add that although we speak and read English fairly well, the technical aspect is sometimes harder for us to understand and find in English. But again, since it's used so much over the world we choose the English versions.
    Seeing the helpful answers I got, I'm glad I posted it.
    All the best,
    Theo

  • Basic Questions from an I-Pod Newbie

    OK, I admit it. As far as the I-Pod scene goes, I just came out of my cave, as will be evident fromm the following question that I hope someone will have the patience in addressing.
    Can I mix songs onto an I-Pod that I download from the I-Tunes store with ones from a regular store-bought music CD?

    No, you can do everything within iTunes. You have 2 options in iTunes to manage your iPod, manual sync or auto sync. Auto sync means that anytime you dock your iPod to the computer, any new content in itunes will be automatically synced to the iPod. Manual, you will have to drag & drop new content from iTunes to the iPod. The iPod tutorials sound like something you should review.
    http://www.apple.com/support/ipod101/

  • Some questions from a newbe

    hi,
    i started programming java one year ago and now i am thinking about to programm a simple application (egg timer) for a mobile phone. Does anybody have some experience and which files i will need(libraries, and so on...)?

    You'll need the J2ME micro edition:
    http://java.sun.com/j2me/
    Might want to search for tutorials on programming J2ME for mobile phones:
    http://www.j2me.org/yabbse/index.php?board=10
    Sounds fun - good luck. - MOD

  • Very important Battery Question from a prospective Mac buyer...

    Hi, guys!
    I am thinking of purchasing a Macbook Pro and just read that the battery is sealed-in. I know that I am able to buy a replacement battery, but I would also like to find out if I can still use the Pro even after the battery is broken?
    I have no problems with only being able to use the Pro when plugged into an outlet, but is it possible? Can I still use it in Plugged Mode even if the battery is long gone? Or do I really need to have a working battery in order to be able to use it (plugged or not)?
    Im a bit strapped for cash so I just wanna make sure to cover all bases before making a purchase.
    Thanks!

    I think it's pretty much been covered with everything. You have 2 options:
    1) Buy a replacement battery once yours is dead.
    2) Don't buy a replacement battery and work off the mains.
    And if you find out your processor is too slow if you go with option 2, then switch to option 1. You may be strapped for cash now, but if you save pennies for the next five years, you'll cover it. Probably if you do get five years' life out of your battery, your Pro will be an old 'just in case' laptop by that point anyway.
    You might want to research how you can make your battery life last longer as well. Like how charged up you should keep your notebook, whether or not to drain the battery completely and for how often etc. Can't remember the MBP's battery type off the top of my head.

  • A developer question from a newbie

    hi there!
    i'm trying to improve my geek skills and could use some direction from smart people like yourselves.
    all i know is some very basic html and photoshop that i learned 10yrs ago.  think of me as a young grandma in terms of ability.
    my goal is to be able to create my own website from scratch, or heck, even jazz up my posterous/ tumblr blogs.  i know, how lame/ quaint.  but we all start somewhere. 
    so, question: where to start?
    i've been thrown all these acronyms, php, mysql, css, javascript -- and then html5 and css3!  me no understand! 
    my computer genius brother tells me that i should learn the basics before learning dreamweaver...but i haven't a clue what that means.  do i take a css class?  an html5 class? 
    i'm in nyc and would ideally not like to spend a fortune on a class.  i also do want an instructed class b/c i'm definitely one of those obnoxious kids that asks a bazillion questions to clarify.  and bonus points if it's an intensive class b/c i'm impatient.  wah wah.
    many thanks,
    steph

    Steph
    You have plenty of resourced available to you on line, without paying a penny.  I guess though, it depends how quickly you want to get going and how best you learn.
    If you search this forum there will be heaps of suggested links to help you brush up on the grand themes, specific techniquies and of course, Dreamweaver.  In my mind the areas that you mention are all important, interelated but quite distinct.  HTML and CSS are the building blocks of any web page, PHP/MySql are about building dynamic sites and Javascript helps add functionality and whistles and bells to the design.  You can certainly get going with HTML and CSS and then add some of the other stuff without really knowing that much about them.
    A good place to start is http://www.w3schools.com/
    Martin

Maybe you are looking for