Looking for an author to write a book on Flash CS5

I'm searching for a qualified individual(s) who might be interested in writing an intermediate-advanced level book for the retail market. Please contact me directly for more information at [email protected]  Thanks so much!

For just +processing words+ (aka "writing"), you can even use the pre-installed TextEdit.
It uses the built-in Mac OS X spell-checking and dictionary features. You can change fonts and formatting in the typical ways. It has find and replace features. You can save files in the plain text, standard RTF (rich text format), PDF, or even Microsoft Word format.
What more do you need for writing (without some bloated mega-program with ten toolbars getting in the way of your creativity)?

Similar Messages

  • Looking for iBooks Author vendor

    Looking for iBooks Author vendor to create multiple books based on an existing template. The books are operative techniques for the orthopaedic surgery industry. Need an idea of cost to outsourse. Here are the specs:
    7 chapters
    the first page of each chapter is an overview of the chapter that includes hyperlinks to each step in the operative technique
    total of 44 pages
    each page has at least one video widget (some pages have two), a photo gallery widget plus a static image and text
    glossary index with 100 entries that include text and photos (would love to find someone who can program including collada 3-D images into the glossary. but that is a nice to have, not a need to have)
    all images require resizing for the ibook (they are print images)
    all videos require compression for the ibook
    half of the pages have 3-d collada files
    heavy typesetting is required
    three pages include large interactive images with 20 labels
    Looking for estimates to present to the company on the cost to outsourse as well as find possible vendors to talk to and provide more detail.
    thanks.

    i apologize. here is my contact email if anyone is interested in talk more about this.
    [email protected]

  • Looking for a comprehensive online tutorial or book

    Hello Guys!
    I am looking for a comprehensive online tutorial or book that would contain all steps involving java web application development.
    For example, it would be cool if it would contain requirement definition, design, implementation, etc. and how all that is applied to java web application development. Also, it would be neat if it would provide templates regarding diagrams for each stage of the development.
    I thank you guys in advence for your help,
    John

    Thanks benubach!
    There appears to be a lot of information but it seems
    that most of it is simply a Java tutorial. Maybe I
    simply can't quite find the particular doc on that
    page.
    I am interested in a web program development guide
    including how each of the steps (requirement
    definition, design, implementation, etc.) in the
    process are created. It also be nice if the info
    would focus on using java/jsp in the implementation
    of each of steps in the process.
    Thanks,
    JohnI doubt such a document exists. I was hoping to find something similar that didn't resolve around a trivial case, but gave up after a while. This seems to be something that is learned more with working with others as well as reading many little things and building on each other.

  • Looking for a good beginner/intermediate Java book

    Hello everyone,
    I am looking for a good beginner/intermediate Java book. I have taken a couple of Java classes (Beginner programming + beginner Java) and have a fairly good understanding of the basics. What I want is a book that is going to build on that as well as give me some good practical problems to work on while I'm doing so. Can anyone recommend one or two good books that would fit the bill?
    Thanks!

    Those three books are all excellent, but are all beginner books. When it comes to intermediate books I think you need to go topic by topic.

  • Since Flash CS6 Is not supported for OSX 10.8, can cloud members have Flash CS5?

    Since Flash CS6 Is not supported for OSX 10.8, can cloud members have Flash CS5?
    I see that Flash CS6 is not supported (http://helpx.adobe.com/flash/kb/mountain-lion-support-flash-professional.html ) . My coworkers and I are not able to see some fonts and the colorpickers are not working properly as mentioned at the URL.
    Can you make the previous version of Flash available for download and use with cloud membership just for this OS X 10.8 issue.
    It'd be more of a hassle for us to revert back to an older OS then to just get an extra older version of Flash on our system.
    Thanks ahead,
    -Line

    flash looks like the only adobe victim: http://www.adobe.com/products/creativesuite/faq.html#lion-os

  • Looking for a way to write a BufferedImage to a file

    i am currently working with images and transforming them. the image is stored as a BufferedImage object and i was wondering if anybody knows how to write the image back as a new file after its been modified.
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.ImageIcon;
    import javax.swing.JSlider;
    import javax.swing.event.ChangeListener;
    import java.awt.Graphics;
    import java.awt.Image;
    import java.awt.BorderLayout;
    import java.awt.image.BufferedImage;
    public class ExampleFramework extends JPanel {
    private BufferedImage originalImage;
    private BufferedImage filteredImage;
    private JSlider slide = new JSlider(1, 50, 25);
    private int height, width;
    ExampleFramework(String titlebar) {
    createBufferedImages();
    setUpJFrame(titlebar);
    private void createBufferedImages() {
    Image image =
    new ImageIcon("test.jpg").getImage();
    height = image.getHeight(null);
    width = image.getWidth(null);
    originalImage =
    new BufferedImage(width, height,
    BufferedImage.TYPE_INT_RGB);
    filteredImage = new BufferedImage(width, height,
    BufferedImage.TYPE_INT_RGB);
    Graphics g = originalImage.createGraphics();
    g.drawImage(image, 0, 0, null);
    g.dispose();
    this class is not complete but it should give you an idea of the problem am having. there are 2 buffered images and all am looking for is a way to write the contents of the bufferedimage to a file

    First, I get rid of Image:
    private void createBufferedImages() {
        BufferedImage image = ImageIO.read(new File("test.jpg"));
        int targetType = BufferedImage.TYPE_INT_RGB;
        originalImage = convertType(image, targetType);
        filteredImage = new BufferedImage(image.getWidth(), image.getHeight(), targetType);
    static BufferedImage convertType(BufferedImage src, int targetType) {
        if (src.getType() == targetType)
            return src;
        BufferedImage tgt = new BufferedImage(src.getWidth(), src.getHeight(), targetType);
        Graphics2D g = tgt.creategraphics();
        g.drawRenderedImage(src, null);
        g.dispose();
        return tgt;
    }(I don't know how important type RGB is to you, so I put in a convert routine.
    If these images are primarily for viewing, I would make them compatible
    with the screen by using method createCompatibleImage.
    As for writing an image, it can be one line of code:
    imageIO.write(bufferedImage, "jpeg", file);See ImageIO[url].

  • Looking for a company to write Labview compatible software

    Extech Instruments is a manufacturer of hand held test instruments (www.extech.com) . Along with our proprietary products we also import and private label a number of instruments from the far east. Many of these instruments have custom RS232 software available that allow them to communicate with a Windows XP compatible PC via the serial port.
    We are looking at being able to offer these instruments with LabView compatible software/drivers? that would allow our users to integrate the instruments into their data acquisition systems.
    We are looking for a company that would be able to take the existing instrument and software and do the programming so that we can offer a finished product with a LabView Compatib
    le �label� on it.
    If you know of such a company please let me know.
    Thanks.

    Hi Scott,
    I am the National Manager of Neo Vista Systems Integrators Pty Ltd, a National Instruments Alliance Member. We have extensive experience in providing "LabVIEW compatible" drivers for several companies in the same position as yours - developing a package that your customers can use to communicate with custom hardware, and have a great deal of experience with liasing with National Instruments in the creation of fully compatible code and licensing. All of the technical specialists that work on driver development are National Instruments Certified LabVIEW Developers (see here for more information of the CLD qualification), so they know LabVIEW back-to-front, and as they use LabVIEW drivers themselves, they know what structures and functionality that your customers are after. I'd like to hear more about you and your application. You're welcome to email me at [email protected] � also, please feel free to browse our website, as it will give you a better understanding of our expertise, previous products, and corporate direction: www.nvsi.com.au. If you'd like, I'd be happy to provide you with example code and documentation to demonstrate our skills in driver production.
    Looking forward to hearing from you,
    Christopher
    PS: Several US customers are particularly happy with the project developmental time zone difference between Australia and the US, as whilst we provide a project manager that can be contacted 24hrs, the code development is carried out while you sleep - therefore any changes you request at the close of business can often be delivered to you email inbox by the next morning.
    Christopher G. Relf
    Certified LabVIEW Developer
    National Manager - Australia
    Neo Vista System Integrators Pty Ltd
    [email protected]
    Phone: +61 2 9817 8813
    Fax: +61 2 9879 4527
    EULA
    1) This is a private email, and although the views expressed within it may not be purely my own, unless specifically referenced I do not suggest they are necessarily associated with anyone else including, but not limited to, my employer(s).
    2) This email has NOT been scanned for virii - attached file(s), if any, are provided as is. By copying, detaching and/or opening attached files, you agree to indemnify the sender of such responsibility.
    3) Because e-mail can be altered electronically, the integrity of this communication cannot be guaranteed.
    Copyright © 2004-2015 Christopher G. Relf. Some Rights Reserved. This posting is licensed under a Creative Commons Attribution 2.5 License.

  • Looking for a way to create Contact Sheets in InDesign CS5..

    I am looking for an easy way to make a Contact Sheet template in InDesign CS5, I am wondering can it be done using Live Captions? What I essentially want to do is create a page with a grid, say 3 across 3 down, and be able to simply import the photos, and have the photo's name appear below it.
    Thanks in advance for your reply,
    Sebastian

    http://layersmagazine.com/indesign-cs5-live-captions.html

  • Write to file??? looking for a solution to write file to the server

    Dear all,
    Since most browsers forbid all file access, so is there is another way to write file to server in applet??? or is there an alternative using combination of JSP??
    Thank you for your attention,
    Dan

    If you have access to the server you are writing the file to then you could have your applet collect information and send it to the server in a form. Then write a bean or other class that handles it and writes it to the server.

  • I am looking for R.A.Salvatore's latest book, "The Companion" but can not find it.  Does the Apple bookstore NOT carry all the new releases?

    I just want to know why some books are not carried by the iBooks store?  I wanted to buy the latest R.A. Salvatore book, "The Companion" but could not find it at the store.  This is the second time I wanted to buy a book that the store did not carry.  I just wonder why?  And is there a way I can use, "Nook for IPad" to get the books I want?

    Apple can only sell in a particular country what the book publishers grant them licenses to sell - if the publisher of that book hasn't done so, then Apple can't sell it.
    Depending upon what country that are in, and therefore what apps and stores that you have access to (most ebooks have DRM which tie them to the store's own app), then you could try Amazon/Kindle, Nook, or Kobo etc and see if they have it

  • Looking for Director author in Dallas area

    I have been trying to find a Director Author in the Dallas
    area, but haven't found one yet. Does anyone know of
    someone?

    Amith wrote:
    > Can I do it via internet?
    > Contact me use email and MSN: [email protected]
    > Thanks.
    I do Director projects locally as well as in collaboration
    with people in
    different parts of the world. Working remotely is not that
    difficult in
    today's age. However, there are still times when someone
    local is vital to
    the project co-ordination and outcome.
    regards
    Dean
    Director Lecturer / Consultant / Director Enthusiast
    http://www.deansdirectortutorials.com/
    http://www.multimediacreative.com.au
    email: [email protected]

  • Looking for HP Authorized Partner

    Windows Server DHCP Server Migration – Two Issues from the FieldThis personal blog re-post is by Michael Hildebrand , and it documents 2 very real scenarios which he encountered during Windows Server 2003 migrations.
    Windows Server DHCP Server Migration – Two Issues from the FieldMany of my large, enterprise customers haveDHCP servers that were deployed over a decade ago, humming along on some flavor of the Windows Server 2003 OS (WS 2003).For the most part, those DHCP services have been pretty much dial-tone over the years but with the end of support coming for WS 2003 (that date is July 14, 2015, by the way), they are migrating the service to a newer OS version.TOPIC #1 – existing DHCP-registered DNS records get deleted when you disable/delete the scope on the old DHCP serverTOPIC #2 –DHCP authorization details in ADare showing up...

    Skype TX Launches All New Control SoftwareWe’re excited to announce that Skype TX controller, our softwarewhich gives broadcasters and content producers the ability to control andmanage multiple Skype TX unitsfrom a single UI, has been updated, and now includes all new features thathelps broadcasters create new innovative content.This includes live video previews, remote setting controls, and integrationwith Skype Contacts. Providing you have the latest version of the clientsoftware, you can download the new Skype TX controller for free from here
    Skype TX is a software package designed for use in Television productionstudios and other professional environments that enables you to send Skypecalls as SD/HD-SDI video with embedded or balanced analogue audio, providingthe best call quality available in an HD video format. Skype TX can: ...

  • Looking for previous post!! Windows update causing flash to not work?

    A few days ago i finally fixed my problem where some automatic updates from windows caused flash to not work on some videos.  I uninstalled these updates, but can't find the question/answer that helped me with my solution.  It had to do with uninstalling 2 windows updates, KBsomething... can anyone direct me to that post??

    Was it this post?
    http://forums.adobe.com/message/4865912#4865912

  • Looking for Authors

    Our team is looking for co-authors for an upcoming book series. If you
    have the following attributes, please do not hesitate to contact us.
    1. U.S. Citizen
    2. Knowledge of networking, handhelds, EAI, data warehousing,
    security, or streaming
    3. Prior published book or magazine author
    4. Currently employed in a full-time capacity with either a Big Five
    Consulting firm or working for a Fortune 500 company (Not in
    consulting role)
    Please send a BIO of yourself to [email protected] In the meantime,
    visit http://groups.yahoo.com/group/computerbookauthors

    Our team is looking for co-authors for an upcoming book series. If you
    have the following attributes, please do not hesitate to contact us.
    1. U.S. Citizen
    2. Knowledge of networking, handhelds, EAI, data warehousing,
    security, or streaming
    3. Prior published book or magazine author
    4. Currently employed in a full-time capacity with either a Big Five
    Consulting firm or working for a Fortune 500 company (Not in
    consulting role)
    Please send a BIO of yourself to [email protected]. In the meantime,
    visit http://groups.yahoo.com/group/computerbookauthors

  • I am looking for a USB 2.0 Flash Drive with a fast read/write speed as possible

    Around a price of $100 or less.
    I am looking for either a 64 GB of 128 GBs Flash drive OR a very small portable USB 2.0 ( if available would prefer FW800 connection) hard drive that I can conveniently carry on my with complete system and data on it. I would like the portable hard drive to be less than $200, if possible.
    All ideas for this ard welcome.
    I am just looking for a solution that is fairly easy to carry in a pants pocket that I can use to boot up on Macs of my various friends.
    Thanks everybody.

    Around a price of $100 or less.
    I am looking for either a 64 GB of 128 GBs Flash drive OR a very small portable USB 2.0 ( if available would prefer FW800 connection) hard drive that I can conveniently carry on my with complete system and data on it. I would like the portable hard drive to be less than $200, if possible.
    All ideas for this ard welcome.
    I am just looking for a solution that is fairly easy to carry in a pants pocket that I can use to boot up on Macs of my various friends.
    Thanks everybody.

Maybe you are looking for