Would like to make an ebook with flash videos

Hello,
I've written a 110 page book that has 50 one minute flash videos to go with it. I would like to make an e-book with the flash content and sell it over the internet. I would like to put DRM security on it. Could someone suggest what adobe product I should buy to do this?
Thanks in advance,
Kidd

Hi,
Thanks for the info about DRM. I can't afford it but someone else pointed out Acrobat 9 as the way to go to embed videos.
.Is this the right forum for questions about Acrobat 9? If not, please point in the right direction and I apologize in advance...
As I previously said, I want to embed 50 one minute flash videos into a 100 page ebook and send them out over the internet...
Right now each flash minute is 7MB. Does that mean the embedded videos will total 50 x 7MB? I imagine not but as you can see, I don't have much of an idea about all this but I would sure like to know before I buy Acrobat 9.
Thanks again in advance,
Kidd in Paris

Similar Messages

  • I would like to create a document with imbedded video, to email, and airdrop to an iPad mini. What program should I use?

    I would like to create a document with imbedded video, to email, and airdrop to an iPad mini. What program should I use?

    Thank you for using the Apple Support Communities
    I would suggest using Apple's Pages which allows support for imbedding videos from the device's camera roll. Pages also allows for sharing via email, Air Drop, and Messages.

  • I would like to make a employeemis with using java, what the eror?HELP!

    Create a class named Employee. Includes data members for Employee class :
    Data member     Data type
    Employee id     String
    Employee name     String
    Icno     String
    Gender     Char
    Date of birth     String
    Address     String
    Commencing Date     String
    Department     String
    Position     String
    Salary     Double
    Include any relevant methods for example constructor that can perform initialization for all data fields, accessor methods that return each of data field values and mutator method to set values into the data fields. Use a constructor to set each Employee id to 99999 upon object creation.
    Write another java application named EmployeeDb. Declare an array of three Employee objects.
    Your program should be able to perform the following functions:
    (a)     Prompt user to enter three Employees� information from the console and store data in an array
    (b)     Search an employee by name.
    (c)     Display all employee information by using a loop.
    This cannot save file totext file.
    So, this is my coding, i try many times but cannot to do search and display..why? who can help me solve it?
    Coding:
    import java.io.*;
    class Employee{
         private int id;
         private String name;
         private String icno;
         private char gender;
         private String dob;
         private String addr;
         private String comdate;
         private String dept;
         private String post;
         private double salary;
         // constructors
         public Employee (int a, String b, String c, char d, String e, String f, String g, String h, String i, double j){
              id = a;
              name = b;
              icno = c;
              gender = d;
              dob = e;
              addr = f;
              comdate = g;
              dept = h;
              post = i;
              salary = j;
         // overloading constructor
         public Employee (int a){
              id = a;
         // setter methods
         public void setID (int a){
              id = a;
         public void setName (String b){
         name = b;
         public void setIcno (String c){
         icno = c;
         public void setGender (char d){
         gender = d;
         public void setDob (String e){
         dob = e;
         public void setAddr (String f){
         addr = f;
         public void setComdate (String g){
         comdate = g;
         public void setDept (String h){
         dept = h;
         public void setPost (String i){
         post = i;
         public void setSalary (double j){
         salary = j;
         // getter methods
         public int getID(){
              return id;
         public String getName(){
              return name;
         public String getIcno(){
              return icno;
         public char getGender(){
              return gender;
         public String getDob(){
              return dob;
         public String getAddr(){
              return addr;
         public String getComdate(){
              return comdate;
         public String getDept(){
              return dept;
         public String getPost(){
              return post;
         public double getSalary(){
              return salary;
         // other methods
         public void displayEmployee(){
              System.out.println("ID          : " +id);
              System.out.println("NAME          : " +name);
              System.out.println("ICNO          : " +icno);
              System.out.println("GENDER          : " +gender);
              System.out.println("DOB          : " +dob);
              System.out.println("ADDRESS     : " +addr);
              System.out.println("COM DATE     : " +comdate);
              System.out.println("DEPT.          : " +dept);
              System.out.println("POST          : " +post);
              System.out.println("SALARY          : " +salary);
    /* implementation class */
    public class EmployeeMis{
         static Employee emp[]=new Employee[3];
    static int recNo;
    static int indexNo;
         public static void main(String [] args) throws Exception{
              EmployeeMis mis =new EmployeeMis();
              BufferedReader stdin=new BufferedReader(new InputStreamReader(System.in));
              int opt;
              recNo =1000;
              do{
                   mis.mainMenu();
                   opt=Integer.parseInt(stdin.readLine());
                   switch (opt){
                   case 1     : mis.addEmployee(); break;
                   case 2     : mis.srcEmployee(); break;
                   case 3     : mis.dispEmployee(); break;
              }while(opt !=0);
              System.out.println("END OF SYSTEM");
              System.out.println("THANKS YOU");
         public void mainMenu(){
              System.out.println("\n");
              System.out.println("Main Menu");     
              System.out.println(" [1] Add Employee");
              System.out.println(" [2] Search Employee");
              System.out.println(" [3] Display Employee");
              System.out.println(" [0] Exit system");
              System.out.print("Enter selection : ");
         public void addEmployee() throws Exception{
              int id;
              String name;
              String icno;
              char gender;
              String dob;
              String addr;
              String comdate;
              String dept;
              String post;
              double salary;
              BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
              System.out.println("\t\tADD Employee");
              System.out.println("\t\t+++++++++++++");
              System.out.println("\n\n");
              recNo++;
              emp[indexNo] = new Employee(recNo);
              System.out.println("New Employee ID " +recNo );
              System.out.print("Enter Name " );
              name = stdin.readLine();
              System.out.print("Enter IC No " );
              icno = stdin.readLine();
              emp[indexNo].setID(recNo);
              emp[indexNo].setName(name);
              emp[indexNo].setIcno(icno);
              indexNo++;
         public void srcEmployee() throws Exception{
              int id;
              String name;
              String icno;
              char gender;
              String dob;
              String addr;
              String comdate;
              String dept;
              String post;
              double salary;
              char pause;
              int i;
              int found = -1;
              BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
              System.out.println("\tSearch Employee");
              System.out.println("\t==============");
              System.out.print("Enter ID " );
              id = Integer.parseInt(stdin.readLine());
              for(i =0; i < emp.length; i++){
                   if (id == emp.getID())
                        found = i;     
              if (found < 0 )
                   System.out.println("\n\n\t\t Record Not Found \n\n");
              else{
                   System.out.println("Name "+emp[found].getName() );
                   System.out.println("IC No "+emp[found].getIcno() );
         public void dispEmployee() throws Exception{
              int id;
              String name;
              String icno;
              char gender;
              String dob;
              String addr;
              String comdate;
              String dept;
              String post;
              double salary;
              int i;
              BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
              System.out.println("t\tDisplay Employee");
              System.out.println("\t\t=============");
              for(i =0; i < emp.length; i++){
                   System.out.println("ID "+emp[i].getID() );
                   System.out.println("Name "+emp[i].getName() );
                   System.out.println("IC No "+emp[i].getIcno() );     
                   System.out.println( );     
    What the error exactly? Or someone have other method can write? Please help me.. thank you

    What do you mean, what's the error? That's for you to tell us. Did you try to compile it and get some error messages? Or do error messages happen when you run it? Or does it just not do what you hoped it would? In any of these three cases, you should be able to copy and paste any error messages here, or tell us what you don't like about its behaviour.
    It's impossible for us to run that code, even if we wanted to -- which we don't. You didn't post it in the CODE tags and so it's mangled and unreadable.

  • I already have an Apple ID account with 4 devices connected to it but I would like to make a new one with a desperate password for my school iPad. How do I do that?

    I already have an Apple ID account with 4 devices connected to it but I would like to make a new one with a desperate password for my school iPad. How do I do that?

    You can create a new Apple ID and password for the iPad but none of the content downloaded using the Apple ID associated with the four devices will be available on the iPad.
    Create new >   Apple - My Apple ID
    It's not possible to use two passwords with one Apple ID.

  • I've got a Iphone 3 G with IOS 4.2.1 .I would like to make an Upgrade to IOS 4.3. or better. How can I o it?

    I've got a Iphone 3 G with IOS 4.2.1 .I would like to make an Upgrade to IOS 4.3. or better. How can I do it?

    The 3G was discontinued almost 3 years ago. 4.2.1 is the end of the line for it.

  • Would like to make a SD card with my favorite pics on it to play in a digital photo frame. Is there a way to do this?

    I would like to make an SD card with my favorite pics on it for playing in a digital photo frame. Anybody know how to do this or is it not possible?

    Sure - read teh Digital Frame manual for the specs on how the photos need to to be formatted and then expor tthem to a desktop folder using those paramters and mount the card to the desktop with a card reader and drag the folder to the card
    LN

  • I would like to make a movie of me speaking while doing a power point presentation.  I have seen this done with the powerpoint embedded on the screen and the speaker doing the talking on the rest of the screen.  Is it possible to do this in iMovie?

    I would like to make a movie of me speaking while doing a power point presentation.  I have seen this done with the powerpoint embedded on the screen and the speaker doing the talking on the rest of the screen.  Is it possible to do this in iMovie?

    Scrof wrote:
    ....  Is it possible to do this in iMovie?
    sure.
    the ppt has to be some kind of 'video' iM supports.
    so export it from with MS Office as a Quicktime movie, preffered with 'Animation' codec, or as appleintermediatecodec .. for quality reasons.
    you need the Talking Head as a 2nd video.
    then use iM's Pic-In-Pic feature to combine both videos as wanted.
    I would suggest to do some editing (you full-screen, the ppt full-screen, perhaps 'close ups' of some charts, cut-aways to snoozing audience, etc) to 'pep' the video. for this purpose, it could be much esier to export each slide from within PPT as a jpeg and create the 'flow' in iM only... except, you need the ppt-animations ... but, who uses animations in a presentation anyhow ... ?

  • How is it possible to download Lion on a Macbook Air. I have the answer that "it can't be downloaded on this computer". I bought it with my previous MacBook and I would like to make DVD of it. Thank you.

    How is it possible to download Lion on a Macbook Air. I have the answer that "it can't be downloaded on this computer". I bought it with my previous MacBook and I would like to make DVD of it. Thank you.

    Check that your MBA meets the System Requirements for Lion..
    See Here under General Requirements...
    http://support.apple.com/kb/SP629

  • HELP!  I subscribed to imatch on my mac so that I could access the songs anywhere with my iphone.  However since I live in a rural community I would like to make playlists that always stay on my phone in case I don't have service.  Not sure how.

    HELP!  I subscribed to imatch on my mac so that I could access the songs anywhere with my iphone.  However since I live in a rural community I would like to make playlists that always stay on my phone in case I don't have service.  Not sure how.

    I have the same issue.  While I am sure your solution would work, my playlist has over 6,000 songs and hiting every song to download it is not very practical.  Is there another way?
    I am looking to have a subset of my music physically on my phone so that I can play it without internet access, but have access to the entire library when I do have internet access. 

  • Just got my Mac air and i would like to make a file to store some web addresses for my new business with rodan and fields and I can't do it. Made the file but i cant copy and paste the web addresses in the file to save them. Please help and thank you.

    Just got my Mac air and i would like to make a file to store some web addresses for my new business with rodan and fields and I can't do it. Made the file but i cant copy and paste the web addresses in the file to save them. Please help and thank you.

    Yes - well you have to make the file in a word processing Application.
    You could use TextEdit (it's free) Pages (words only), or Numbers (data base) (they are part of iWorks - and may or may not be free (included) on your machine.  You could use MS Office (it is not free) You could use any Open source word processor that plays well with Office (NeoOffice, StarOffice) they are free.
    That's how you create content and copy/paste URLS. Then you save the file to the desktop. If you are going to make more than one file... you make a folder on the desktop and save, or drag the file(s) into it.
    You attach it to your e-mail client which will compress it and e-mail it. An excellent reference is to use Help, from the menu bar, also from inside any application. From your library or book store the OS X for Dummies has a lot of useful information (you don't read it cover to cover but look up chapters about what you'd like to do)
    You can also make appointments at your local Apple store for individualized help (if a store is nearby)

  • I would like to make a presentation of my company with animated cartoons...wich software do I need?

    Hello, I am french, and I am so sorry for the english language.
    I would like to  present my company with animated cartoons...
    I would like to record them during the drow and then to send them to clients.
    Does somebody know a very good software to do that?
    Thanks a lot

    I would like to make some animated...: Apple Support Communities

  • HT1920 I have two accounts with iTunes, I would like to make one account out of the two?

    I have two accounts with iTunes, I would like to make one out of the two?

    Welcome to the Apple Community.
    You can't.
    You can't merge accounts or transfer content.

  • Hy, I would like to make update from snow leopard to the OX Lion. Work's the final cut express 4 work's with the OX lion? Thank you for the answer.

    Hy, I would like to make update from snow leopard to the OX Lion montain. Work's the final cut express 4 with the OX mountain lion? Thank you for the answer.

    This may help:
    https://discussions.apple.com/message/20365522#20365522
    Al

  • I have two Apple IDs - one associated with iPad and iPhone and the other associated with iMac and MacAir. I am going to lose the former e-mail address imminently and would like to associate all devices with just one ID. How do I do this? Thanks

    I have two Apple IDs - one associated with iPad and iPhone and the other associated with iMac and MacAir. I am going to lose the former e-mail address imminently and would like to associate all devices with just one ID. How do I do this? Thanks

    Thanks - I guess it is like there were two of me!
    I bought the iPhone first and it seemed natural to link it to the (work) e-mail address which was in constant use. The iMac for home use came next and it seemed natural to use my home e-mail address, particularly as I knew by then that I would lose the work address after my imminent retirement. The same logic went for the recent puchase of the MacAir. I am not sure what happened with the iPad (also a recent purchase) - iTunes seemed to puch me towards the same ID as the iPhone.
    It is not a huge problem - just makes my persona look schizoid! Otherwise very happy with everything Apple.

  • HT4009 I would like to make an in app purchase using my $20.00 credit that I have on I tunes. I am using my  i phone5. It does not give me the choice of using the credit that I have, only a credit card. How can I use the credit for the purchase??

    I would like to make an in app purchase using the $20.00 credit that I have on itunes. I am using my i phone5. It does not give me the option of using the credit that I already have, only of using a credit card. How can I use the credt that I already have instead of a credit card?

    Is Settings > General > Restrictions > In-App Purchases: ON (green)?
    Some In-App Purchases works only with credit card.

Maybe you are looking for