Can't find email Set Up anywhere!!! Pls help!!

I have a Black Berry Bold, and i want to set up yahoo mail, Hotmail on it.
But i can't find the button anywhere!
I followed the instructions on You Tube's step by steps, but on the You Tube video appeared an "Email set up" icon on the "set up" selection.
But my Black Berry didn't have that icon.
Next i tried the set up wizard, but it only let me choose Enterprise Activation mail for exchange Accounts.
What can i do?
Please someone help me! 

Hi and Welcome to the Forums!
To use the proprietary RIM Push email capability, you must have an adequate data plan from your carrier. The carriers host BIS for their BB users. Typically, BIS is not available via generic data plans. Many carriers call what is necessary The Blackberry Data Plan. Whatever they call it, it is the carrier who delivers BIS to their BB users -- contact them for assistance. Once you have a BIS-capable data plan on your BB (at whatever fees your carrier will charge, btw), you will then have Personal Email added to the email setup wizard.
Good luck!
Occam's Razor nearly always applies when troubleshooting technology issues!
If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
Join our BBM Channels
BSCF General Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • I Can't Find The Problem!! pls help (ONLY IF U HAVE SOME FREE TIME)

    I'd like to post some code because I cant see the problem, maybe somebody else will see it. Just take a little look if u see some detail let me know pls.
    I have a class word, wich is actualy a representation of a word in some text
    public class Word {
    int timesInText; //how many times this word is in the text
    //A vector with the lines were the word appears
    public Vector<Integer> lines = new Vector<Integer>();
    public String word; //The word we are representing... Very creative Isn't it?
    //The lines were the word appear in a string in this format : , line, line, line...
    StringBuffer Stringlines = new StringBuffer(":");     
    public Palabra(String word) {
    this.word = word;          
    timesInText=1;
    public void wordFinded(int linea) {        
    lines.add(linea);     
    Stringlines.append(", " + linea);     
    timesInText++;     
    public String toString() {        
    String var = word + ": " + Stringlines.toString();
    return var;
    }//End of the word class
    I have a class main, wich is a window with the logic of the program, notice that
    I'll provide only the necesary thing to understand my problem in order to make
    my post shorter. The words I read can't have duplicates but I must say in wich
    lines the duplicates are.
    public class main{
    Vector<Word> words = new Vector<Word>(); //A vector for all the words in text
    JText area = new JTextArea(); //The JTextArea of my window
    public void getWords(){
    JFrame wordsInText = new JFrame("Word Search:");
    JTextArea wordsArea = new JTextArea("\tResult :");
    wordsInText.getContentPane().add(new JScrollPane(wordsArea));
    boolean alreadySeen;
    String text = area.getText();
    String line;
    String word;
    Word wordBeingRead;
    int lines = 0;
    BufferedReader br = new BufferedReader(new StringReader(text)); //To read complete text
    while ((line = br.readLine()) != null)
         lines += 1;
    StringTokenizer st = new StringTokenizer(line, " "); //But line by line
    while (st.hasMoreTokens())
    alreadySeen = false;
    word = st.nextToken();
    wordBeingRead = new Word(word);
    Iterator iter = words.iterator();
    if(!iter.hasNext()) //The first word! save it
    words.add(wordBeingRead);
    else //Yeah... not the first word... Check it...
    Iterator iterAux = palabras.iterator();
    while(iterAux.hasNext()) //Check if it's already defined
    Word p = (Word) iterAux.next();
    if(wordBeingRead.word.equals(p.word)) //It is already defined...
    wordBeingRead.wordFinded(lines); //I got one on line (lines)
    alreadySeen=true; //Yes! It's already seen
    if(alreadySeen==false) //If it's already seen wont get in here
    words.add(wordBeingRead); //A new word! Let's save it
    Iterator iter = palabras.iterator(); //Ok I saved all the words, time to print them
    while(iter.hasNext())
         wordBeingRead = (Word)iter.next();
         wordsArea.append("\n" + WordBeingRead.toString()); //Put them over here
         wordsInText.setSize(400, 400);
    wordsInText.setLocation(100, 75);
    wordsInText.setVisible(true); //Yes! show them
    }catch(Exception e){
    label.setText(e.getMessage()); //If anything goes wrong
    }//End of the class main

    Ok, sorry about that.
    Post your code between code tags (use the code button when you post a reply).I'm new in the forum and the tags doesnt seem to work with netscape, will use IE next time.
    you should not have a main class. You should have a main method inside a class eg:The original name of the class is Ventana, but you can actually name a class main.
    Also, your constructor should have the same name as your class eg:The constructor in the word class it's written like that because I translated the code to english so that it could be more simply to understand.
    4. If you don't get errors tell us what you expect your code to do and what it IS actually doing.Ok I'll give you a sample input and output:
    INPUT:
    "I am sorry for not posting correctly
    I will make sure this wont happen again
    I will be a good user"
    OUTPUT I'm getting:
    I: :
    am: :
    sorry: :
    for: :
    not: :
    posting: :
    correctly: :
    will: :
    make: :
    sure: :
    this: :
    wont: :
    happen: :
    again: :
    be: :
    a: :
    good: :
    user: :
    OUTPUT I would love to have:
    I: 1, 2, 3
    am: 1
    sorry: 1
    for: 1
    not: 1
    posting: 1
    correctly: 1
    will: 2, 3
    make: 2
    sure: 2
    this: 2
    wont: 2
    happen: 2
    again: 2
    be: 3
    a: 3
    good: 3
    user: 3
    I just noticed that I get the double : : Because I do it twice... ^^
    Thanks for the recomendations, and I'm sorry, totally my fault, I mean it.

  • When I use the search box I would like results to show up in a "NEW" tab but I can't find this setting anywhere... Any solution???

    When I use the search box I would like results to show up in a "NEW" tab but I can't find this setting anywhere... Any solution???

    '''browser.search.openintab''' userset boolean True
    Also in Google search, upper-right-corner settings
    You can always force opening a link into a tab with Ctrl+click or Ctrl+Shift+click
    If you want the same from a bookmark make sure to set
    : '''browser.tabs.loadBookmarksInBackground''' to same value as you have for
    : '''browser.tabs.loadInBackground'''
    The last setting is controlled by Tools > Options > Tabs >
    :: When I click on a link, switch to it immediately,
    which control the difference between Ctrl+click and Ctrl+Shift+click
    Items in boldface''' can be set in about:config
    * '''More information on configuration variables''' available in [http://kb.mozillazine.org/About:config_entries about:config entries] and for users not familiar with the process there is [http://kb.mozillazine.org/About:config about:config] (How to change).
    Reading:
    * http://dmcritchie.mvps.org/firefox/keyboard.htm
    * http://dmcritchie.mvps.org/firefox/tabs_config.htm

  • I can't find the set up sync button

    I know this is stupid but I can't find the set up sync button. I want to transfer the bookmarks from my old PC and have read how to do it but when I click on the orange Firefox button top left of my screen the only option appears to be sync now. Any help will be gratefully received. Thanks Joe

    If you see sync now then this means that Sync is already installed on that computer and working.
    *https://support.mozilla.org/kb/add-a-device-to-firefox-sync
    *https://support.mozilla.org/kb/firefox-sync-troubleshooting-and-tips
    Did you create a new sync account or used the previously used email and password and sync key?
    Note that sync isn't supposed to be used as a means of transferring data from one computer to another, so you need to be careful with not overwriting data stored on the Sync server.
    Check the Sync options when you have used Sync before and want to keep previously stored data on the Sync server.
    * click the "Sync Options" button at the bottom to select what to sync (Sync Options only affect the first sync)
    Select this choice if you want to restore data from the Sync server:
    * "Replace all data on this device with my Sync data"
    You can also copy files to an USB stick to transfer them to another computer.
    *https://support.mozilla.org/kb/Recovering+important+data+from+an+old+profile
    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)

  • I get the "Fast Browser Plugin not loaded" message every time i run  safari and I can't find an MTWB folder anywhere on my hard drive?

    I get the "Fast Browser Plugin not loaded" message every time I run  Safari and I can't find an MTWB folder anywhere on my hard drive?  This doesn't seem to be causing a problem, but is a puzzle?

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. All it does is to collect information about the state of the computer. That information goes nowhere unless you choose to share it. However, you should be cautious about running any kind of program (not just a shell script) at the request of a stranger on a public message board. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them. Ask for other options.
    Here's a summary of what you need to do, if you choose to proceed: Copy a line of text from this web page into the window of another application. Wait for the script to run. It usually takes a few minutes. Then paste the results, which will have been copied automatically, back into a reply on this page. The sequence is: copy, paste, wait, paste again. Details follow.
    4. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    5. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    6. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin; clear; Fb='%s\n\t(%s)\n'; Fm='\n%s\n\n%s\n'; Fr='\nRAM details\n%s\n'; Fs='\n%s: %s\n'; Fu='user %s%%, system %s%%'; AC="com.autodesk.AutoCAD  com.google.GoogleDrive"; H='^[[:space:]]*((127\.0\.0\.1|::1|fe80::1%lo0)[[:space:]]+local|(255\.){3}255[[:space:]]*broadcast)host[[:space:]]*$'; NS=networksetup; PB="/usr/libexec/PlistBuddy -c Print"; A () { [[ a -eq 0 ]]; }; M () { find -L "$d" -type f | while read f; do file -b "$f" | egrep -lq XML\|exec && echo $f; done; }; AT () { o=`file -b "$1" | egrep -v '^(A.{16}t$|cann)'`; Ps "${1##*/} format"; }; Pc () { o=`grep -v '^ *#' "$2"`; l=`wc -l <<< "$o"`; [[ l -gt 25 ]] && o=`head -n25 <<< "$o"`$'\n'"[$((l-25)) more line(s)]"; Pm "$1"; AT "$1"; }; Pm () { [[ "$o" ]] && o=`sed -E '/^ *$/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/(\/Users\/)[^/]+/\1-/g' <<< "$o"` && printf "$Fm" "$1" "$o"; }; Pp () { o=`$PB "$2" | awk -F'= ' \/$3'/{print $2}'`; Pm "$1"; }; Ps () { o=`echo $o`; [[ ! "$o" =~ ^0?$ ]] && printf "$Fs" "$1" "$o"; }; R () { o=; [[ r -eq 0 ]]; }; SP () { system_profiler SP${1}DataType; }; id -G | grep -qw 80; a=$?; A && sudo true; r=$?; t=`date +%s`; clear; { A || echo $'No admin access\n'; A && ! R && echo $'No root access\n'; SP Software | sed -n 's/^ *//;5p;6p;8p'; h=(`SP Hardware | awk '/ Id/{print $3}; /Mem/{print $2}'`); o=$h; Ps "Model"; o=$((h[1]<4?h[1]:0)); Ps "Total RAM (GB)"; o=`SP Memory | sed '1,5d;/[my].*:/d'`; [[ "$o" =~ s:\ [^O]|x([^08]|0[^2]|8[^0]) ]] && printf "$Fr" "$o"; o=`SP Diagnostics | sed '5,6!d'`; [[ "$o" =~ Pass ]] || Pm "POST"; p=`SP Power`; o=`awk '/Cy/{print $NF}' <<< "$p"`; o=$((o>=300?o:0)); Ps "Battery cycles"; o=`sed -n '/Cond.*: [^N]/{s/^.*://p;}' <<< "$p"`; Ps "Battery condition"; for b in FireWire Thunderbolt USB; do o=`SP $b | sed -En '/:$/{s/ *:$//;x;s/\n//;s/\n.*//;/\)/p;};/^ *(V.+ [0N]|Man).+ /{s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};/Apple|Genesy|Intel|SMSC/{s/.//g;h;}'`; Pm $b; done; o=`pmset -g therm | sed 's/^.*C/C/'`; [[ "$o" =~ No\ th|pms ]] && o=; Pm "Thermal conditions"; o=`pmset -g sysload | grep -v :`; [[ "$o" =~ =\ [^GO] ]] || o=; Pm "System load advisory"; o=`nvram boot-args | awk '{$1=""; print}'`; Ps "boot-args"; fdesetup status | grep -q On && o=on || o=; Ps "FileVault"; a=(/ ""); A=(System User); for i in 0 1; do o=`cd ${a[$i]}L*/Lo*/Diag* || continue; for f in *.{cr,h,pa,s}*; do [[ -f "$f" ]] || continue; d=$(stat -f%Sc -t%F "$f"); [[ "$f" =~ h$ ]] && grep -lq "^Thread c" "$f" && f="$f *"; echo "$d ${f%%_2*} ${f##*.}"; done | sort | tail`; Pm "${A[$i]} diagnostics"; done; grep -lq '*$' <<< "$o" && printf $'\n\t* Code injection\n'; o=`syslog -F bsd -k Sender kernel -k Message CReq 'caug|GPU |hfs: Ru|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|timed? ?o|WARN' -k Message Ane 'SMC:' | tail -n25 | awk '/:/{$4=""; $5=""};1'`; Pm "Kernel messages"; o=`df -m / | awk 'NR==2 {print $4}'`; o=$((o<5120?o:0)); Ps "Free space (MiB)"; o=$(($(vm_stat | awk '/eo/{sub("\\.",""); print $2}')/256)); o=$((o>=1024?o:0)); Ps "Pageouts (MiB)"; s=( `sar -u 1 10 | sed '$!d'` ); [[ s[4] -lt 85 ]] && o=`printf "$Fu" ${s[1]} ${s[3]}` || o=; Ps "Total CPU usage" && { s=(`ps acrx -o comm,ruid,%cpu | sed '2!d'`); n=$((${#s[*]}-1)); c="${s[*]}"; o=${s[$n]}%; Ps "CPU usage by process \"${c% ${s[$((n-1))]}*}\" with UID ${s[$((n-1))]}"; }; s=(`top -R -l1 -n1 -o prt -stats command,uid,prt | sed '$!d'`); n=$((${#s[*]}-1)); s[$n]=${s[$n]%[+-]}; c="${s[*]}"; o=$((s[$n]>=25000?s[$n]:0)); Ps "Mach ports used by process \"${c% ${s[$((n-1))]}*}\" with UID ${s[$((n-1))]}"; o=`kextstat -kl | grep -v com\\.apple | cut -c53- | cut -d\< -f1`; Pm "Loaded extrinsic kernel extensions"; R && o=`sudo launchctl list | awk 'NR>1 && !/0x|com\.(apple|openssh|vix\.cron)|org\.(amav|apac|calendarse|cups|dove|isc|ntp|openld|post[fg]|x)/{print $3}'`; Pm "Extrinsic daemons"; o=`launchctl list | awk 'NR>1 && !/0x|com\.apple|org\.(x|openbsd)|\.[0-9]+$/{print $3}'`; Pm "Extrinsic agents"; o=`for d in {/,}L*/Lau*; do M; done | egrep -v 'com\.apple\.(CSConfig|server)' | while read f; do ID=$($PB\ :Label "$f") || ID="No job label"; printf "$Fb" "$f" "$ID"; done`; Pm "launchd items"; o=`for d in /{S*/,}L*/StartupItems; do M; done`; Pm "Startup items"; sys=`pkgutil --regexp --only-files --files com.apple.pkg.* | sort | uniq | sed 's:^:/:'`; b=`sed -E '/^.+Lib.+\/Contents\/Info.plist$/!d;s/\/Info.plist$//;/Contents\/./d' <<< "$sys"`; l=`egrep '^/usr/lib/.+dylib$' <<< "$sys"`; [[ "$b" && "$l" ]] && { o=`find -L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Compon,Ex,In,iTu,Keyb,Mail/B,P*P,Qu*T,Scripti,Sec,Servi,Spo}* -type d -name Contents -prune | grep -Fv "$b" | while read d; do test -f "$d/Info.plist" || continue; ID=$($PB\ :CFBundleIdentifier "$_") || ID="No bundle ID"; printf "$Fb" "${d%/Contents}" "$ID"; done`; Pm "Extrinsic loadable bundles"; o=`find /usr/lib -type f -name *.dylib | grep -Fv "$l"`; Pm "Extrinsic shared libraries"; :; } || echo $'\nReceipts missing'; o=`for e in INSERT_LIBRARIES LIBRARY_PATH; do launchctl getenv DYLD_$e; done`; Pm "Inserted dylibs"; o=`find -L {,/u*/lo*}/e*/periodic -type f -mtime -10d`; Pm "Modified periodic scripts"; o=`scutil --proxy | grep Prox`; Pm "Proxies"; o=`scutil --dns | awk '/r\[0\] /{if ($NF !~ /^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./) print $NF; exit}'`; i=`route -n get default | awk '/e:/{print $2}'`; I=`$NS -listnetworkserviceorder | sed -En '/ '$i'\)$/{x;s/^\(.+\) //p;q;};x'`; n=`$NS -getdnsservers "$I" | awk '!/^T/{printf "not "; exit}'`; Ps "DNS (${n}from DHCP)"; o=`$NS -getinfo "$I" | awk '/k:/{if ($3 !~ "(255\.){3}0") print $3}'`; Ps "Netmask"; R && o=`sudo profiles -P | grep : | wc -l`; Ps "Profiles"; f=auto_master; [[ `md5 -q /etc/$f` =~ ^b166 ]] || Pc $f /etc/$f; for f in fstab sysctl.conf crontab launchd.conf; do Pc $f /etc/$f; done; f=/etc/hosts; Pc "hosts" <(egrep -v "$H" $f ); AT $f; Pc "User launchd" ~/.launchd*; R && Pc "Root crontab" <(sudo crontab -l); Pc "User crontab" <(crontab -l); R && o=`sudo defaults read com.apple.loginwindow LoginHook`; Pm "Login hook"; LD="$(`find /S*/*/F* -type f -name lsregister | head -n1` -dump)"; o=`for ID in $AC; do [[ "$LD" =~ $ID ]] && echo $ID; done`; Pm "Application check"; Pp "Global login items" /L*/P*/loginw* Path; Pp "User login items" L*/P*/*loginit* Name; Pp "Safari extensions" L*/Saf*/*/E*.plist Bundle | sed -E 's/(\..*$|-[1-9])//g'; o=`find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) | wc -l`; Ps "Restricted user files"; cd; o=`SP Fonts | egrep 'id: N|te: Y' | wc -l`; Ps "Font problems"; o=`find L*/{Con,Pref}* -type f ! -size 0 -name *.plist | while read f; do plutil -s "$f" >&- || echo $f; done`; Pm "Bad plists"; d=(Desktop L*/Keyc*); n=(20 7); for i in 0 1; do o=`find "${d[$i]}" -type f -maxdepth 1 | wc -l`; o=$((o<=n[$i]?0:o)); Ps "${d[$i]##*/} file count"; done; o=; [[ UID -eq 0 ]] && o=root; Ps "UID"; o=$((`date +%s`-t)); Ps "Elapsed time (s)"; } 2>/dev/null | pbcopy; exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    7. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste (command-V). The text you pasted should vanish immediately. If it doesn't, press the return key.
    8. If you see an error message in the Terminal window such as "syntax error," enter
    exec bash
    and press return. Then paste the script again.
    9. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    10. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report the results. No harm will be done.
    11. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    12. When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If that happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Terms of Use of the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • I am confused about something.  How do I read a book on my MacBook Pro?  I can't find the iBook app anywhere, which is what I use on my iPad.  The book I want to read is in my iTunes but I can't click on it.  My iBook library does not show up in iTunes.

    I am confused about something.  How do I read a book on my MacBook Pro?  I can't find the iBook app anywhere, which is what I use on my iPad.  The book I want to read is in my iTunes but I can't click on it.  Some of my iBooks show up in my iTunes but they are "grayed" out.  The only books that respond in iTunes are audiobooks and that's not what I'm looking for.  Is this a stupid question?

    Nevermind - I answered my own question, which is I CAN"T READ ANY BOOKS I purchased in iBooks on my MacBook Pro.  If I want to read on my mac I have to use Kindle or Nook.  Which means any book I've already purchased through iBooks has to be read on my iPad.  Kind of a drag because there are times when it's more convenient for me to read while I'm sitting with my Mac.

  • I Have a Macbook Pro that does not have a disk drive.  How do I install the Adobe Photoshop Elements 11 that came with the Epson scanner I purchased.  I registered the S/N and I can't find the Free download anywhere only trials.

    I Have a Macbook Pro that does not have a disk drive.  How do I install the Adobe Photoshop Elements 11 that came with the Epson scanner I purchased.  I registered the S/N and I can't find the Free download anywhere only trials.

    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • As we are having a problem explicit with Adobe Reader 11.0.07, we are interested in news and dates for coming updates to Adobe Reader. Can I find information about this anywhere ?

    As we are having a problem explicit with Adobe Reader 11.0.07, we are interested in news and dates for coming updates to Adobe Reader. Can I find information about this anywhere ?

    Hello Claus,
    you could have a look here: http://helpx.adobe.com/security/products/flash-player/apsb14-13.html  and in german language http://www.chip.de/downloads/Adobe-Reader_12998358.html
    In all These cases Google could be "your friend".
    Hans-Günter

  • I do not have the Firefox button the Getting started video refers to many times, I can't find a setting for it, how do I get it?

    The Firefox button referred to many times in the Getting started video for Firefox 4 (for Mac) does not appear on my window. I can't find a setting for it, how do I get it?

    The Firefox button is only on Linux and Windows. The Mac handles menus differently. In the Mac the menu bar is controlled by the operating system and is always present. In Windows and Linux, the Firefox button replaces the menu bar which is not possible on the Mac.

  • I can't find the Trash icon anywhere on Mac

    I can't find the Trash icon anywhere on my mac pro. I needed to clean some startup desk space and thought to start with emptying the trash but I can't find it anywhere. I thought it might be hidden so I made the Library visible through typing a code in Terminal, but still can't find it! Please Help!!
    Thanks in advance!
    Hakunamatata

    AirPlay Mirroring requires OSX 10.8 or higher.

  • I bought a new laptop and tried to reinstall Photoshop elements 11. I saved the original packaging and everything inside(or so I thought). I can't find the serial number anywhere.what if anything an I do?

    I bought a new laptop and tried to reinstall Photoshop Elements 11. I saved saved the original packaging and all contents (or so I thought). I can't find the serial number anywhere. Any thoughts on what I can do?

    If you originally registered your product the serial number will be stored in your Adobe account. Click the red logo (top left on this web page) sign-in, and then click the Manage Account button. It should be possible to browse your purchase history. You are looking for a 24 digit number commencing 1o57.

  • I can't find script install_root.sh anywhere to start dbimport phase

    Hi all,
    I am installing E-Sourcing on Solaris SPARC. I installed and configured E-Sourcing successfully ( I got the message that they finished successfully).  But now I can't find script install_root.xml anywhere to run the db import.
    Any help ?
    Thanks very much in advance.
    Mauricio

    Hi Ankush,
    I did that but when looking for file install_root.xml, it is not on anywhere. The guide says to look for it at fciinstall.jar/scripts/product/install_root.xml (below).
    On the Setup tab of the DB importer, use the file picker to browse to and choose
    fciinstall.jar/scripts/product/install_root.xml.
    I tried to find it (find . -name install_root.xml -print) under the esourcing51 dir and also on the install dir but didn't find it.
    Ideas ?
    Thanks so much.
    Mauricio

  • HT1766 How can I find my setting app?

    How can I find a setting icon in my ipad

    OK, let's try a reset:
    Tap and hold the Home button and the On/Off buttons for approximately 15-20 seconds, until the Apple logo reappears. When the logo appears, release both buttons.
    No content is affected by this procedure.
    If this doesn't work, go to Settings - General - Reset - Reset home screen layout.
    This procedure will rearrange your icons.

  • How do I update my iPad 2 to iOS 5, I tried going to settings,general ,software update but I can't seem to find the software update button pls help :)

    How do I update my iPad 2 to iOS 5, I tried going to settings,general ,software update but I can't seem to find the software update button pls help :)

    Go to Settings > General > About and see what iOS version you are running.  If it is lower than 5, you won't find the software update button.  It was added when iOS 5 came out.  The current iOS is 5.1.1.  To update to the current OS, you'll need to connect to the computer you sync with (this is important - do not connect to a computer you do not sync with as you will lose you apps) and update the software in iTunes.  Once you have updated to the 5.1.1, the software update button will be in Settings going forward.  Make sure you have a lot of time.  Updating from below 5 to 5 or higher is a somewhat lengthy process.
    This link will provide the guidance you need:
    http://www.macworld.com/article/1162925/how_to_upgrade_your_ios_device_to_ios_5. html

  • I can't find the safari application anywhere in my preferences. how do i access safari and put it on my dock?

    our computer has two profiles. one profile has safari and we are able to access the internet. on the other profile, the safari application would display a question mark on it when i tried to open the application. i removed the safari application from the dock. now, i can't find the safari application anywhere to be able to use it and put it on my dock.

    It sounds like Safari has somehow been installed in a user / Applications folder instead of the Macintosh HD / Applications folder where it should be.
    Log in as the user that can open Safari, navigate to home / Applications and drag the Safari icon out of there to the Macintosh HD / Applications folder. Then drag it to the Dock and drop it when the other icons move aside for it.
    You should now be able to access Safari from all accounts.

Maybe you are looking for

  • Why Family Share not show up on my MacBook Pro? Help

    I am supposed to be part of a Family Share account. I can access Family Share & other family member's purchases on my iPad but NOT on my MacBook Pro that is running Maverick OS. I log into iTunes, click on the drop down window at the top where my nam

  • Accrual Engine- Open Item Gl Account

    Hi In case of Accrual engine , I am trying to post to target account which is Open item managed . I know system will not allow to post to OI . Is there a workaround for this ?? Regards Ram

  • A simple question: how to create a folder in the active root

    I have a simple little issue: When I go in the "Finder" down the folder chain to what ever place with the intention to create a new sub folder, using "file" + "new folder" the system always create the new folder in the main root versus creating it wh

  • Turning a QS 933 into a Media Center...Suggestions?

    I recently purchased for waaaaay cheap a working Power Mac G4 Quicksilver 933 with 1.25GB of Ram, one 80GB HD and Stock Cd-RW and Graphics card (ADC and VGA). What I want to do with this is turn it into a media server for my den. It will mostly playb

  • Why blocking sites using Hosts file isn't working?

    Hello  I need to block a few websites on my home computer. Did a quick search and found out I had to work with the hosts files. So opened up Notepad, ran it as Admin and then opened Hosts and at the bottom added ' 127.0.0.1 facebook.com' then saved t