How do you save account login information on Playbook browser favorites

Just got the new playbook. BlackBerry 16GB PlayBook 1716101    
One thing I wanted to use it for was for a lot of banking sites and other sites which require an id and password. With my laptop I can seem to set my browser to save the cookies and when I go to the site all I need to do is remember my password. With the Playbook, I go to these sites,  put in the acct info and password...request browser to remember this id ( so I don't have to type in 16 character acct #'s every time). It asks me a skill testing question and you would think you are saved. 
The next time I go in to these accounts....gone. It really takes the good out of the browsing experience if you have to make 25 -30 keystrokes to get to the site you want. This is true of banking accounts, and other sites which ask for an id and passowrd. It can not seem to ever remember me.
Thanks for any tips!   Is there some setting I am missing here in my setup or settings/

I thought I was doing something wrong until I decided to check the support forum.
Not saving name/password info is ridiculous! As others have mentioned, having to re-enter banking login info every time in a real pain.
I can see RIM not saving the info as a security precaution, but at least give us the choice.
RIM dev's... please fix this!!! (or at least make it an option, even if it's set to no by default).

Similar Messages

  • How can you save an app's data?

    Hi, how can you save an app's data? For example, if I want to switch some applications on my iPod with those were on my iTunes Apps Library, iTunes will force to remove the apps that was on my device and sync the apps that I want onto my iPod. But once the app is removed from my iPod, its data will be erased too, so, for example months later, I want to put them back onto my iPod, I will lose all the apps data and games progress. So, I just want to know the way that people save their apps data.

    Yo can't. apps are locked to the account thatpurchased them and in-app purchases can only be mad with the account that originally purchased the app.
    You will have to recover use of the first account
    How do I change or recover a forgotten Apple ID Password?
    If you've forgotten your Apple ID Password or want to change it, go to My Apple ID and follow the instructions. SeeChanging your Apple ID password if you'd like more information.
    If necessary:
    Forgotten Security Questions/Answers
    You need to contact Apple by:
    1 - Use the Express lane and start here:
    https://expresslane.apple.com
    then click More Products and Services>Apple ID>Other Apple ID Topics>Forgotten Apple ID security questions.
    or
    Apple - Support -form iTunes Store - Contact Us
    2 - Call Apple in your country by getting the number from here:
    http://support.apple.com/kb/HE57
    or           
    Apple ID: Contacting Apple for help with Apple ID account security
    3 - Use your rescue email address if you set one up
    Rescue email address and how to reset Apple ID security questions
    For general  information see:
    Apple ID: All about Apple ID security questions
    If you have not uses any of the $10 you redeemed to the new account, you can likely get that refunded by contacting iTunes
    Contact iTunes

  • How do you remove credit card information from your Apple ID

    How do you remove credit card information from your Apple ID.?  My dad was using my iTunes for awhile and he put his credit card on it and now, everything I want to buy something on the App Store or on iTunes, it asks for my dad's credit card information.  I want that taken off.  I just got some iTunes cards that I want to use but it won't let me

    Do you mean the App store? Both iTunes and the App store use what ever is set up on your appleID, be it credit card or iTunes card. Its the same account.

  • How do you save "game state" so the user can continue next time?

    I'm not sure what the correct game terminology is for this, but how do you save "game state" so the user can continue next time?
    This seems like a pretty important feature for building some games, we don't want users to have to start over everytime.
    Any ideas if this is possible?

    Check out my blog post on the PersistenceManager:
    http://www.unitedmindset.com/jonbcampos/2010/11/01/flex-4-5-persistencemanager/
    This will help you understand how to store the data. When the app starts up again get the state information from the persistencemanager and reset you game to the state you need. It requires a bit of code for the startup, but it is relatively simple.

  • How can you save keynote slides as high resolution (300 dpi) images?

    Apparently there is a way to save powerpoint slides as 300 dpi images, with some finagling, but not the mac version.  Does anyone know how to do this in keynote?  Or is there a relativley easy way to do it with free/cheap software?  I can increase the dpi in photoshop, but it doesn't produce crisp images for obvious reasons.

    how can you save keynote slides as high resolution (300 dpi)
    to save individual images from each slide in Keynote;     file > export > images > TIFF (for optimum quality)
    You are using the wrong terminology to describe creating an image file
    - dpi ( meaning dots per inch )  is the measurement used in printing to create the number of print dots per inch that will be deposited on to physical media like paper or film   This is done in the printer settings box of the print driver and is dependant on how the individual printer can print..
    ppi ( meaning pixels per inch ) is the measurement you need to use when creating the number of pixels in a digital image file. You establish image resolution in Keynote using the inspector;     
    Keynote > inspector > document > slide size
    I can increase the dpi in photoshop, but it doesn't produce crisp images for obvious reasons.
    You can resample images in editing applications such as Photoshop or Painter but what you are doing is adding non image information to the image to increase pixel count, this is called noise. As you state this is not the procedure to use in your situation.

  • How do you save a transformed image?

    Windows Store App 8.1.
    I have an image that the user has rotated, scaled and clipped etc.  How do you save the transformed image?
    There are solutions of the forums but these use the System.Media.Imaging library that isn't available, classes like the TransformedBitmap etc. are not available. 
    I'm playing around with this approach but the decoder throws a "The image format is unknown"; 
    imageManipulation is UIElement.Image.
    Any ideas on how to achieve the saving of a Transformed image in a 4.5.1 8.1 store app?
    RenderTargetBitmap rtb = new RenderTargetBitmap();
    await rtb.RenderAsync(imageManipulation, (int)imageManipulation.ActualWidth, (int)imageManipulation.ActualHeight);
    IBuffer buffer = await rtb.GetPixelsAsync();
    using (InMemoryRandomAccessStream ras = new InMemoryRandomAccessStream())
    await ras.WriteAsync(buffer);
    await ras.FlushAsync();
    BitmapDecoder dec = await BitmapDecoder.CreateAsync(BitmapDecoder.BmpDecoderId, ras);
    Rob

    Hi,
    You can use BitmapEncoder to apply transforms such as scaling and cropping, set metadata and properties, and edit pixels while preserving any unedited
    data. After transform the data, you can copy the contents from the in-memory stream to the original file’s stream and close all of the streams. That make you can save the encoded image to the file:
    memStream.Seek(0);
    fileStream.Seek(0);
    fileStream.Size = 0;
    await RandomAccessStream.CopyAsync(memStream, fileStream);
    fileStream.Dispose();
    memStream.Dispose();
    You can see the link to get more information:
    https://msdn.microsoft.com/en-us/library/windows/apps/xaml/jj709937.aspx
    Best Wishes!
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • How do you save voice memos

    How do you save voice memos, and use them as ringtones or text tones?

    From the Users Guide:
    Syncing Voice Memos
    iTunes syncs voice memos to your iTunes library when you connect iPod touch to
    your computer. This lets you listen to voice memos on your computer and provides a
    backup if you delete them from iPod touch.
    Voice memos are synced to the Voice Memos playlist. iTunes creates the playlist if it
    doesn’t exist. When you sync voice memos to iTunes, they remain in the Voice Memos
    app until you delete them. If you delete a voice memo on iPod touch, it isn’t deleted
    from the Voice Memos playlist in iTunes. However, if you delete a voice memo from
    iTunes, it is deleted from iPod touch the next time you sync with iTunes.
    You can sync the iTunes Voice Memos playlist to the Music app on iPod touch using
    the Music pane in iTunes.
    Sync the Voice Memos playlist to iPod touch:
    1 Connect iPod touch to your computer.
    2 In iTunes, select iPod touch in the Devices list.
    3 Select Music at the top of the screen.
    4 Select the “Include voice memos” checkbox and click Apply.
    Some users have had to create the Voice Memos playlist since it did not get automatically created.

  • How do you save a web PDF to the iPad2?

    How do you save a web PDF to the iPad2? I want to have a camera manual on my iPad.

    In Safari, click on the PDF link and from the context menu choose Open in New Tab. Then click on the tab: The PDF opens in Safari. At the upper right click on Open In, and from the menu choose Adobe Reader.

  • How can you save a draft SMS on X3-02 ?

    How can you save a draft SMS on X3-02 ? 
    Can't seem to find an option to do this  ...  Lost message typed half way  when I got out of the editor to check the calendar.
    Am I missing something or has Nokians obsoleted this function on the latest S40 platform ?
    Solved!
    Go to Solution.

    Hi all,
    Like sudude here pointed out that's one way of leaving text as "draft" to message editor. Or you can also select Options > More > Exit editor to do the same. And, next time when you select Create message that previous text should be there as it was left.
    But there is also another option to start writing SMS's - with Notes application. Select Menu > Apps > Notes. Write a note and save it. Then for that note select Options > Send note > Send as message. Now your note is copied to message editor and you can send it or further edit and then send. Neat thing here is that when you use Notes application, text can be saved for later editing or use.
    -ThreeOs

  • How do you save a report from VB?

    Post Author: calvin
    CA Forum: .NET
    How do you save an updated Crystal Report (CRXI) from a VB.Net (2005) program?
    We're using the ReportDocument object model, not the CrystalViewer
    & it appears there's a SaveAs method but not Save.Worse, the SaveAs doesn't seem to work. I get a convoluted error message that essentially says the file is in use, even when I'm saving it to a new filename. (The file it's referring to is the copy of the original file in the Temp directory.) I can post a screen capture of the entire error message if anyone thinks it will be useful.
    Thanks.

    Post Author: calvin
    CA Forum: .NET
    "Curiouser and curiouser. said Alice." I feel like I'm in Wonderland-the SaveAs works for some reports, but not for others. The task is to create an application consisting of a VB.Net program and a set of reports. The reports must be able to be run 'stand-alone' in Crystal Reports XI, and also to be run under control of the VB program. The report output is to go to PDF, not to be viewed online. It's absolutely amazing, to me, how little support there is for this type of thing. Why? Possibly it's considered simple-and it seems like it should be, except that some reports won't run under control of the VB program. When I got involved there had been a database change so the problem initially appeared to be running the VerifyDatabase command. (The reports being tested ran fine after they'd been fixed up in Crystal-but this wasn't expected to be the last database change so there was still a need for a programmatic fixup.) After running the VerifyDatabase command in the VB program the 'fixed' report couldn't be saved to verify that the report had been fixed-and it still wouldn't run. Now, I'm leaning towards the idea that the database change was a red herring. We've found some reports that have been fixed up but still won't run. Mostly they just 'hang'. If we get any output at all (usually after killing the application) it's the same record reported over and over. Anybody got any ideas?

  • HT4972 how do you save everything on your ipod touch before updating ios 6.1.2?

    How do you save everything on your ipod touch before updating ios 6.1.2. ?

    Follow these instructions. When you restore from backup as the article says the iPod will also be updated.
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities

  • How do you save your photos in iPhoto and be able to find the photos when you are in different programs. When i try to find them I can only find the iPhotos not the individual photos.

    How do you save your photos in iPhoto and be able to find the photos when you are in different programs. When i try to find them I can only find the iPhotos not the individual photos.

    Use the media browser. In every open/attach window in tithe lower left hand corner under media ==> photos ==> iPhoto
    LN

  • How do you save Pages documents so that someone can read them when e-mailed to a pc

    How do you save pages documents so that someone can read the docs when e-mailed to their PC, do I need to format the doc first ? Or save as??

    Hit File > Export... and choose Word Document.
    Hope it helps!

  • TS4002 how do you save email attachments on the ipad?

    how do you save email attachments on the ipad? particularly ebooks sent via email

    JanieHaas wrote:
    How do you save your notes permanently on the iPad? I have been taking notes on it and realized that after a week or so, my notes are deleted
    Teh notes are sync'd to your mail app on your computer.

  • How do you find out what information is in the 'other' section of itunes when iphone is connected

    How do you find out what information is in the 'other' section on the bottom of itunes

    You don't
    If it is much more than a gb or so, then it indicates corrupt files.  A restore should resolve.

