Read aloud function

Hi,
I am just wondering if someone could help me out and explain what i need to do in order to use the read alound function in adobe reader
Thanks

You need to go to the View menu, Read Out Load, and click on Activate Read Out Loud. Then go back to the same menu and select one of the Read options (current page only/entire document).

Similar Messages

  • Does the ipad mini have a read aloud app

    Does the mini ipad have a read aloud function or do you need to downoad an app?

    Try this ,settings>general>accessibility>voice over>turn on.

  • READ ALOUD enabled book

    upgraded to reader 8.1.0 that separated out digital editions. now can not find information on how to get read aloud function to work. intel mac os 10.4.10
    thanks

    Hi Ric,
    I'm guessing that DE doesn't support Auto Scroll either. I want to open my ebook (borrowed from the library) in Adobe Reader 8 or Acrobat 8, but no matter what I do, the website http://www.adobe.com/products/digitaleditions/?source=acrofile opens automatically. How can I get my PDF ebook to simply open in Reader or Acrobat so I can Auto Scroll?
    Thanks,
    Ione in Canton, Michigan

  • IBooks read-aloud freezes

    I have made a couple of fixed layout books with read aloud function, which are not yet published to the iBookstore. One with word-by-word markup, and one where I have just a single SMIL par-tag per page. They seem to have the same problem. At first they work fine in iBooks, but eventually next time I test them, the read-aloud freezes at the first word or page which has a SMIL-doc attached to it. That is, it will flip through the first pages but will not get through the actual read aloud words. The only solution I found so far is to restart the iPad. Then it will work for a while, before the same thing happens again. And that is not what I would want to happen once they are published.
    Both books go through epubcheck 3.0.1 just fine. What could be the problem?

    Try a reset: Simultaneously hold down the Home and On buttons until the device shuts down. Ignore the off slider if it appears. Once shut down is complete, if it doesn't restart on it own, turn the device back on using the On button. In some cases it also helps to double click the Home button and close all apps from the tray before doing the reset.

  • Read-aloud audio tagging and word highlight functions

    There are third party apps* for this, but they lock you into their format and don't support every thing that a native FXL Indesign epub export does. Doing all the work manually for creating the SMIL file and marking the audio, etc. Is just way to hard and easy to fail at for most of us.
    MANY publishers want this feature! PLEASE I beg of you, nobody can put their massive coding muscles behind such an effort like Adobe. PLEASE, PLEASE, PLEASE consider adding an easy read-aloud margin function to the InDesign suite?
    I would even pay extra for this. On bended knee, I beg you.
    Aquafadas = inscrutable instructions. Expensive. French. (Can't be bothered to help customers.)
    CircularFLO = easier read-aloud, but LAME-O animations, won't support InDesign animations. (Also no support. And they definitely do not want you guys to see their code.)
    Please?

    There are third party apps* for this, but they lock you into their format and don't support every thing that a native FXL Indesign epub export does. Doing all the work manually for creating the SMIL file and marking the audio, etc. Is just way to hard and easy to fail at for most of us.
    MANY publishers want this feature! PLEASE I beg of you, nobody can put their massive coding muscles behind such an effort like Adobe. PLEASE, PLEASE, PLEASE consider adding an easy read-aloud margin function to the InDesign suite?
    I would even pay extra for this. On bended knee, I beg you.
    Aquafadas = inscrutable instructions. Expensive. French. (Can't be bothered to help customers.)
    CircularFLO = easier read-aloud, but LAME-O animations, won't support InDesign animations. (Also no support. And they definitely do not want you guys to see their code.)
    Please?

  • Best practice for read-only functionality

    Hi,
    I'm part of the development team of a system with about 100 screens. The customer would like us to add some read-only functionality to the system, so that certain users are able to access the screens but not change any of the data on them. We already have policies in place on the database level that keeps read-only users from saving data, but it's not very user friendly to allow users to change data on a screen, only to tell them that they're not allowed to save those changes once they try to do so. It would clearly be better if all components are rendered as read-only components for read-only users, making them unable to make any data changes in the first place.
    User privileges in the system are controlled by roles defined and set in the system (not ADF roles or Weblogic roles). At any given time and place, it's possible to check whether the current user has a certain role. We already use this in a number of places to make it possible to control which user has access to which screens. In a few places we even control which functionality should be enabled for the current user within a screen, but mostly the access control is currently on the screen level. With read-only users getting access to all screens, it seems we will need lot of extra in-screen access control to keep these users from changing anything.
    But what's the best practice here? One way to go would be to add some logic to every single active component on every single screen, to determine whether it should be rendered as active or disabled/read-only. But that would require a lot of extra coding.
    So my question is: Is there a smarter way to do this? Maybe something done through skinning? Or something else?
    (I'm not sure how relevant this is for this sort of question, but we're currently using JDev 11.1.1.4.0, and expect to upgrade to 11.1.1.6.0 within the next 6 months)
    Best regards,
    Andreas

    Hi Guna, Puthanampatti and Don,
    Thanks a lot for your replies. I'm currently looking into implementing something along the lines of what Guna has suggested:
    Our application consists of a number of individual work spaces that are deployed as adflibs which have all been added to a "master application work space", and the master application is deployed as an .ear file. Most of the individual work spaces are for all the different functional areas of the application, with their own task flows, page fragments etc. The rest are work spaces with common functionality, like datamodel (entity definitions), utility methods, page templates, and framework extensions. In the latter, we have defined custom classes for all the base classes (somewhat similar to what Don describes, I believe).
    In our custom class for ViewRowImpl, I have added an isAttributeUpdateable method, and in our custom class for ApplicationModuleImpl I have added an isReadOnlyUser method. The isAttributeUpdateable method uses the isReadOnlyUser method to determine if the current user is a read-only user or not; if the user is a read-only user the isAttributeUpdateable method will return false, otherwise true. The isReadOnlyUser method in our base class is just a dummy method that always returns true. But in the ApplicationModuleImpl classes of our individual work spaces, i've written an override for isReadOnlyUser, giving the answer that is relevant for the work space in question (for instance, whether or not the current user has the role "User Administrator").
    That pretty much takes care of all input fields in tables and forms, which is a big step in the right direction. This still leaves some work to be done for components that are not directly linked to view object attributes (like buttons), but I guess that can't be helped. Also, there are a few of the work spaces that contain a number of pages that are related to different user privileges (as in: page 1 requires user privilege A, and page 2 requires user privilege B); in these cases I will have to do something different than just writing an override in the "local" ApplicationModuleImpl class.
    @Don: What you describe seems to be pretty close in functionality to what we already have, though your implementation is different from ours. You have used your custom base ApplicationModuleImpl class to keep read-only users from committing changes. We use Virtual Private Database and database policies to the same end: If a user without the required full-access role tries to commit data it will cause a database error, which we then handle in the application (so the user gets a message like "You don't have the required privileges to changes this data", rather than an ORA message). Unfortunately, our customers are not content with this. They want a solution where all input fields and most of the buttons etc. are disabled for read-only users, and that's why I'm looking into the best/smartest way to do this.
    @Puthanampatti: We already use something similar to what you're suggesting. The challenge I'm currently facing is how best to disable/enable components based on the current user's roles, not how to determine and store those roles.
    Best regards,
    Andreas

  • Read XML function - can't get it to work correctly to set metadata

    I've been working with the Read XML function in order to set metadata on assets with no avail. I'm using the following simple XML file in a Watcher folder with a poll watcher setup every 5 seconds, that then references a Read XML Response named "Update Asset Metadata" - to read the XML file and update the asset metadata. Nothing really happens even though the FCS Log file shows that the process is taking place to "update" the asset metadata. Any advice is appreciated. Thanks!
    FILE:
    <?xml version="1.0" encoding="UTF-8"?>
    <FinalCutServer>
    <request reqId="setMd" entityId="/asset/10">
    <params>
    <mdValue fieldName="Title" dataType="string">Text Info Change</mdValue>
    </params>
    </request>
    </FinalCutServer>

    I got the answer. You must type “*.xml” (that is, asterisk-dot-xml) in the Value field of Wildcard Include Filter for it to work correctly.

  • How do you add read aloud to a fixed layout book?

    I have seen some ibooks (childrens books) with read aloud abilities. I know you have to do some programming but what program do you use to edit the code, can you preview it in ibooks (on ipad) if you modify the code, and is there a non-programming way to add audio/speech to your ibooks through ibooks author? Does anyone know the process or what steps and programs needed to add the read aloud feature to an ibook? (I know there are many others out their who would like to know the answers to these questions). Thanks.
    Also, I have HD images (2000x1462) for my ibook in ibooks author and when I preview it on an ipad 2, it downsizes it to regular quality (like 1400x1200 ish). Since I don't yet own an iPad 3, do the images stay HD quality when an ibook (from ibooks author) is viewed on an iPad 3?

    Okay, I just finished building my Ibook in Ibooks Author. I tested one of the free ibooks (Peter Rabit) and liked how it reads to you. I have read many articles and other posts here on Apple.com and everyone seems to want to add this read aloud feature. I have the Fixed Layout EPUBs Miniguide and iBookstore Asse Guide 4_8 and even though the miniguide explains things step by step, its like reading Greek. I am new to programming. Since I assume you are an expert, what I need is help getting started. I'm pretty good at figuring things out, I just need to get a jumpstart as fast as possible. (I don't want to spend a whole month trying to add this read aloud feature).
    1. I have a finished book but its not looking like the fixed layout kids books I see on ibooks. Is there a simple way to just tell ibooks its a fixed layout and get rid of the textbook features without using programming? (I know there are people out there who agree with me)
    2. I know that I need a XML SMIL compatable text editor (BBedit is the only one I heard is free and good). But where do I begin? Is there some kind of template of code where I just add in the code to get the book to read from audio files? If I edit the epub file, will this book still be able to be sent to the iPad through ibooks Author for a preview?
    3. I am familiar with Audacity so the audio part is doable. But the coding is scaring me. To add a word by word reading for the ibook requires more programming.
    4. Tell me a short list of what I need to do in order. I have all this information but its overwhelming because I hate programming. (I tried making an iphone app and gave up because it required Xcode, which is way out of my league). I don't know where to start from my finished iBook so what is the next thing I need to do?
    Thanks Jessica

  • Using javascript to call a signed applet's read/write functions problem.

    Hi, I wan't to use javascript to call the read/write functions of my signed java applet.
    The applet can read/write fine, if its called from inside the applet, but when I make public functions to do the read/write and then call those functions from javascript, i get the old security exception.
    Has anyone done this before?
    Thanks

    From what I understand is that for example file IO can only be done if the current method
    has this privilege and the stack that called the current method had this privilege.
    Javascript doesn't have any privilege and calling methods that do file IO directly from
    javascript should not work, this bug was fixed in 1.4.2.
    The workarround AccessController.doPrivileged(new PrivilegedAction() { might allso be
    fixed in later versions since changing the privileges of currently executing code is
    someting that should not be possible when the currently executing code is called from
    "untrusted" (javascript) code.
    http://forum.java.sun.com/thread.jsp?forum=63&thread=524815
    second post

  • Ibooks Author and Read Alouds...

    Hi-
    I am using ibooks author in a classroom with my students with special needs. Any ideas on what is the best way to have the books "read aloud"
    Thanks.
    Mark

    Mark
    I would like to help you with your students. I have written a few ibooks for special needs students and I am looking for teachers and students to continue to use them.
    Please let me know if i can help...

  • Reading SAP function modules using FromSAPIdentity pass

    Hi,
    We have SAP NW IDM 7.2 SP7 environment
    And I have been using FromSAPIdentity pass to read SAP function modules.
    A typical configuration will looks like below
    Above works like a charm and everything is as expected :-)
    Now i am trying to fetch data from another function module.
    Here the challenge is import parameter entry need to be provided with selection criteria say something like below for PARAMETER1
    SIGN=E
    OPTION=EQ
    LOW=<Value>
    HIGH=<Value>
    Does FromSAPIdentity pass accepts selection criteria input for "PARAMETERS" ?
    If yes, which format should i follow to provide those values ?
    Thanks
    Karthik

    Use DD03L table .
    Also use this FM.
    F4_DD_TABLE_FIELDS
    DD_GET_DD03P

  • How does the "Read TDMS" function work when reading part of a data file?

    Hi everyone,
    I have stored some rather large .lvm files that causing me a a big headache when trying to read/analyse the data.... As a work around I first convereted these files to .tdms.... Now the files are much smaller (50%) and can be load/plot within a couple of seconds rather than 10's of seconds.
    Specifically, the files include 7 channels of data that were sampled at 2kHz for about 8-9 mins..... So, each file contains about 700,000 data points or elements.... I am using a producer/consumer architechure to read/plot all the data, then using cursors to identify a data subset, which is send via a queue to the consumer where analysis occurs.... Given the size of the files, when subset is quite large I get "Out of Memory" errors and LabVIEW crashes.
    What I am thinking is that I can down-sample or decimate the data in the producer back to 1kHz (I need to ms resolution so I can see the spikes and can appropriately selected the subset) then index back into the original tdms file to send the undeciated data to the consumer.
    With the "Read TDMS" function, the help states:
    COUNT: Specifies the maximum number of data elements to read from the .tdms file for each channel. The default is –1.
    OFFSET: Specifies the number of data elements into the .tdms file at which the function begins analyzing the .tdms file. The default is 0.
    I am confused by the term "elements". Does this mean actual "data points" as in elements within the 2D array? Or bytes? I am hoping array elements... Would this then mean that given my 7 channels of data, each element value that is a multiple of 7 would index into a new line of data? I also assume this index is zero based... So with no offset, a count value of 0 would return all the data elements at time 0.0000s for all channels (regardless differences in the precision of each channel, unlike bytes), a value of 7 would return all the data elements at time 0.0005s, a value of 14 would return all the data elements at time 0.0010s, etc etc..
    Also, if anyone has any example code for indexing into a file using this method they could shareI would be very appreciative... I would assume a for loop could also be used to read the data subset into the consumer in smaller chunks to reduce the memory load?
    Many thanks,
    Jack

    You should have a different channel in the TDMS file.  So you are reading X elements from a channel starting at element Y.  Yes, those are elements in the array, not Bytes.  NI did a good job of making the API easy to use.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Some words are not highlighting on my read-aloud epubs after updating IOS 6.0.1 and iBooks 3.0.1

    Some words are not highlighting on my read-aloud epubs after updating IOS 6.0.1 and iBooks 3.0.1 on both my iPad 2 and iPad 3. They are working absolutely fine earlier. I even updated the latest version of iBooks 3.0.2 but nothing is working. Can anybody help?

    Hi spati,
    I ran into this problem as well.  Seems like something funky going on with iBooks 3.  Anyways, I had to tweak my read-aloud clip starts in the smil.  Where the word was not highlighting, I added a few milliseconds to the timing until the word started highlighting again.  Not the most ideal solution, and not sure what exactly causes it because 90% of the words were just fine, but it seemed to fix the problem.  Note prior to the problem happening, I had all my clip start timings = clip end timings for the previous word, so there were no gaps.
    Regards,
    Tim

  • No Sound from Adobe Read-Aloud

    I have a PC running Windows 7. I have Adobe XI and Adobe Acrobat Pro intalled. I can turn on "Read-Aloud" in either but when "Read-Aloud" is turned on and I choose to read the page, the document or just a paragraph, no sound is produced. The sound card works for all other programs. Neither Adobe program will read any .pdf file. What's wrong?

    The volume preferences were already set exactly as shown in your last message in both Acrobat Reader XI and Adobe Acrobat 9 Pro. Neither will read aloud any .pdf file. This problem was discovered on my home computer which is a 64-bit Dell computer running Windows 7. I tried "Read Aloud" on my office computer and it read .pdf files aloud. My office computer is a 32 bit machine running Windows XP. Any other suggestions?

  • Read aloud alternatives

    In acrobat pro 9 (or reader), the read aloud is pretty poor (in my humble opinion).  Is there any type of add or stand alone program that can read a PDF that sounds better?  I have played with programs like ghost reader, which do sound better, but they import a PDF into a text only file and read from that (I want to look at and read aloud at the same time the PDF).
    Thanks
    bob

    Here is the VoiceOver Utility window:

Maybe you are looking for

  • VZW Customer Service is a Joke (3332 Error Still A Huge Issue)

    I've been using an old (original) Razr flip phone, and recently had the opportunity to purchase a (never used) Razr2 that missed the 3/2011 update. Before forking over a single penny, I googled the 3332 error. It brought me to these very pages where

  • JDev9051 with MS Access

    I have developed an ADF Swing application with ADF BC4J components - only simple editable jTable. I used MS Access database and jdbc-odbc connection. With JDev905Preview everything worked fine. With jDev9051 when trying to edit field in the table fol

  • OfficeJet Pro 8600 Plus Connection Issues

    My boss stricly uses his iPad and has the Officejet Pro 8600 Plus for wireless printing. However, he's been having major problems printing.  The iPad appears to see the printer on AirPrint, but nothing is getting printed. We've tried connecting the p

  • Why do pages scroll over a navigational menu pinned to the top of my master page?

    I am trying to create a static menu bar across the top of the entire site, but all pages continue to scroll over top of this menu, regardless of arrangment etc.  How do I make page content go 'under' the nav menu pinned at the top of my master page?

  • Pass parameters to ARD

    Can I launch a viewer session in ARD from the command line? I haven't found anything and it seems like a pretty basic function. I am running a control that creates a SSH tunnel to a remote machine, and then calls the viewer automatically, passing the