I am making a Conference/Event program book.  Are there mac programs or apps that could help me design this?

I am making a Conference/Event program book.  Are there mac programs or apps that could help me design this?

    I can see that this issue has been quite extensive, and frustrating, and I am so sorry for all that has happened societygirl! I would like to help you work this issue out. Please follow & send me a Direct Message, so I can get your account specifics and help finally bring this to a resolution.
Thank you,
MichelleH_VZW
Follow us on Twitter @VZWSupport

Similar Messages

  • Looking for a reading App.  iPad (iOS 7.1.2) - Kindle.  I am looking for a good app that can help a college student with reading books that cannot be found on audio book. Voice over works, but monotone!

    Looking for a reading App.
    iPad (iOS 7.1.2) - Kindle.
    I am looking for a good app that can help a college student with reading books that cannot be found on audio book.  I have tried voice over and it works but it's very monotone and it really strings things together. 
    - I'm willing to pay for a good app but I can't seem to sort though the many that are out there. Any suggestions.

    Ah. I'm surprised, but there we go.
    Have a look here ...
    http://jam.hitsquad.com/vocal/about2136.html
    (courtesy of googling 'OSX free multitrack recording software')
    Didn't have time to do more than skim, but 'Ardour' looked promising. Protools is the only one I've used, the full product is one of the industry standards, but the free 'lite' version listed here seems to be limited to 2 in/out as well.
    Referring to your original post, I'd think trying to write or 'script' something would be a nightmare ... synchronisation of streams within something like Applescript would be a major issue, quite apart from anything else.
    G5 Dual 2.7, MacMini, iMac 700; P4/XP Desk & Lap.   Mac OS X (10.4.8)   mLan:01x/i88x; DP 5.1, Cubase SX3, NI Komplete, Melodyne.

  • What other videos and books are there? that you suggest. for step by step . Jeannette

    What other videos and books are there? that you suggest. for step by step .
    Jeannette

    The various Lynda.com video tutorials are very good, but you have to pay for a description.  The Photoshop User TV podcasts are excellent; there are hundreds of them, and they are free.  They are also what the iPad was invented for.
    The 'You suck at Photoshop' videos on YouTube are both very funny and very instructive. 
    The Scott Kelby books are very good for folk starting out.  The Martin Evening, and the Martin Evening/Jeff Schewe books are as good as they get from a photography point of view.  The Steve Caplin books are the best Photoshop books once you get into it, but Scott Kelby and Matt Kloskowski do some great medium to advanced books.  Matt's Compositing Secrets is excellent, and was Amazon's best Photoshop book for a while.

  • I have a iPod Nano, when it is connected to my laptop all my songs and books are there but when it is disconnected from laptop, some books and songs are missing from the library

    I have a iPod Nano, when it is connected to my laptop all my songs and books are there but when it is disconnected from laptop, some books and songs are missing from the library

    I have a simlar issue like this when loading my movies to my iTouch. iTunes says that all of your wanted content is sync and your iPod says that all content wasn't synced, is that what you are saying?

  • I would like to disable the phone jack for my mac book pro, it is a disappointment that this feature is not currently accessible . hopefully it will be with the following os x system software up date but until then is there anyone that could help me ?

    I would like to disable the phone jack for my mac book pro,
    it is a disappointment that this feature is not currently accessible .
    Hopefully it will be added with the following os x system software up date.
    until then is there anyone that could help me ? please and thank you ...

    John Galt wrote:
    Have you checked System Preferences > Sound > Output?
    Or are you interested in a phone modem adapter?
    http://www.amazon.com/Apple-MA034Z-External-V-2-Modem/dp/B000C6TLDO/
    ds store wrote:
    It's a Ethernet port, not a phone jack.
    Two good points, in which case I believe the ethernet port can be disabled, (it can on my Pro);
    System Preferences> Network> Ethernet>.........
    Highlight the Ethernet option and click the gear icon at the bottom of the panel. There should be an option to, Make service inactive.....

  • Any one could help me with this soap client program?

    Any one could help me with this soap client program?
    Below is the request format my partner is expecting to see:
    POST /Service.asmx HTTP/1.1
    Host: 192.168.1.1
    Content-Type: text/xml; charset=utf-8
    Content-Length: length
    SOAPAction: "https://api.abcdefg.com/GetList"
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
              xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
         <soap:Body>
              <GetList xmlns="https://api.abcdefg.com/">
                   <username>string</username>
                   <password>string</password>
              </GetList>
         </soap:Body>
    </soap:Envelope>The java client I wrote is blow:
    import javax.xml.soap.*;
    import java.util.Iterator;
    import java.net.URL;
    import java.io.*;
    public class Client {
        public static void main(String [] args) {
            try {
                SOAPConnectionFactory soapConnectionFactory = SOAPConnectionFactory.newInstance();
                SOAPConnection connection = soapConnectionFactory.createConnection();
                SOAPFactory soapFactory = SOAPFactory.newInstance();
                MessageFactory factory = MessageFactory.newInstance();
                SOAPMessage message = factory.createMessage();
             // addd SOAPAction;
             MimeHeaders hd = message.getMimeHeaders();
             hd.addHeader("SOAPAction", "https://api.abcdefg.com/GetList");
                // get env and body;
                SOAPPart soapPart = message.getSOAPPart();
                SOAPEnvelope envelope = soapPart.getEnvelope();
             SOAPBody body = envelope.getBody();
                Name bodyName = soapFactory.createName("GetList", "", "https://api.abcdefg.com/");
                SOAPBodyElement bodyElement = body.addBodyElement(bodyName);
                //Constructing the body for the request;
             SOAPElement username = bodyElement.addChildElement("username");
             username.addTextNode("1234567");
             SOAPElement password = bodyElement.addChildElement("password");
             password.addTextNode("7654321");
                System.out.print("\nPrinting the message that is being sent: \n\n");
                message.writeTo(System.out);
                System.out.println("\n\n");
                URL endpoint = new URL ("https://api.abcdefg.com/Service.asmx");
                SOAPMessage response = connection.call(message, endpoint);
                connection.close();
                response.writeTo(System.out);
            }catch (Exception e) {
                 System.err.println("ERROR: ******* " + e.toString());
    }The response my partner's server returned is:
    <faultstring>Server did not recognize the value of HTTP Header SOAPAction:. </faultstring>I used similar code to access the web services provides via tomcat, it works fine...however, for this .NET services it does not work.
    By the way, I also have another version of the clirnt, using JDOM to construct a XML request and wrap with axis message. I got the same error message as above.
    Can anyone point out something for me?
    Any kind of comments will be appreciated!!
    Edited by: Nickolas.Chen on May 6, 2008 7:20 PM

    You will need to Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • I have Photoshop CC and I'd like to make an event flyer.  Are there any tutorials, templates, help???

    I have Photoshop CC and I'd like to make an event flyer.  Are there any tutorials, templates, help???

    Since your question is about Photoshop, I've moved it to the Photoshop General forum.

  • HT1267 I have been unable to sync my address book on my IPHONE, trying to sync the changes, I erased address book from my phone. I seem unable to re-establish the address book from my Mac on my phone! Please help!! thanks

    I have been unable to sync my address book on my IPHONE, trying to sync the changes, I erased address book from my phone. I seem unable to re-establish the address book from my Mac on my phone! Please help!! thanks

    Try the .Mac Sync forum - its probably more appropriate to your issue.
    http://discussions.apple.com/forum.jspa?forumID=957

  • If I buy a new mac book can I re download the apps that I have already paid for and downloaded on my current mac book?

    If I buy a new mac book can I re download the apps that I have already paid for and downloaded on my current mac book?

    Yes.  Log into MacAppStore with the AppleID that purchased them.

  • When I open my iBooks my books are there I can open and read, but when I go to the store nothing is showing up so I can't search or purchase new books

    WHen I open my iBooks all of my books are there I can open them and read, but when I try to go to the store nothing will come up, I can't do any searches it appears that there is no connection. I have tried uninstalling and reinstalling but nothing works!

    Basics from the manual are restart, reset, restore.
    http://manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf

  • Are there any applications which assist in writing Help Books?

    Apple has some really good documentation on writing help books, and one can use any HTML editor to write them. However, there are certain standards and unique features that aren't supported by a generic HTML editor, like making sure the Bundle has a consistent format, the info.plist is valid and contains all of the necessary information, etc.
    I figured there must be at least one application out there that would provide such features as well as be a decent HTML editor.

    Primarily as an HTML editor...depends on the use - there are tons of add-ons for BBEdit (and TextWrangler), tho, and I don't know your skill level, budget, exact needs etc. so it's up to you to research based on those.
    Again, the field is sparse, if for no other reason than each writer's needs tend to be very specific. I use a basket of tools, depending on content, etc. Will the content be used for multiple deployments? Print only? In-house trained users? Multiple languages? Re-doing legacy content? Updated live? iOS only? Does it require 508 compliance?
    Good luck.

  • The text in a lot of my books I have downloaded in IBooks has disappeared. It is mostly the older books on my IPad.  The books are there but the text is missing. How do I get the text back?

    On my IPad, the books I have downloaded are there; however, the text has disappeared. It only happened with the books that were older. Any idea how I can get the text back on these books?

    Try closing the iBooks app. Press the home button to get to the home screen if you're not already there. Then double click the home button. Locate the iBooks icon at the bottom. Hold your finger down on it until a red minus appears. Tap the red minus. Press the home button to return to normal. Then relaunch iBooks.
    If that fails, delete the books, then you can redownload them under the Purchased tab in "Store."

  • I have Kindle books on iPad that I didn't download from Amazon.  How can I get these books on my Mac Pro Kindle app

    I have Kindle books on iPad that I didn't download from Amazon.  They are also on iCloud.  How can I get these books onto Mac Pro Kindle app?

    Contact iTunes Store Customer Service.
    tt2

  • My books are not downloading from the app to my device

    I have a app called fiction and when I buy the books they dont download.

    I don't find an app called "Fiction". I see apps with fiction in the name so exactly what is the name of the app?
    Typically you cannot download any content onto the iPad other than through the App store, iTunes or iBooks  - although in the case of downloading ebooks, that would be handled in a web browser and you would need an account in order to download that content within that app. For instance if you use the Kindle App, the content is managed via your amazon.com account.

  • The latest version of flash player is installed and yet none of the programs that use it can find or access it. I am running Windows 7. Is there anything in the Registry that could be blocking flash player from being accessed or used?

    The subject is the question. Files with flv extensions cannot be run or identified. Other software that uses flash player such as Rhapsody, can't find or use it either. It feels like a registry problem. Please do not waste time suggesting I uninstall and reinstall flash player as I have done than several times with no improvement or solution.

    Flash Player is a plugin, and typically used by browsers (and sometimes other software.)  Flash, by itself, won't open flv files.  Instead you'd load those files into your web browser and it would load Flash to render them.
    I don't know if Rhapsody uses the ActiveX or NPAPI versions of Flash Player.  Which do you have installed?  You can check this by going into the Programs and Features control panel and looking for the Adobe Flash Player entry(s).  It'll say NPAPI, PPAPI, or ActiveX at the end.

Maybe you are looking for

  • Home Movie Cataloging - BEST PRACTICES

    I have about 200 hours of old home movies on VHS which I am in the process of adding to my iMac. I am wondering about 'best practices' on how much video can be stored inside of iMovie '08, when how much video becomes too much inside of the program, e

  • Error while Inserting data into flow table

    Hi All, I am very new to ODI, I am facing lot of problem in my 1st interface. So I have many questions here, please forgive me if it has irritated to you. ======================== I am developing a simple Project to load a data from an input source f

  • HP Officejet Pro 8500A photo print quality is terrible

    If I print using the default of plain paper, change the quality to high and actually use plain paper, the quality is acceptible.  However, if I use photo paper, whether I change the paper setting to HP Photo Paper, Other Photo Papers, or leave it at

  • IBCM not working after SCCM 2012 R2 Upgrade from SP1

    Just upgraded to CM2012 R2 from SP1, 1 primary site and 1 internet facing MP for IBCM in DMZ - both are on Server 2008 R2.  PKI has already been setup and was functional before upgrade.  After R2 upgrade, my internet clients cannot communicate. CcmMe

  • SAP Best Practices Installation (Baseline Package US 1.604)

    Hi All, I need to setup a 4 system landscape of SAP ECC 6.0 EHP4 with the SAP Baseline Package (Best Practices for Country US - V1.604). Landscape is as below: Sandbox - (1 client) - Configuration Sandbox Development - (2 clients) - Config. Master an