Maybe you are looking for

  • IPhoto Browser option is not showing up in import menu

    Hi, The iPhoto Browser option is not showing up in the drop down import menu in my Aperture 3.4.3.  What gives?  I want to do some targeted photo imports from my iPhoto 9.4.2. Mac Pro, Mac OS X (10.7.5), Aperture 3.4.3

  • Using read() to get byte and readLine to get textline at the same socket

    Hi: I know that readLine is used in BufferedReader and read is used in BufferedInputstream, but can I read some lines by readline, then read some byte by read. Because InputStreamReader is used to change from Inputstream to Reader ,how can I change f

  • X11 crash everytime on every app

    Below is the crash log for X11. To get it to crash is easy; just start X11 from the utilities folder then go to menu applications and select any of xterm, xlogo, or xman. Nothing happens. But if you go to the logs you get the below crach log. PLEASE

  • CFGRID not displaying

    Hi All, I have a simple query which is returning 2 rows and I am trying to display the results in grid using cfgrid. And it throws objected expected error @ CF_RunContent('<object id=\'finalPayment\' classid=\'clsid:D27CDB6E-AE6D-11cf-96B8-4445535400

  • Can I write in the layout  in any Key figure something else then number ?

    Hi (sem - bps) Can I write in the layout  in any Key figure something else then number ? Let say I want to right in the key figure number with CHAR (the letters a-z) Can I do so ? Can a key figure  has char other then number ?