How do you get special symbols for typing in the mail app.

Auyone know ?

Contact the vendor or credit card company.  This is a user-to-user help forum.  We cannot assist you with this type of problem.

Similar Messages

  • HT4191 iPhone Local Storage "My iPhone" - How do you create this folder for use by the Notes app on a iPhone or iPad?  If I want to keep some notes only on my device and not in a cloud environment associated with an e-mail account.

    iPhone Local Storage "My iPhone" - How do you create this folder for use by the Notes app on a iPhone or iPad?  If I want to keep some notes only on my device and not in a cloud environment associated with an e-mail account.  I've seen reference to the  "My iPhone" local storage put no mention on how you create this folder or access this folder within the Notes app.  I realize storing information in a local storage like this provides no syncing between other iDevices but that is exactly what I'm looking for.  I'm running iOS7.0.4 on a iPhone 5S, and a iPad Air.  Any help would be greatly appreciated.

    If you go to Settings > Notes > Default Account you will see "On My iPhone" as the default account and the only choice if you have not enabled syncing Notes in Settings >iCloud or Settings > Mail, Contacts, Calendars. If you have enabled syncing you can still select "On My iPhone" as the default account. When you are in the Notes app you won't see any accounts listed if you have not enabled syncing because they are all in the On My iPhone account and that is the only place possible. It is not a folder that you create.

  • How do you get USB debugging for AIR iOS working?

    How do you get USB debugging for AIR iOS working?
    Here is my current configuration:
    Flash Builder 4.6
    Flex 4.6.0 (build 23201) with AIR 3.3 Beta and Flash 11.3 Beta playerglobal.swc (both merged in to the current Flex build)
    Flex 4.6 release: http://www.adobe.com/devnet/flex/flex-sdk-download.html
    AIR 11.3 Beta: http://labs.adobe.com/technologies/flashplatformruntimes/air3-3/
    Flash Player 11.3 Beta: http://labs.adobe.com/downloads/flashplayer11-3.html
    I read through the Flash Player 11.3 and AIR 3.3 release notes (http://labsdownload.adobe.com/pub/labs/flashplatformruntimes/shared/air3-3_flashplayer11-3 _p1_releasenotes.pdf) and this is all that is stated:
    USB debugging for AIR iOS iOS developer can now connect directly? to the desktop via USB to debug mobile applications.
    Every other feature seems to have a description of how to accomplish it other than USB debugging for AIR iOS.
    Anyone else get this working?
    The main reason I want to get this working is because our IT department is very strict on our firewalls and it is relatively hard to open the required ports to debug on our own devices through the network.

    I've found one way of doing it using command-line on Windows.  I'm sure someone will make it easier by building it into something like a FlashDevelop template soon.
    Steps are...
    1. Add a "-listen 7936" param to the packager.  Something like, "adt -package -target -debug-interpreter .... -listen 7936". Install IPA on device.
    2. Find out the handle of your iOS device by running "lib\aot\idb\idb -devices".  In my case it is "2". Will look something like...
    List of attached devices
    Handle    UUID
        2    {your UUID here}
    3. Forward the local_port to the remote_port for the device_handle.  Something like "lib\aot\idb\idb -forward 7936 7936 2".
    4. Start Flash Debugger in another command prompt from your FlexSDK directory.  Something like "flexsdk\bin\fdb -p 7936".
    5. Run your app.
    6. Type the "(fdb) run" command in the debug command line.
    7. May need to type "(fdb) continue".
    Hope that helps.

  • I have a 120gb Classic that has no space left on it. i am going to buy a larger gb capacity ipod as soon as i get clearer instruction on how to get the old ipod content to the new ipod. How do you get content from one ipod to the other?

    how do you get content from one ipod to the new one? my content is on an external hard drive not on my pc and i have run out of space on my 120gb classic. can you get old ipod content to new? my itunes has only got short cuts, the real content is on an external drive? can this be done?? please help

    If the content is on an external drive, but your library knows where to find it, then it should all work. Connect your device, make some selections for what to put on it, and sync. If, on the other hand, your current iPod is the only place holding some of your media then see this user tip: Recover your iTunes library from your iPod or iOS device.
    tt2

  • Content Holder How do you get css class to appear in the wysiwyg editor? The only option is "clear class".

    Need an answer to my question: How do you get css class to appear in the wysiwyg editor? The only option is "clear class".

    Liam,
    If it's not supported there, then where can I access the css and do you have any recommendations for a simple app to change the css style?

  • How do you get fontmetrics before displaying something on the screen?

    Let me ask in another way:
    how do you get fontmetrics before displaying something on the screen?
    Edited by: tjacobs01 on Aug 24, 2008 12:03 PM

    and you call getGraphics() it returns nullI learned to not use the getGraphics() method. Check out my posting here where I ask what the getGraphics() method is good for:
    [http://forums.sun.com/thread.jspa?threadID=5233274&messageID=9954741|http://forums.sun.com/thread.jspa?threadID=5233274&messageID=9954741]
    Also, c.getFontMetrics(c.getFont()) will be an NPE because Font is initially null.Maybe I don't understand the question. The following works for me:
    import javax.swing.*;
    public class Test
         public static void main(String args[])
              JTextField textField = new JTextField();
              System.out.println(textField.getFontMetrics(textField.getFont()));
    }Every question should have a SSCCE, so we don't have to guess.

  • How do you get word count to print at the end of a document in Pages?

    How do you get word count to print at the end of a document in Pages?

    Pages v5 does not provide a user assignable word count variable. With some AppleScript, and a paste operation from the clipboard, you can have locale punctuated word count in this format: 7,803 — anywhere in your document. The following AppleScript works with Pages '09 v4.3 through Pages v5.5.2 on Yosemite.
    I would suggest that you copy paste the following AppleScript into your [Apple] Script Editor and save it (suggestion) wordcnt.applescript. Then, follow this with an option+Save As… and this time set the File format to Script Bundle, or Application with hidden extension — saved to your Desktop. Provided you have a Pages document open, you are then a double-click from the ability to paste your current word count into Pages.
    Note: If you have Pages word count display enabled, it will automatically count your pasted value as another word which initially may deceive on true word count at the time the script was run.
    AppleScript
    --- copy below this line ---
    property locale : "en_US.UTF-8" -- In Terminal, use the locale command to see yours
    if not ApplicationIsRunning("Pages") then
         display dialog "Pages must be running to use this utility."
         return quit
    end if
    tell application "Pages"
        tell body text of front document
            set wordCnt to count words
            -- Don't want punctuated numbers? Remove the single quote from printf format
            set the clipboard to (do shell script "export LC_ALL=" & locale & "; printf \"%'d\" " & wordCnt)
        end tell
    end tell
    on ApplicationIsRunning(appName)
         tell application "System Events" to set appNameIsRunning to exists (processes where name is appName)
         return appNameIsRunning
    end ApplicationIsRunning

  • Background noise removal takes about 3 seconds into each clip in timeline to kick in, so each clip has noise in the first few seconds.  How do you get this to remove noise from the very start of the clip?

    Background noise removal takes about 3 seconds into each clip in timeline to kick in, so each clip has noise in the first few seconds.  How do you get this to remove noise from the very start of the clip?

    insert a 5 second gap in the beginning of the timeline.

  • How do you get your content in front of the right people?

    "Outbound Content Marketer of the Year, Joe Chernov (VP of content at HubSpot) told me: Marketers always ask me how to make more or better content, and it’s almost always the wrong question. The right question is: “How do I get my content in front of the right people?” - Forrester's Ryan Skinner
    Forrester published a very interesting report in October called "Put Distribution at the Heart of Content Marketing" (here's the related Forrester blog post). My VP shared the report with me and asked me to review and research a key content distribution strategy potentially leveraging the key technologies that are listed in the report. These technologies focus on helping identify influencers, publish content on targeted media properties and publish content if it ranks highly. I have to admit, this is somewhat new territory for me - I've yet to really focus on content distribution strategies across the entire buyer/customer lifecycle and although I've used one or two of these technologies personally, others I've only heard of and some I just flat-out had to Google.
    In true intrapreneurial spirit, I starting working through the research phase - I'm actually still working through it - and as I do, I can't help but to start mentally creating a blueprint of sorts... Imagining our technology roadmap interwoven with a content distribution strategy to create and drive a valuable buyer/customer experience (to acquire, keep and grow, of course). Ideally, we'd be able to accomplish all of the above points to significantly - and intelligently - extend our reach moving forward. So, back to the the Forrester report... To help more holistically drive content distribution, Forrester recommends creating a "distribution boss" and linking that person to content creation. I like it. To even further boost success of content marketing initiatives, Forrester suggests: (and I'm paraphrasing liberally here):
    1. Your distribution boss needs to be a left-brained analyst with a right-brained way with words
    2. Borrow some $$ from your content creation budget for some content promotion
    3. Encourage a BFF relationship between your PR and media teams and your content marketing teams
    Bottom (or should I say "top") line? I'm looking forward to our organization developing a more scientific content distribution strategy in 2014. Can I get an "amen!"? So, what are you and your teams doing to take a more scientific approach to content distribution in 2014? Or what are you currently doing? I look forward to Topliners feedback!
    Cheers!
    Kristin
    P.S. Technologies currently under review:
    - Include your influencers in a distribution strategy: Little Bird, Klout, PeerIndex
    - Look to specific vendors to push content on publisher’s sites: Outbrain, Sharethrough, Taboola
    - Identify social content winners and invest to amplify reach on the networks that work: SimpleReach
    - Keep an eye on emerging technologies for content visibility and distribution: TrendSpottr
    - Others: Parse.ly
    CC: marilyncox

    Alessia,
    I agree! In our current blog consolidation project, we're implementing Google Authorship for all our bloggers and we're currently evaluating how to best leverage Deltek's Google+ channel w/in our content strategy. Our PR/Social Director is not a fan - I'm working on, I mean with, her to see the possibilities.

  • How do you get Cloud storage to back up the SD Card?

    My daughter S3 died and had to be replaced. Lost all the data and apps that were stored on the phone's internal memory. With the replacement phone, I set up the cloud storage for back up offered by Google but it only accessed the data on the phone's main memory and not the separate SD Card that is installed. How do you get the Cloud app to also back up the SD card data?

        NDBeartrap, Let's help get your daughter's info back! If the info was backed up the cloud, you would be able to download it back to the device. Can you verify that there is info on the sd card? this can be done by inserting the sd card into a reader w/adapter or phone that is compatible. Please let us know what happens.
    sheritah_vzw
    Follow us on Twitter
    @VZWSupport

  • How do you get to your apn settings on the iPhone 4s

    How do you get to your APN settings without jail breaking your phone

    take a look at the link 
    ios: viewing and editing apn  http://support.apple.com/kb/HT2283

  • How do you get Skype to work on ipad2?  Have app, but will not open.

    How do you get Skype on ipad2?  Have app, but it will not open.

    Lydia...
    Hold the Skype app icon down until it jiggles then tap the x then tap Delete.
    Now go to the App Store and re download Skype.
    To receive notifcations from Skype tap Settings > Notifications
    If you don't have a Skype account, after you tap the app you should be prompted to set one up.
    You will need to purchase Skype credit in order to send SMS or make calls.

  • How could you create 'Last Time Contacted' Smart Mailbox in Mail app Lion?

    Hello!
    For the purposes of maintaining regular contact with a large group of contacts in your address book:
    How could you create a smart mailbox in the Mail App (Lion) which contained that last unique sent/received email from each individual contact?
    So ideally just the last email per contact. For my purposes I would then sort by date and find the contacts I havent emailed in a while and re-initiate conversation.
    I also thought that perhaps it would be possible through Automator? (I am not very familiar with how to use this app)
    Any ideas/solutions would be very appreciated!
    nmarks
    (running lion 10.7.4 macbook pro late 2011)

    Okay, I think I just discoverd a workaround. This will work if you're lucky enough to already have a smart-mailbox folder that persists after close. (Somehow I had two such folders that already existed and weren't subject to the mysterious disappearances on closing the app; perhaps I created them in a previous OS X release?) Anyway, here goes:
    Locate an already existing smart mailbox folder that's working properly. Select the folder (in the sidebar).
    Duplicate that folder using the "Duplicate Smart Mailbox" Command. (It's on the contextual pop-up menu or available via the gear icon in the lower left of the window). This should produce and exact copy of the folder and the boxes inside, appearing at the bottom of the smart mailbox list.
    Edit the duplicate folder to put the smart mailboxes you want in it, and delete the previous mailboxes (duplicates) that you don't want.
    The new folder structure should now persist between launches of the app.
    There you go. Not the most elegant process, but workable. Don't know if there's a method if you don't have at least one smart mailbox folder already though.

  • How do i sign out of my acount on the mail app then sign in again?

    i set up the mail app on my ipod touch, then changed my password via my pc , now it wont let me send or recieve mail because the password it has is incorrect, but i dont know how to sign out and in again, or enter my new password , any sugestions?

    Did you try to change you password on the ipod in Settings/Mail,Contacts../Accounts?
    If changing the password does not help, you'll have to delete the existing account and set it up again.
    You can also use the option to replace your account info on the ipod during the following sync. This can be found in the info pane, advanced section with your ipod connected to iTunes. But for security reasons you might have to fill in the password as well.

  • How do you get a refund for an app that was purchased through the new App Catalog for a WebOS app!

    Hi,
    I just purchased a Dictionary app from Palm's App Catalog, the product is listed as: English Dictionary and Thesarus by Ultralingua, Inc. and it was not something that was advertised correctly and hence is not something that I want.
    It costs a whopping $9.99 and if it was as advertised, it would have been worth the money but it is not.
    I've had Dictionaries on my Palm Devices so when I saw the first directory for the WebOs for use on Pre, I immediately got it.
    However, unlike my old Palm dictionaries, this dictionary requires you to have a network connection.  Something that is not useful for me.  I sometimes like to look up word while on the subway to work (I live in NYC) where this is no network connection.
    There was nothing in the description that said it 'required' a network connection, and considering that all of the dictionaries I have gotten in the past did not require a network connection, I assumed (since it didn't state anything) that I could use it off-line.
    Heck, since you are required to use this dictionary online, I might as well use google to lookup a word and that is free!
    So I believe I was tricked into getting this app, and I want a refund!
    And there doesn't seem to be a way to get a refund for an app that did not disclose it's requirements before I made my purchase.
    Thanks for you help in finding out how to get a refund when its needed!
    Rob
    Post relates to: Pre p100eww (Sprint)

    Palm does have the ability to remove apps remotely, that was added in the last update.
    I knew that would be Palm's response, but I earn you now, Palm better make sure they put a better description on these apps.  And in this case its Palm's fault for not disclosing that this app required network support in order to work.
    They should at least make that part of a feature description.
    This is the second app that I purchased that was not advertised correctly.  So I far I have spent good money on crap only because the descriptions did not contain the right info.
    I see the only solution is to make all apps have at least a one hour free trail, or whatever free trial you want.
    I and I'm sure I'm not alone can't keep purchasing stuff that either doesn't work as advertised or is misleading in the description.
    I mean really Palm, you approved a dictionary app that just does a google in the background and displays the definition.
    I can do that same thing by typing it on my Pre and hitting Google?
    I still feel cheated and ripped off.
    I signed up for Palm and WebOS because I wanted to give you a second chance but that love only goes so far.  I think Andriod will be in my life soon.  I can't stand by and let myself be taken advantage of.
    I just can't believe how angry and upset I AM over this.
    Rob

Maybe you are looking for

  • TS4002 Icloud data restore from one Apple ID to another?

    I had to replace my 4S with another.  I originally set up icloud on phone "1" (now not working) to back up contact, data, etc with a specific Apple ID.  The person who set up icloud on phone "2" used a different aApple ID.  How do I get the data from

  • Functional Specification

    Hi Experts,          Can i know from where can I get the field information of Attendance of the entire month from 1st until 30/31st of the month. If the employee is General absent/ LOP it should be displayed as A, Present it should be displayed as P

  • Functionmodule for document check in CRMD_ORDER?

    Hi Everybody, does anybody know about a functionmodule which give as returning parameter if a ticket in the CRMD_ORDER has documents or not? Regards Ali

  • Downloading photos from fast UDMA Comp.flash to macbook/ipad

    How can I Download photos from fast UDMA Comp.flash to mu macbook pro/ipad. The ipda comes with aSD reader accessory but not CF especially UDMA fast Cflash. Some UMA readers have firewire but my macbook does not have firewire and the IPAD does not ev

  • New BarCode Type to print Brazil Boleto forms

    Hi We have requirement to print BOLETO form with Bar Code for Citi Bank Brazil. As per Citi Bank manual provided, we need to print the Bar Code with bar code type "INTERCALATED type 2 of 5". But in SAP, when we create new custom bar code(ex. ZBAR2) u