15 New Messages
Digest #9483
Messages
Tue Apr 9, 2013 8:09 am (PDT) . Posted by:
"Jon Kreisler" jonkreisler
Use the space bar to go page by page in man, the enter key advances one
line.
When you reach the end, the letter 'q' (lower case) will quit.
Jon
On Tue, Apr 9, 2013 at 8:03 AM, A S McAllister <73357.3046@compuserve.com >wrote:
> **
>
>
> This must be very simple but I don't seem to be getting anywhere.
>
> I know a bit about Unix/Linux but I've never had occasion to use it.
>
> I start Terminal.app and enter
>
> $ man mkdir
>
> The system returns the first man page, ending it with a colon (:). I press
> Enter and get one more line and again the colon. Keep pressing Enter,
> eventually get the BSD line at the end of the man entry. This is followed
> by a line containing (END) highlighted.
>
> Now I can't figure out how to get any further. I've tried all the key
> strokes I can think of, but haven't been able to get back to the $ prompt.
>
> What do I do?
>
> Many thanks
>
> Stratton McAllister
>
>
>
[Non-text portions of this message have been removed]
line.
When you reach the end, the letter 'q' (lower case) will quit.
Jon
On Tue, Apr 9, 2013 at 8:03 AM, A S McAllister <73357.3046@compuser
> **
>
>
> This must be very simple but I don't seem to be getting anywhere.
>
> I know a bit about Unix/Linux but I've never had occasion to use it.
>
> I start Terminal.app and enter
>
> $ man mkdir
>
> The system returns the first man page, ending it with a colon (:). I press
> Enter and get one more line and again the colon. Keep pressing Enter,
> eventually get the BSD line at the end of the man entry. This is followed
> by a line containing (END) highlighted.
>
> Now I can't figure out how to get any further. I've tried all the key
> strokes I can think of, but haven't been able to get back to the $ prompt.
>
> What do I do?
>
> Many thanks
>
> Stratton McAllister
>
>
>
[Non-text portions of this message have been removed]
Tue Apr 9, 2013 11:29 am (PDT) . Posted by:
"Jim Saklad" jimdoc01
>> I know a bit about Unix/Linux but I've never had occasion to use it.
>>
>> I start Terminal.app and enter
>>
>> $ man mkdir
>>
>> The system returns the first man page, ending it with a colon (:). I press Enter and get one more line and again the colon. Keep pressing Enter, eventually get the BSD line at the end of the man entry. This is followed by a line containing (END) highlighted.
>>
>> Now I can't figure out how to get any further. I've tried all the key strokes I can think of, but haven't been able to get back to the $ prompt.
>
> Use the space bar to go page by page in man, the enter key advances one
> line.
> When you reach the end, the letter 'q' (lower case) will quit.
> Jon
I copied your command line above, opened terminal, pasted it in, hit return, and got this:
> MKDIR(1) BSD General Commands Manual MKDIR(1)
>
> NAME
> mkdir -- make directories
>
> SYNOPSIS
> mkdir [-pv] [-m mode] directory_name ...
>
> DESCRIPTION
> The mkdir utility creates the directories named as operands, in the order specified, using mode rwxrwxrwx (0777) as modified by the current umask(2).
>
> The options are as follows:
>
> -m mode
> Set the file permission bits of the final created directory to the specified
> mode. The mode argument can be in any of the formats specified to
> the chmod(1) command. If a symbolic mode is specified, the
> operation characters ``+'' and ``-'' are interpreted relative to an
> initial mode of ``a=rwx''.
>
> -p Create intermediate directories as required. If this option is not
> specified, the full path prefix of each operand must already exist. On
> the other hand, with this option specified, no error will be reported if
> a directory given as an operand already exists. Intermediate
> directories are created with permission bits of rwxrwxrwx (0777) as
> modified by the current umask, plus write and search permission for
> the owner.
>
> -v Be verbose when creating directories, listing them as they are created.
>
> The user must have write permission in the parent directory.
>
> DIAGNOSTICS
> The mkdir utility exits 0 on success, and >0 if an error occurs.
>
> SEE ALSO
> rmdir(1)
>
> COMPATIBILITY
> The -v option is non-standard and its use in scripts is not recommended.
>
> STANDARDS
> The mkdir utility is expected to be IEEE Std 1003.2 (``POSIX.239;') compatible.
>
> HISTORY
> A mkdir command appeared in Version 1 AT&T UNIX.
>
> BSD January 25, 1994 BSD
--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Jim Saklad mailto:jimdoc@icloud.com
>>
>> I start Terminal.app and enter
>>
>> $ man mkdir
>>
>> The system returns the first man page, ending it with a colon (:). I press Enter and get one more line and again the colon. Keep pressing Enter, eventually get the BSD line at the end of the man entry. This is followed by a line containing (END) highlighted.
>>
>> Now I can't figure out how to get any further. I've tried all the key strokes I can think of, but haven't been able to get back to the $ prompt.
>
> Use the space bar to go page by page in man, the enter key advances one
> line.
> When you reach the end, the letter 'q' (lower case) will quit.
> Jon
I copied your command line above, opened terminal, pasted it in, hit return, and got this:
> MKDIR(1) BSD General Commands Manual MKDIR(1)
>
> NAME
> mkdir -- make directories
>
> SYNOPSIS
> mkdir [-pv] [-m mode] directory_name ...
>
> DESCRIPTION
> The mkdir utility creates the directories named as operands, in the order specified, using mode rwxrwxrwx (0777) as modified by the current umask(2).
>
> The options are as follows:
>
> -m mode
> Set the file permission bits of the final created directory to the specified
> mode. The mode argument can be in any of the formats specified to
> the chmod(1) command. If a symbolic mode is specified, the
> operation characters ``+'' and ``-'' are interpreted relative to an
> initial mode of ``a=rwx'
>
> -p Create intermediate directories as required. If this option is not
> specified, the full path prefix of each operand must already exist. On
> the other hand, with this option specified, no error will be reported if
> a directory given as an operand already exists. Intermediate
> directories are created with permission bits of rwxrwxrwx (0777) as
> modified by the current umask, plus write and search permission for
> the owner.
>
> -v Be verbose when creating directories, listing them as they are created.
>
> The user must have write permission in the parent directory.
>
> DIAGNOSTICS
> The mkdir utility exits 0 on success, and >0 if an error occurs.
>
> SEE ALSO
> rmdir(1)
>
> COMPATIBILITY
> The -v option is non-standard and its use in scripts is not recommended.
>
> STANDARDS
> The mkdir utility is expected to be IEEE Std 1003.2 (``POSIX.2
>
> HISTORY
> A mkdir command appeared in Version 1 AT&T UNIX.
>
> BSD January 25, 1994 BSD
--
~~~~~~~~~~~~
Jim Saklad mailto:jimdoc@icloud.
Tue Apr 9, 2013 8:28 am (PDT) . Posted by:
"Barry Austern" barryaus
On Apr 8, 2013, at 11:06 PM, Barbara Adamski wrote:
> Ah ha! It has to be plugged directly into the computer USB port, not to a hub.
>
> It's acting as expected now...
That's weird. I've had iPods plugged into various hubs for years. Maybe there is something flaky about your particular hub.
--
Barry Austern
barryaus@fuse.
[Non-text portions of this message have been removed]
Tue Apr 9, 2013 8:29 am (PDT) . Posted by:
"Barry Austern" barryaus
On Apr 8, 2013, at 11:15 PM, Barbara Adamski wrote:
> But now I get a message saying it can't update the ipod because it contains files that are in use by another application.
>
> Nothing'
Also weird. Log out of the computer account and then back in or even restart and see what happens.
--
Barry Austern
barryaus@fuse.
[Non-text portions of this message have been removed]
Tue Apr 9, 2013 8:46 am (PDT) . Posted by:
"Bekah" bekalex
I had to use the computer port when I upgraded my iPad to a more recent model - a couple years ago. The hub doesn't always carry the same level of "charge" you get with the USB port.
Bekah
On Apr 9, 2013, at 8:28 AM, Barry Austern <barryaus@fuse.net > wrote:
>
> On Apr 8, 2013, at 11:06 PM, Barbara Adamski wrote:
>
>> Ah ha! It has to be plugged directly into the computer USB port, not to a hub.
>>
>> It's acting as expected now...
>
>
> That's weird. I've had iPods plugged into various hubs for years. Maybe there is something flaky about your particular hub.
> --
> Barry Austern
> barryaus@fuse.net
>
>
>
>
>
>
> [Non-text portions of this message have been removed]
>
>
>
> ------------------------------------
>
> Group FAQ:
> <http://www.macsupportcentral.com/policies/ >
>
> Yahoo! Groups Links
>
>
>
Bekah
On Apr 9, 2013, at 8:28 AM, Barry Austern <barryaus@fuse.
>
> On Apr 8, 2013, at 11:06 PM, Barbara Adamski wrote:
>
>> Ah ha! It has to be plugged directly into the computer USB port, not to a hub.
>>
>> It's acting as expected now...
>
>
> That's weird. I've had iPods plugged into various hubs for years. Maybe there is something flaky about your particular hub.
> --
> Barry Austern
> barryaus@fuse.
>
>
>
>
>
>
> [Non-text portions of this message have been removed]
>
>
>
> ------------
>
> Group FAQ:
> <http://www.macsuppo
>
> Yahoo! Groups Links
>
>
>
Tue Apr 9, 2013 8:58 am (PDT) . Posted by:
"Chris Jones" bobstermcbob
On 09/04/13 16:46, Bekah wrote:
> I had to use the computer port when I upgraded my iPad to a more recent model - a couple years ago. The hub doesn't always carry the same level of "charge" you get with the USB port.
That probably depends on whether or not the hub has an external power
supply, or just relies on taking its power via the host's USB
connection. The former is much much better, as with the later you will
invariably find problems like this when you plug too many power hungry
devices in, that exhausts what the single USB connection can provide.
Never get un-powered hubs, in my opinion, as they are just a waste of
time...
Chris
> Bekah
>
> On Apr 9, 2013, at 8:28 AM, Barry Austern <barryaus@fuse.net > wrote:
>
>>
>> On Apr 8, 2013, at 11:06 PM, Barbara Adamski wrote:
>>
>>> Ah ha! It has to be plugged directly into the computer USB port, not to a hub.
>>>
>>> It's acting as expected now...
>>
>>
>> That's weird. I've had iPods plugged into various hubs for years. Maybe there is something flaky about your particular hub.
>> --
>> Barry Austern
>> barryaus@fuse.net
>>
>>
>>
>>
>>
>>
>> [Non-text portions of this message have been removed]
>>
>>
>>
>> ------------------------------------
>>
>> Group FAQ:
>> <http://www.macsupportcentral.com/policies/ >
>>
>> Yahoo! Groups Links
>>
>>
>>
>
>
>
> ------------------------------------
>
> Group FAQ:
> <http://www.macsupportcentral.com/policies/ >
>
> Yahoo! Groups Links
>
>
>
> I had to use the computer port when I upgraded my iPad to a more recent model - a couple years ago. The hub doesn't always carry the same level of "charge" you get with the USB port.
That probably depends on whether or not the hub has an external power
supply, or just relies on taking its power via the host's USB
connection. The former is much much better, as with the later you will
invariably find problems like this when you plug too many power hungry
devices in, that exhausts what the single USB connection can provide.
Never get un-powered hubs, in my opinion, as they are just a waste of
time...
Chris
> Bekah
>
> On Apr 9, 2013, at 8:28 AM, Barry Austern <barryaus@fuse.
>
>>
>> On Apr 8, 2013, at 11:06 PM, Barbara Adamski wrote:
>>
>>> Ah ha! It has to be plugged directly into the computer USB port, not to a hub.
>>>
>>> It's acting as expected now...
>>
>>
>> That's weird. I've had iPods plugged into various hubs for years. Maybe there is something flaky about your particular hub.
>> --
>> Barry Austern
>> barryaus@fuse.
>>
>>
>>
>>
>>
>>
>> [Non-text portions of this message have been removed]
>>
>>
>>
>> ------------
>>
>> Group FAQ:
>> <http://www.macsuppo
>>
>> Yahoo! Groups Links
>>
>>
>>
>
>
>
> ------------
>
> Group FAQ:
> <http://www.macsuppo
>
> Yahoo! Groups Links
>
>
>
Tue Apr 9, 2013 9:16 am (PDT) . Posted by:
"Bekah" bekalex
I just stopped using my computer-powered hub which, years ago, worked marvelously for several devices. Now there seem to be more ports on my computer - I have 3, 1 for the back-up drive, one for the iPod, one for the printer. When I attach the camera I use the iPod one. I have one of those little plug-in gadgets with one USB for the iPad.
Bekah
On Apr 9, 2013, at 8:58 AM, Chris Jones <jonesc@hep.phy.cam.ac.uk > wrote:
> On 09/04/13 16:46, Bekah wrote:
>> I had to use the computer port when I upgraded my iPad to a more recent model - a couple years ago. The hub doesn't always carry the same level of "charge" you get with the USB port.
>
> That probably depends on whether or not the hub has an external power
> supply, or just relies on taking its power via the host's USB
> connection. The former is much much better, as with the later you will
> invariably find problems like this when you plug too many power hungry
> devices in, that exhausts what the single USB connection can provide.
>
> Never get un-powered hubs, in my opinion, as they are just a waste of
> time...
>
> Chris
>
>> Bekah
>>
>> On Apr 9, 2013, at 8:28 AM, Barry Austern <barryaus@fuse.net > wrote:
>>
>>>
>>> On Apr 8, 2013, at 11:06 PM, Barbara Adamski wrote:
>>>
>>>> Ah ha! It has to be plugged directly into the computer USB port, not to a hub.
>>>>
>>>> It's acting as expected now...
>>>
>>>
>>> That's weird. I've had iPods plugged into various hubs for years. Maybe there is something flaky about your particular hub.
>>> --
>>> Barry Austern
>>> barryaus@fuse.net
>>>
>>>
>>>
>>>
>>>
>>>
>>> [Non-text portions of this message have been removed]
>>>
>>>
>>>
>>> ------------------------------------
>>>
>>> Group FAQ:
>>> <http://www.macsupportcentral.com/policies/ >
>>>
>>> Yahoo! Groups Links
>>>
>>>
>>>
>>
>>
>>
>> ------------------------------------
>>
>> Group FAQ:
>> <http://www.macsupportcentral.com/policies/ >
>>
>> Yahoo! Groups Links
>>
>>
>>
>
>
>
> ------------------------------------
>
> Group FAQ:
> <http://www.macsupportcentral.com/policies/ >
>
> Yahoo! Groups Links
>
>
>
Bekah
On Apr 9, 2013, at 8:58 AM, Chris Jones <jonesc@hep.phy.
> On 09/04/13 16:46, Bekah wrote:
>> I had to use the computer port when I upgraded my iPad to a more recent model - a couple years ago. The hub doesn't always carry the same level of "charge" you get with the USB port.
>
> That probably depends on whether or not the hub has an external power
> supply, or just relies on taking its power via the host's USB
> connection. The former is much much better, as with the later you will
> invariably find problems like this when you plug too many power hungry
> devices in, that exhausts what the single USB connection can provide.
>
> Never get un-powered hubs, in my opinion, as they are just a waste of
> time...
>
> Chris
>
>> Bekah
>>
>> On Apr 9, 2013, at 8:28 AM, Barry Austern <barryaus@fuse.
>>
>>>
>>> On Apr 8, 2013, at 11:06 PM, Barbara Adamski wrote:
>>>
>>>
>>>
>>>
>>>
>>>
>>> That's weird. I've had iPods plugged into various hubs for years. Maybe there is something flaky about your particular hub.
>>> --
>>> Barry Austern
>>> barryaus@fuse.
>>>
>>>
>>>
>>>
>>>
>>>
>>> [Non-text portions of this message have been removed]
>>>
>>>
>>>
>>> ------------
>>>
>>> Group FAQ:
>>> <http://www.macsuppo
>>>
>>> Yahoo! Groups Links
>>>
>>>
>>>
>>
>>
>>
>> ------------
>>
>> Group FAQ:
>> <http://www.macsuppo
>>
>> Yahoo! Groups Links
>>
>>
>>
>
>
>
> ------------
>
> Group FAQ:
> <http://www.macsuppo
>
> Yahoo! Groups Links
>
>
>
Tue Apr 9, 2013 11:30 am (PDT) . Posted by:
"Barry Austern" barryaus
On Apr 9, 2013, at 11:46 AM, Bekah wrote:
> I had to use the computer port when I upgraded my iPad to a more recent model - a couple years ago. The hub doesn't always carry the same level of "charge" you get with the USB port.
>
> Bekah
>
Is this a powered hub? If by "charge" you mean electric power then maybe that is your problem?
> On Apr 9, 2013, at 8:28 AM, Barry Austern <barryaus@fuse.
>
>>
>> On Apr 8, 2013, at 11:06 PM, Barbara Adamski wrote:
>>
>>> Ah ha! It has to be plugged directly into the computer USB port, not to a hub.
>>>
>>> It's acting as expected now...
>>
>>
>> That's weird. I've had iPods plugged into various hubs for years. Maybe there is something flaky about your particular hub.
>> --
>> Barry Austern
>> barryaus@fuse.
>>
>>
>>
>>
>>
>>
>> [Non-text portions of this message have been removed]
>>
>>
>>
>> ------------
>>
>> Group FAQ:
>> <http://www.macsuppo
>>
>> Yahoo! Groups Links
>>
>>
>>
>
>
>
> ------------
>
> Group FAQ:
> <http://www.macsuppo
>
> Yahoo! Groups Links
>
>
>
--
Barry Austern
barryaus@fuse.
[Non-text portions of this message have been removed]
Tue Apr 9, 2013 4:49 pm (PDT) . Posted by:
"Barb Adamski" bkadamski
Closing and reopening iTunes did the trick. The nano is now good to go. Thanks so much for your help, Barry!
Barbara K. Adamski
Sent from my iPad
On 2013-04-09, at 8:29 AM, Barry Austern <barryaus@fuse.net > wrote:
>
> On Apr 8, 2013, at 11:15 PM, Barbara Adamski wrote:
>
> > But now I get a message saying it can't update the ipod because it contains files that are in use by another application.
> >
> > Nothing's is in use by another application...
>
> Also weird. Log out of the computer account and then back in or even restart and see what happens.
>
> --
> Barry Austern
> barryaus@fuse.net
>
> [Non-text portions of this message have been removed]
>
>
[Non-text portions of this message have been removed]
Barbara K. Adamski
Sent from my iPad
On 2013-04-09, at 8:29 AM, Barry Austern <barryaus@fuse.
>
> On Apr 8, 2013, at 11:15 PM, Barbara Adamski wrote:
>
> > But now I get a message saying it can't update the ipod because it contains files that are in use by another application.
> >
> > Nothing'
>
> Also weird. Log out of the computer account and then back in or even restart and see what happens.
>
> --
> Barry Austern
> barryaus@fuse.
>
> [Non-text portions of this message have been removed]
>
>
[Non-text portions of this message have been removed]
Tue Apr 9, 2013 11:22 am (PDT) . Posted by:
"Jim Saklad" jimdoc01
> This is a very interesting iOS app that can use the camera to do Optical Character Recognition scanning.
>
> I may try it but if anyone here has tried it already please tell us what you think of it.
>
>> "Pixster Scanner OCR, a new app from Quanticapps which turns an iPhone into a mobile optical character recognition (OCR) service in more than 32 languages.
Not found by the iTunes Store.
--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Jim Saklad mailto:jimdoc@icloud.com
>
> I may try it but if anyone here has tried it already please tell us what you think of it.
>
>> "Pixster Scanner OCR, a new app from Quanticapps which turns an iPhone into a mobile optical character recognition (OCR) service in more than 32 languages.
Not found by the iTunes Store.
--
~~~~~~~~~~~~
Jim Saklad mailto:jimdoc@icloud.
Tue Apr 9, 2013 12:31 pm (PDT) . Posted by:
"Pat Osborne" pako98_2000
Jim Saklad <mailto:jimdoc@icloud.com >
April 9, 2013 1:22 PM
>
> Not found by the iTunes Store.
> Denver Dan <mailto:denver.dan@verizon.net >
> April 9, 2013 8:52 AM
> ...
> "Pixster Scanner OCR, a new app from Quanticapps which turns an iPhone
> into a mobile optical character recognition (OCR) service in more than
> 32 languages.
Because "Pixter" is misspelled. Try again, Jim. Worked for me.
--
Pat
[Non-text portions of this message have been removed]
April 9, 2013 1:22 PM
>
> Not found by the iTunes Store.
> Denver Dan <mailto:denver.dan@verizon.
> April 9, 2013 8:52 AM
> ...
> "Pixster Scanner OCR, a new app from Quanticapps which turns an iPhone
> into a mobile optical character recognition (OCR) service in more than
> 32 languages.
Because "Pixter" is misspelled. Try again, Jim. Worked for me.
--
Pat
[Non-text portions of this message have been removed]
Tue Apr 9, 2013 1:43 pm (PDT) . Posted by:
"N.A. Nada"
FYI, as a customer of CableJive, I find there products good and reliable.
For those of you looking for a Lightning to USB Sync and Charge Cable, check out. I do not currently have a need for one, but is also says it will sync.
http://www.cablejive.com/products/Lightlinez-XS.html
Brent
[Non-text portions of this message have been removed]
For those of you looking for a Lightning to USB Sync and Charge Cable, check out. I do not currently have a need for one, but is also says it will sync.
http://www.cablejiv
Brent
[Non-text portions of this message have been removed]
Tue Apr 9, 2013 2:21 pm (PDT) . Posted by:
"V. Meyer" vemeyermn
I need to update an email list maintained in Excel that contains 200+
entries. I'd like to find a way to do a merge email that will be basically
the same for all recipients, except I want to personalize parts of it (like
a mail merge in Word). I'd like to avoid doing a copy and paste, and then
changing the personalized info 200 times. I've done that, and it works, but
it's a drag.
Can anyone recommend an application (free or paid) that I can use on my iMac
to do this?
Thanks.
Vonii
[Non-text portions of this message have been removed]
entries. I'd like to find a way to do a merge email that will be basically
the same for all recipients, except I want to personalize parts of it (like
a mail merge in Word). I'd like to avoid doing a copy and paste, and then
changing the personalized info 200 times. I've done that, and it works, but
it's a drag.
Can anyone recommend an application (free or paid) that I can use on my iMac
to do this?
Thanks.
Vonii
[Non-text portions of this message have been removed]
Tue Apr 9, 2013 3:49 pm (PDT) . Posted by:
"Jim Saklad" jimdoc01
> I need to update an email list maintained in Excel that contains 200+ entries. I'd like to find a way to do a merge email that will be basically the same for all recipients, except I want to personalize parts of it (like a mail merge in Word). I'd like to avoid doing a copy and paste, and then changing the personalized info 200 times. I've done that, and it works, but it's a drag.
>
> Can anyone recommend an application (free or paid) that I can use on my iMac to do this?
A few seconds of Googling found both this:
<http://www.macosxtips.co.uk/index_files/mail-merge-in-iwork-09.php >
and this:
<http://www.dummies.com/how-to/content/how-to-create-a-mail-merge-in-word-2011-for-mac.html >
--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Jim Saklad mailto:jimdoc@icloud.com
>
> Can anyone recommend an application (free or paid) that I can use on my iMac to do this?
A few seconds of Googling found both this:
<http://www.macosxti
and this:
<http://www.dummies.
--
~~~~~~~~~~~~
Jim Saklad mailto:jimdoc@icloud.
Tue Apr 9, 2013 4:08 pm (PDT) . Posted by:
"Bill Morton" redpup99
I have an iPhone 5, and have been taking some pictures with its back
camera. They appear to get appended to the "camera roll" on the
iPhone.
Now I need to copy them to my MacBook Pro, but I haven't figured
out how to do that yet. I'd actually like to copy the entire "camera
roll", but could copy them individually if I had to.
Someone suggested that I could send an Email from the the
iPhone with the pix as attachments, but I haven't configured
eMail on the iPhone--and I don't really want to do that, because
I want emails to go only to the MacBook and not clutter up the
iPhone with them.
Is there possibly a 3rd-party app? Seems like this is such a
simple requirement that there must be a solution to it?
Thanks in advance!
Bill Morton
[Non-text portions of this message have been removed]
camera. They appear to get appended to the "camera roll" on the
iPhone.
Now I need to copy them to my MacBook Pro, but I haven't figured
out how to do that yet. I'd actually like to copy the entire "camera
roll", but could copy them individually if I had to.
Someone suggested that I could send an Email from the the
iPhone with the pix as attachments, but I haven't configured
eMail on the iPhone--and I don't really want to do that, because
I want emails to go only to the MacBook and not clutter up the
iPhone with them.
Is there possibly a 3rd-party app? Seems like this is such a
simple requirement that there must be a solution to it?
Thanks in advance!
Bill Morton
[Non-text portions of this message have been removed]
GROUP FOOTER MESSAGE