Re: urgent! Thorough and Good back up programs

2015-09-13 Thread Sabahattin Gucukoglu
Yes, reverse it.

For extra points, defragment and zero the Windows partition, and use bzip2 to 
compress the output of dd.  That makes an even smaller file.

It’s a shame that all this can’t be easily automated, although to be fair Apple 
has taken great care of Apple’s own side of the fence.  And when you come right 
down to it, OS X (and Unix, generally) file systems are easier to duplicate 
than Windows.  Bloody MickeySoft.

Your partition tables, including errors, would also be duplicated.  I’d throw 
it all out.

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


OSX 10.11 releases September 30Re: urgent! Thorough and Good back up programs

2015-09-13 Thread Singing Sparrow
apple has set september 30 for the release of OSX 10.11 the gold master 
is out now!


--
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


MODERATOR NOTE: An Explanation of Recently Deleted Messages to the List and a Suggestion Regarding List Subscription Requests

2015-09-13 Thread M. Taylor
Hello Everyone,

Some of you may have been notified that your unposted messages to the list
were recently deleted or rejected.  

Let me assure you that, unless notified, off-list, by either Cara or me, in
no way have you or are your posts being blocked from the list.

The simple truth of the matter is that Google, for whatever reason, tags
some posts to the list as spam or other unwanted material and places them in
a queue for review by a moderator.

As I only recently began assisting Cara in managing the lists, I dumped a
queue of held messages some of which having been held for over a month in
order to wipe the proverbial slate clean, making management tasks a little
easier.

Please accept my apology if you received such a notice and know that it was
merely a matter of some proverbial house cleaning, nothing more.

I would like to suggest that if you post a message to the list and it does
not appear within 24 hours, to please write to Cara and me, off-list, making
us aware of the problem so we can go into the queue and find it for you.  My
direct email address is:  mk...@ucla.edu 

I am aware that some people have encountered difficulty in subscribing to
the list or changing email address info, etc.  Please remember that the best
way to insure that your list subscription requests get processed is to write
a short explanation as to why you want to join or change your list info.  

A list subscription request containing at least one sentence, in addition to
an email address, is far more likely to be approved than one containing an
email address, only.

If you feel as though your list subscription email requests have been
overlooked, please send a direct email to Cara and me.

Thank you all for taking the time to read this and I look forward to serving
you as a list moderator.  

Most Sincerely,

Mark

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Re: urgent! Thorough and Good back up programs

2015-09-13 Thread Eric Oyen
yes.
you use the command dd thus: dd if=/Volumes/Media/backups/backup.img of=/dev/sda

that will write all information back to the new drive in exact bit for bit 
order.

-eric

On Sep 12, 2015, at 10:46 PM, Joe Quinn wrote:

> Then how do you restore it? Reverse it?
> 
> Sent from my iPhone
> 
>> On Sep 13, 2015, at 12:25 AM, Eric Oyen  wrote:
>> 
>> well,
>> if you use dd and you set the input file to be the first device for the HDD 
>> in /dev (the root device for the drive), then *everything* should be copied 
>> bit for bit. No missing data, no corruptions. In this case, your root drive 
>> would probably be /dev/sda (with 1 thru x being the partitions in order).
>> 
>> here is what I use to backup my system: dd if=/dev/sda 
>> of=/Volumes/Media/backups/macHD.img
>> 
>> that copies the entirety of the primary boot drive (and all its partitions, 
>> boot records, etc.) into a single contiguous file. no muss, no fuss. I have 
>> room on my 2 TB external for at least 1 months worth of backups at one per 
>> week. Considering that the boot drive is only 256 GB, it leaves me a lot of 
>> room for other things (including storing backups of documents, installation 
>> files, and my talking book library. Not too shabby, eh?
>> 
>> -eric
>> 
>>> On Sep 12, 2015, at 5:09 PM, Joe Quinn wrote:
>>> 
>>> did i ask this before, i use dd, but then I'd still have same problem with 
>>> the corrupt partition issue, right? forgive the question if I asked it 
>>> before.
>>> 
>>> Sent from my iPhone
>>> 
 On Sep 12, 2015, at 9:14 AM, Eric Oyen  wrote:
 
 well, here is how the drive imaging works with Disk utility.
 
 you can create a hard disk image, partition it and then copy the relevant 
 files to it. mind you, this is not exactly a clone. I haven't tried this 
 particular method myself, so I am not sure if it would work.
 
 However, if you dd the entire device, all information (including boot 
 record, partition map, drive allocation tables, volume bitmaps and 
 everything else is preserved as a bit for bit image. with a large enough 
 backup drive, you can store the entire image as a single file. This is the 
 method I use and it works 100% of the time. THe other method (creating a 
 disk image using DU) will not have the same results. you might miss some 
 things like the MBR, partition tables and a few other needed items. now, I 
 use dd as a matter of course simply because I don't have money to throw at 
 a backup program that may, or may not, be entirely accessible for the 
 totally blind user. it is also an included command line app that can be 
 run in terminal from the recovery partition. SInce I can run this recovery 
 partition from either a CD or a USB stick (properly configured), I don't 
 have to worry about anything on the system drive that might accidentally 
 get wiped (considering that I am wiping it anyway).
 
 if you need more info on dd, you can read here: 
 https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/dd.1.html
 
 -eric
 
> On Sep 12, 2015, at 6:31 AM, Joe Quinn wrote:
> 
> So if I Image my boot camp partition, then I deleted, reinstall it, and 
> then restore it, would it boot? I assume not because as you said it 
> wouldn't copy everything, only where there is data. I'm just confused. 
> :-) I should just come in and Match the start and  sectors of the 
> partition tables.
> 
> Sent from my iPhone
> 
>> On Sep 12, 2015, at 12:41 AM, Eric Oyen  wrote:
>> 
>> that would work. you can create a sparse image of the drive as an image 
>> file on another volume. the beauty about this is that only those places 
>> that have data will be copied. ANything without data will simply be 
>> ignored (as a zero space allocation). THis generally only works if you 
>> create a sparse image volume to mimic a hard dis and then do a copy of 
>> all the files inside the partition. its not exactly a bit for bit 
>> backup, but it serves as a stopgap.
>> 
>> -eric
>> 
>>> On Sep 11, 2015, at 1:24 PM, Joe Quinn wrote:
>>> 
>>> there's an "image" function in disk utilitity. would that work or do 
>>> anything? it's in the tolbar with firstaid, restore, etc.
>>> 
>>> Sent from my iPhone
>>> 
 On Sep 11, 2015, at 8:35 AM, Eric Oyen  wrote:
 
 I mentioned dd. Believe me, its a lot better than msbackup. the last 
 time I used MS Backup, it missed a number of files in my user settings 
 directory. so, these days, I backup the windows partition to an 
 external drive as an image file. I do so once per week and only keep 2 
 consecutive backups. THis way, I have the next most recent and the 
 most recent backups 

Re: 3 D touch.

2015-09-13 Thread sadam . lists
Can't wait to order my 6s. 

With the faster camera, faster processor, and 3 D touch it's going to be a good 
update. 

Sent from my iPhone 

-- 



> On 13 Sep 2015, at 10:37 PM, Jessica Moss  wrote:
> 
> Oh wow, that sounds beyond amazing; wish I had the cash to afford those.
>> On Sep 12, 2015, at 6:52 PM, sadam.li...@gmail.com wrote:
>> 
>> http://www.applevis.com/blog/apple-iphone-news/apple-confirms-peek-and-pop-features-new-iphone-6s-will-be-accessible
>> 
>> Sent from my iPhone 
>> 
>> -- 
>> 
>> 
>> 
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "MacVisionaries" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to macvisionaries+unsubscr...@googlegroups.com.
>> To post to this group, send email to macvisionaries@googlegroups.com.
>> Visit this group at http://groups.google.com/group/macvisionaries.
>> For more options, visit https://groups.google.com/d/optout.
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at http://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Re: 3 D touch.

2015-09-13 Thread Jessica Moss
Oh wow, that sounds beyond amazing; wish I had the cash to afford those.
On Sep 12, 2015, at 6:52 PM, sadam.li...@gmail.com wrote:

> http://www.applevis.com/blog/apple-iphone-news/apple-confirms-peek-and-pop-features-new-iphone-6s-will-be-accessible
> 
> Sent from my iPhone 
> 
> -- 
> 
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at http://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Apple TV-No Optical Port

2015-09-13 Thread Eileen Misrahi
Hello, 

I have a question. I know that there are 3.5 mm jack to blue tooth adaptors, 
which I learned a while back. Will this work with the new Apple TV if one 
needed to use an optical cable to rout the Apple TV through their receiver? 
This may be an option for those who are not in the market or can’t afford a new 
blue tooth receiver along with all the new iDevices revealed last Wednesday. 
Input on this would be appreciated. 

Thanks in advance. 

Best, 
Eileen 

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Re: TVOS Accessibility

2015-09-13 Thread Brent Harding

Do HDMI to audio converters still work good?
- Original Message - 
From: "Kawal Gucukoglu" 

To: "Macvisionaries" 
Sent: Saturday, September 12, 2015 2:11 PM
Subject: Re: TVOS Accessibility


Hi Jonathan.

Thanks for your reply.  I had a conversation with Apple today about it as I 
ordered my I phone 6S Plus.


Kawal.
On 12 Sep 2015, at 07:18, Jonathan Mosen  wrote:

Hi Kawal, you'll still need a TV, because Apple TV is only a set-top box. As 
long as any TV you get has an HDMI port, you'll be fine.

Jonathan Mosen
Mosen Consulting
Blindness technology eBooks, tutorials and training
http://Mosen.org


On 11/09/2015, at 8:34 AM, Kawal Gucukoglu  wrote:

Hi Scott.

I am very interested in the new Apple TV as I have no TV at the moment. 
So if I got a basic Free View TV (don't know if the US have Freeview TV) 
and got an Apple TV the new one, would it work on the Freeview TV?  As I 
thought yesterday Apple said that they had made a proper television.


Kawal.
On 10 Sep 2015, at 20:00, Scott Granados  wrote:

I think we’re going to write an App for the device so we can use our 
service as well in the same way.  Would be cool to have very high 
definition meetings right on your large screen TV.:)


On Sep 10, 2015, at 11:05 AM, Christopher-Mark Gilland 
 wrote:


Wow, just looked at this page.  This is awesome!  I am really heartened 
that straight out of the box, the very very first introduction to TVOS 
already has Voiceover included, and can even be activated with no sighted 
help, just like it can on I O S, and on OSS, and frankly, WatchOS.  That 
is incredible!  I confess, I was ever so slightly concerned, not so much 
that accessibility wouldn't be there, nor developed, but to what extent 
more or less it would be.  The fact they directly mention about flicking 
and double tapping, as well as your rotor even working tells me that this 
is gonna be probably like a real glorified version of I O S.  Guies, 
think about what this could mean for us audio gurus!  Pandora on your TV, 
Apple Music on your TV, Skype and maybe even Facetime on your TV in 
combination with the remote, e-mail and web browsing, Facebook and 
Twitter!  Oh, my freaking Gawod? Ehh K, ehh kayyy, Periscope! from the 
TV!  Now! you got me thinking!  This could be a freaking mazing!


Chris.

- Original Message - 
From: Kevin Shaw

To: macvisionaries@googlegroups.com ; viph...@googlegroups.com
Sent: Thursday, September 10, 2015 8:24 AM
Subject: TVOS Accessibility

Apple’s page on TVOS accessibility.

http://www.apple.com/accessibility/tvos/


Kevin

--
You received this message because you are subscribed to the Google 
Groups "MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send 
an email to macvisionaries+unsubscr...@googlegroups.com.

To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


--
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an 
email to macvisionaries+unsubscr...@googlegroups.com.

To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.



--
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an 
email to macvisionaries+unsubscr...@googlegroups.com.

To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an 
email to macvisionaries+unsubscr...@googlegroups.com.

To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.



--
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an 
email to macvisionaries+unsubscr...@googlegroups.com.

To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this 

RE: Anyone know how to play all songs by an artist on an iPod or iPhone?

2015-09-13 Thread george b
Open music

Double tap onmy music in the bottom right corner of the screen
Double tap on it says catagories and what is current like jondra button and 
double tap on that and the in the list double tap on artest
Now you will get a popluatted list of your artest in your music.
Double tap on the aretst
Then follow the prompt from there -Original Message-
From: macvisionaries@googlegroups.com [mailto:macvisionaries@googlegroups.com] 
On Behalf Of Donna Goodin
Sent: Sunday, September 13, 2015 11:57
To: macvisionaries@googlegroups.com
Subject: Re: Anyone know how to play all songs by an artist on an iPod or 
iPhone?

Hi Alan,

thanks for responding.  I don't have any problems with playlists, the playlist 
tab at the bottom is very easy to find.  What I would like to do is be able to 
pick a specific artist, say Erik Clapton, and play all the songs that I have by 
him in my library.  You used to be able to do this, Music would play one album 
and then just go on to the next one.  the weird thing is, that once, I actually 
did see the all Song button, and was able to select it, but I haven't seen that 
button since that one time.
Cheers,
Donna
> On Sep 13, 2015, at 1:34 PM, Alan Lemly  wrote:
> 
> Donna,
> 
> I sync my desired playlists to my iPhone 6 so that my iPhone actually
> contains the music I enjoy listening to as opposed to using Apple Music or
> another streaming service. The way I would listen to a particular artist on
> my iPhone would be to call up Siri and say something like "Play Bruno Mars
> shuffled or not shuffled." I'm not sure of the actual words to request the
> playing not to be shuffled but give Siri a try and see if she meets your
> needs.
> 
> Alan Lemly
> 
> -Original Message-
> From: macvisionaries@googlegroups.com
> [mailto:macvisionaries@googlegroups.com] On Behalf Of Donna Goodin
> Sent: Sunday, September 13, 2015 1:11 PM
> To: macvisionaries@googlegroups.com
> Subject: Anyone know how to play all songs by an artist on an iPod or
> iPhone?
> 
> Hi all,
> 
> so if you have multiple albums by a given artist, how do you get your
> i-device to play all songs from all albums?  I've looked in the Apple
> Support forums, and saw something that said you did it by tapping on the
> artist photo.  I've tried tapping the artist's name, but that did not do it.
> Does anyone know how to do this?
> Thanks,
> Donna
> 
> -- 
> You received this message because you are subscribed to the Google Groups
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at http://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at http://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Re: Apple TV-No Optical Port

2015-09-13 Thread Ray Foret Jr
Totally forget that option.  The ONLY connections on the Apple TV are as 
follows:

1.  RJ45 port for ethernet.

2.  HDMI port for connecting to either HDTV or HD capable AV receiver.
3.  MiniUSB.

4.  Optical digital output.


Sincerely, The Constantly Barefooted Ray,

Still a very happy Mac, Verizon Wireless iPhone6+ and Apple TV user!

Sent from my Mac, The Only computer with full accessibility for the blind 
built-in!!!

> On Sep 13, 2015, at 11:34 AM, Eileen Misrahi  wrote:
> 
> Hello, 
> 
> I have a question. I know that there are 3.5 mm jack to blue tooth adaptors, 
> which I learned a while back. Will this work with the new Apple TV if one 
> needed to use an optical cable to rout the Apple TV through their receiver? 
> This may be an option for those who are not in the market or can’t afford a 
> new blue tooth receiver along with all the new iDevices revealed last 
> Wednesday. Input on this would be appreciated. 
> 
> Thanks in advance. 
> 
> Best, 
> Eileen 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at http://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Anyone know how to play all songs by an artist on an iPod or iPhone?

2015-09-13 Thread Donna Goodin
Hi all,

so if you have multiple albums by a given artist, how do you get your i-device 
to play all songs from all albums?  I've looked in the Apple Support forums, 
and saw something that said you did it by tapping on the artist photo.  I've 
tried tapping the artist's name, but that did not do it.  Does anyone know how 
to do this?
Thanks,
Donna

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Re: Anyone know how to play all songs by an artist on an iPod or iPhone?

2015-09-13 Thread Donna Goodin
Hi Alan,

thanks for responding.  I don't have any problems with playlists, the playlist 
tab at the bottom is very easy to find.  What I would like to do is be able to 
pick a specific artist, say Erik Clapton, and play all the songs that I have by 
him in my library.  You used to be able to do this, Music would play one album 
and then just go on to the next one.  the weird thing is, that once, I actually 
did see the all Song button, and was able to select it, but I haven't seen that 
button since that one time.
Cheers,
Donna
> On Sep 13, 2015, at 1:34 PM, Alan Lemly  wrote:
> 
> Donna,
> 
> I sync my desired playlists to my iPhone 6 so that my iPhone actually
> contains the music I enjoy listening to as opposed to using Apple Music or
> another streaming service. The way I would listen to a particular artist on
> my iPhone would be to call up Siri and say something like "Play Bruno Mars
> shuffled or not shuffled." I'm not sure of the actual words to request the
> playing not to be shuffled but give Siri a try and see if she meets your
> needs.
> 
> Alan Lemly
> 
> -Original Message-
> From: macvisionaries@googlegroups.com
> [mailto:macvisionaries@googlegroups.com] On Behalf Of Donna Goodin
> Sent: Sunday, September 13, 2015 1:11 PM
> To: macvisionaries@googlegroups.com
> Subject: Anyone know how to play all songs by an artist on an iPod or
> iPhone?
> 
> Hi all,
> 
> so if you have multiple albums by a given artist, how do you get your
> i-device to play all songs from all albums?  I've looked in the Apple
> Support forums, and saw something that said you did it by tapping on the
> artist photo.  I've tried tapping the artist's name, but that did not do it.
> Does anyone know how to do this?
> Thanks,
> Donna
> 
> -- 
> You received this message because you are subscribed to the Google Groups
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at http://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at http://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


RE: Anyone know how to play all songs by an artist on an iPod or iPhone?

2015-09-13 Thread Alan Lemly
Donna,

I sync my desired playlists to my iPhone 6 so that my iPhone actually
contains the music I enjoy listening to as opposed to using Apple Music or
another streaming service. The way I would listen to a particular artist on
my iPhone would be to call up Siri and say something like "Play Bruno Mars
shuffled or not shuffled." I'm not sure of the actual words to request the
playing not to be shuffled but give Siri a try and see if she meets your
needs.

Alan Lemly

-Original Message-
From: macvisionaries@googlegroups.com
[mailto:macvisionaries@googlegroups.com] On Behalf Of Donna Goodin
Sent: Sunday, September 13, 2015 1:11 PM
To: macvisionaries@googlegroups.com
Subject: Anyone know how to play all songs by an artist on an iPod or
iPhone?

Hi all,

so if you have multiple albums by a given artist, how do you get your
i-device to play all songs from all albums?  I've looked in the Apple
Support forums, and saw something that said you did it by tapping on the
artist photo.  I've tried tapping the artist's name, but that did not do it.
Does anyone know how to do this?
Thanks,
Donna

-- 
You received this message because you are subscribed to the Google Groups
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Learning Pages for the Mac

2015-09-13 Thread Craig Werner
Hello, everyone.

I am about to start learning Pages for the Mac. For now, I seek only a
basic understanding: creating a document; changing type styles; finding and
replacing text; writing a basic header, etc. Can anyone recommend articles
or podcasts that might be helpful? Even supplying general information as to
where these resources are will suffice. I don't expect anyone to go
searching for specific links.

Thanks for all help.

Craig

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Re: Anyone know how to play all songs by an artist on an iPod or iPhone?

2015-09-13 Thread Alan Lemly
Hi Donna, 

So have you tried asking Siri to play Eric clapton to see what happens? I'm 
still using ios 8.3 so my music app has not been affected by the changes they 
brought in to support apple music. I'd be curious how Siri would handle a 
request to play tracks by artist when both owned and streamed music are 
available on the same device. 

Alan Lemly 

Sent from my iPhone

> On Sep 13, 2015, at 1:57 PM, Donna Goodin  wrote:
> 
> Hi Alan,
> 
> thanks for responding.  I don't have any problems with playlists, the 
> playlist tab at the bottom is very easy to find.  What I would like to do is 
> be able to pick a specific artist, say Erik Clapton, and play all the songs 
> that I have by him in my library.  You used to be able to do this, Music 
> would play one album and then just go on to the next one.  the weird thing 
> is, that once, I actually did see the all Song button, and was able to select 
> it, but I haven't seen that button since that one time.
> Cheers,
> Donna
>> On Sep 13, 2015, at 1:34 PM, Alan Lemly  wrote:
>> 
>> Donna,
>> 
>> I sync my desired playlists to my iPhone 6 so that my iPhone actually
>> contains the music I enjoy listening to as opposed to using Apple Music or
>> another streaming service. The way I would listen to a particular artist on
>> my iPhone would be to call up Siri and say something like "Play Bruno Mars
>> shuffled or not shuffled." I'm not sure of the actual words to request the
>> playing not to be shuffled but give Siri a try and see if she meets your
>> needs.
>> 
>> Alan Lemly
>> 
>> -Original Message-
>> From: macvisionaries@googlegroups.com
>> [mailto:macvisionaries@googlegroups.com] On Behalf Of Donna Goodin
>> Sent: Sunday, September 13, 2015 1:11 PM
>> To: macvisionaries@googlegroups.com
>> Subject: Anyone know how to play all songs by an artist on an iPod or
>> iPhone?
>> 
>> Hi all,
>> 
>> so if you have multiple albums by a given artist, how do you get your
>> i-device to play all songs from all albums?  I've looked in the Apple
>> Support forums, and saw something that said you did it by tapping on the
>> artist photo.  I've tried tapping the artist's name, but that did not do it.
>> Does anyone know how to do this?
>> Thanks,
>> Donna
>> 
>> -- 
>> You received this message because you are subscribed to the Google Groups
>> "MacVisionaries" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to macvisionaries+unsubscr...@googlegroups.com.
>> To post to this group, send email to macvisionaries@googlegroups.com.
>> Visit this group at http://groups.google.com/group/macvisionaries.
>> For more options, visit https://groups.google.com/d/optout.
>> 
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "MacVisionaries" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to macvisionaries+unsubscr...@googlegroups.com.
>> To post to this group, send email to macvisionaries@googlegroups.com.
>> Visit this group at http://groups.google.com/group/macvisionaries.
>> For more options, visit https://groups.google.com/d/optout.
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at http://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Re: Apple TV-No Optical Port

2015-09-13 Thread 'Chris Blouch' via MacVisionaries
The new Apple TV, which isn't even available to purchase yet, has 
dropped the optical audio out. So the only option is to get your audio 
via HDMI or send it to an airport express with optical audio outputs. 
They did add 7.1 surround sound if you're really into that home theater 
sound setup.


CB

On 9/13/15 2:24 PM, Ray Foret Jr wrote:
Totally forget that option.  The ONLY connections on the Apple TV are 
as follows:


1.  RJ45 port for ethernet.

2.  HDMI port for connecting to either HDTV or HD capable AV receiver.
3.  MiniUSB.

4.  Optical digital output.


Sincerely, The Constantly Barefooted Ray,

Still a very happy Mac, Verizon Wireless iPhone6+ and Apple TV user!

Sent from my Mac, The Only computer with full accessibility for the 
blind built-in!!!


On Sep 13, 2015, at 11:34 AM, Eileen Misrahi 
> wrote:


Hello,

I have a question. I know that there are 3.5 mm jack to blue tooth 
adaptors, which I learned a while back. Will this work with the new 
Apple TV if one needed to use an optical cable to rout the Apple TV 
through their receiver? This may be an option for those who are not 
in the market or can’t afford a new blue tooth receiver along with 
all the new iDevices revealed last Wednesday. Input on this would be 
appreciated.


Thanks in advance.

Best,
Eileen

--
You received this message because you are subscribed to the Google 
Groups "MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, 
send an email to macvisionaries+unsubscr...@googlegroups.com 
.
To post to this group, send email to macvisionaries@googlegroups.com 
.

Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


--
You received this message because you are subscribed to the Google 
Groups "MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send 
an email to macvisionaries+unsubscr...@googlegroups.com 
.
To post to this group, send email to macvisionaries@googlegroups.com 
.

Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


--
¯\_(ツ)_/¯

--
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


another braille question..

2015-09-13 Thread Caitlyn Furness
Hi,
OK, this is probably a stupid one, but is computer braille the same as 8 dot?

And, if I have 8 dot mode turned on, can I leave the contracted box ticked?

I suppose I’ll have to get used to reading in 8 dot mode if this is the same as 
computer braille, but honestly, so far, when I’ve tried using it, it bugs 
me-it’s like reading grade one!

Thanks for any help!
Caitlyn

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Re: reading .brf files on the mac

2015-09-13 Thread Jason White
Caitlyn Furness  wrote:
> Can somebody enlighten me as to how to read .brf files on the mac?
> 
> I thought I could just pull up one in text edit and as long as I was reading 
> with a braille display it’d be fine.

It should be. Do you have Grade II braille translation switched off in
VoiceOver? If not, you'll definitely have unreadable BRF files. You need to be
in computer braille mode.

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


reading .brf files on the mac

2015-09-13 Thread Caitlyn Furness
Hi,
Can somebody enlighten me as to how to read .brf files on the mac?

I thought I could just pull up one in text edit and as long as I was reading 
with a braille display it’d be fine.

I just tried to do this with a file and it was gobbledy gook!

I am using a brilliant bi40.

Thanks!
Caitlyn

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Magic touchpad

2015-09-13 Thread -


Does anyone use one of these?  How nearly does it act as with an ipad or 
iphone?


Is it possible to do most voiceover functions and/or destop functions with 
it?


Thanks.

XB

--
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Re: reading .brf files on the mac

2015-09-13 Thread Caitlyn Furness
Hi,
I’ll go check.  I probably do have grade 2 turned on, so will go change it to 
the computer braille and see if that helps!  thanks!
Caitlyn

> On Sep 13, 2015, at 6:55 PM, Jason White  wrote:
> 
> Caitlyn Furness  wrote:
>> Can somebody enlighten me as to how to read .brf files on the mac?
>> 
>> I thought I could just pull up one in text edit and as long as I was reading 
>> with a braille display it’d be fine.
> 
> It should be. Do you have Grade II braille translation switched off in
> VoiceOver? If not, you'll definitely have unreadable BRF files. You need to be
> in computer braille mode.
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at http://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Re: Magic touchpad

2015-09-13 Thread Caitlyn Furness
Hi,
Yes, the magic track pad allows lots of voice over gestures.  It does work 
similar to an i phone.

I use mine with both my i mac and the one built into my mac book air all the 
time, wouldn’t be as productive without using them!

hth,
Caitlyn

> On Sep 13, 2015, at 6:22 PM, -  wrote:
> 
> 
> Does anyone use one of these?  How nearly does it act as with an ipad or 
> iphone?
> 
> Is it possible to do most voiceover functions and/or destop functions with it?
> 
> Thanks.
> 
> XB
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at http://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Re: urgent! Thorough and Good back up programs

2015-09-13 Thread Joe Quinn
I care more about my mac side than my windows side as I have lots of apps there
I just hope blowing away bootcamp and reinstalling it will fix it. Anyone know 
anything about GDisk? How can I get and use it?
A from my iPhone

> On Sep 13, 2015, at 1:36 AM, Sabahattin Gucukoglu  wrote:
> 
> Yes, reverse it.
> 
> For extra points, defragment and zero the Windows partition, and use bzip2 to 
> compress the output of dd.  That makes an even smaller file.
> 
> It’s a shame that all this can’t be easily automated, although to be fair 
> Apple has taken great care of Apple’s own side of the fence.  And when you 
> come right down to it, OS X (and Unix, generally) file systems are easier to 
> duplicate than Windows.  Bloody MickeySoft.
> 
> Your partition tables, including errors, would also be duplicated.  I’d throw 
> it all out.
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at http://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Re: another braille question..

2015-09-13 Thread David Chittenden
Computer braille is the same as 8-dot braille. In computer braille, there is a 
different dot pattern for each symbol. For letters, uppercase letters have dot 
7 added to the letter. Numbers and punctuation are different. Remember, print 
is not contracted.

One cannot have contracted braille checked if one wishes to use computer 
braille.

David Chittenden, MSc, MRCAA
Email: dchitten...@gmail.com
Mobile: +64 21 2288 288
Sent from my iPhone

> On 14 Sep 2015, at 11:46, Caitlyn Furness  wrote:
> 
> Hi,
> OK, this is probably a stupid one, but is computer braille the same as 8 dot?
> 
> And, if I have 8 dot mode turned on, can I leave the contracted box ticked?
> 
> I suppose I’ll have to get used to reading in 8 dot mode if this is the same 
> as computer braille, but honestly, so far, when I’ve tried using it, it bugs 
> me-it’s like reading grade one!
> 
> Thanks for any help!
> Caitlyn
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at http://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.