Advertising for Sony VGN-NS240E/W

I wanted to see if anyone else has this issue. I saw the weekly advertisement having the Sony VGN-NS240E/W for $649.99 with an ATI Radeon HD 3430 graphics card. However, when I went into three different Best Buy stores the very same laptop with the same part number and SKU had only the Intel Graphics Media Accelerator 4500M per the label on the box it comes in. This was true for each and every Sony VGN-NS240E/W. However, on the Best Buy website there is a review saying that their laptop has the correct memory card.
Has anyone else experienced what I have found or are they getting the correct card?

Hey therogueo1,
I took a quick look at the marketing specifications released for this model, and here’s what Sony listed on their product support website:
• Processor: ATI Mobility RadeonT HD 3430 with Total Available Graphics Memory of 2040MB (max.)
• Chipset: Intel® GM45 Express Chipset
I also spoke with Sony’s Consumer Support hotline just to verify this information, and it appears that both are integrated into the main system board. If you’d like to verify this yourself though, please feel free to send me a private message and I’d be glad to provide you with the reference number provided by Sony.
Thanks!
Agent Aaron
Geek Squad® Community Connector
Go Ahead. Use Us.
Aaron|Social Media Specialist | Best Buy® Corporate
 Private Message

Similar Messages

  • What I have working on a Sony VGN-TX750P

    Hi all.
    I've been using Arch for about 4 years now, but I've never posted to the community.
    My primary system is a Sony VGN-TX750P that I bought almost two years ago now. The initial install used random hacks to try and make most of the devices work, but I recently reinstalled linux from scratch (thanks to VirtualBox allowing me to remove my Windows partition).
    With the new install, I decided to try and find new ways of getting the hardware working.
    Here's what I have working so far:
    LCD @ 1366x768
    External VGA
    Fn keys for brightness and monitor switching.
    ieee1394
    Sound
    screen dims when AC removed, brightens when re-established
    external keyboard/mouse
    802.11
    What's not working/tested
    WAN (not tested)
    volume up/down buttons on front (not working)
    SD (not tested)
    microphone (not tested)
    I do finally have a SD card at home, so I may try and get that working too.
    For the most part. I followed other tutorials to make most of it work. Once I had the basics done, I wrote a few of my own scripts for the brightness, and I modified someone else's script for the external monitor (script was written for a thinkpad).
    I'm not very good at writing how-to's but I'll try my best. This will probably mostly just be a bunch of information that I've been gathering and using as I try and get things working.
    First, do a base install
    Second, use the Wiki to install X
    Make sure you grab xf86-video-intel
    Here's my xorg.conf:
    Section "ServerLayout"
    Identifier "single"
    Screen "Screen0"
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "ServerLayout"
    Identifier "xinerama"
    Screen "Screen0"
    Screen "Screen1" RightOf "Screen0"
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    #Section "ServerFlags"
    # Option "Xinerama" "true"
    #EndSection
    Section "Module"
    Load "record"
    Load "xtrap"
    Load "dbe"
    Load "glx"
    # Load "dri"
    # Load "GLCore"
    Load "extmod"
    SubSection "extmod"
    Option "omit xfree86-dga"
    EndSubSection
    Load "freetype"
    Load "type1"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Device"
    Option "DRI" "false" # [<bool>]
    Option "GLX"
    Identifier "Card0"
    Driver "intel"
    VendorName "Intel Corporation"
    Option "MonitorLayout" "CRT,LFP"
    BusId "PCI:0:2:0"
    BoardName "Mobile 915GM/GMS/910GML Express Graphics Controller"
    Screen 0
    EndSection
    Section "Device"
    Option "DRI" "false" # [<bool>]
    Option "GLX"
    Identifier "Card1"
    Driver "i810"
    VendorName "Intel Corporation"
    Option "MonitorLayout" "CRT,LFP"
    Option "DevicePresence" "yes"
    BusId "PCI:0:2:0"
    BoardName "Mobile 915GM/GMS/910GML Express Graphics Controller"
    Screen 1
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 8
    Modes "1366x768"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    Modes "1366x768"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1366x768"
    Virtual 2390 1024
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Card1"
    Monitor "Monitor1"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 8
    Modes "1024x768"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    Modes "1024x768"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1024x768"
    EndSubSection
    EndSection
    #Section "DRI"
    # Mode 0666
    #EndSection
    One thing to note... I use xrandr for switching the external monitor on and off. Because of this, I have a virtual window that is bigger than 2048. From what I've read the Intel video does not support dri greater than 2048, so I have dri disabled.
    If you don't plan on using a "both" type screen and only plan on mirroring to an external display, then you can uncomment all of the dri lines.
    Also, my xorg.conf is dirty, so, while it works for me (and technically could/should work for you) you may want to use it more as a guide. From what I've read, xrandr doesn't require two monitor/device/screen entries, but I haven't cleaned it up yet to try.
    I had fb working at 1366x768, but I forgot to grab my menu.lst file from the previous install, and I lost the link to the hints I used to make it work.
    I use wpa_supplicant to get the wireless working. I also use ifplugd so that the wireless and wired connections get configured when they get turned on.
    To do this, I edited /etc/modprobe.conf and added
    install ipw2200 modprobe -i ipw2200 associate=0; true
    I then edited wpa_supplicant.conf and added the various networks I connect to.
    This may not be the best way, but I then added the following to my /etc/rc.local file:
    /usr/sbin/wpa_supplicant -B -Dwext -ieth0 -c/etc/wpa_supplicant.conf
    Here's my pertinent rc.conf file information:
    MODULES=(ipw2200 e100 mii snd-mixer-oss snd-pcm-oss snd-hwdep snd-page-alloc snd-pcm snd-timer snd snd-hda-intel soundcore acpi_cpufreq sony_acpi vboxdrv)
    lo="127.0.0.1"
    eth0="dhcp"
    eth1="dhcp"
    INTERFACES=(lo eth0 eth1)
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    DAEMONS=(syslog-ng ifplugd gdm @netfs @crond dbus hal @cpudyn @acpid @laptop-mode @alsa)
    the MODULES was mostly setup for us during the install with the exception of adding ipw2200 to the front after installing it.
    Sound was simply a matter of installing alsa-oss and configuring.
    To get the brightness working, I had to obtain the old sony_acpi drivers and compile and install them. The sony-laptop driver didn't create the /proc/acpi/sony/brightness file for me. And, unfortuantely, this meant that most of the stock gnome brightness tools don't work with it because they're looking for a different file.
    I ended up using laptop_mode to handle the AC on/off for the screen brightness.
    To make the Fn keys work for brightness I added two files into /etc/acpi/events :
    1) screen_brighter
    event=sony/hotkey SPIC 00000001 00000011
    action=/etc/acpi/actions/brightness 1
    2) screen_dimmer
    event=sony/hotkey SPIC 00000001 00000010
    action=/etc/acpi/actions/brightness 0
    These commands call a script /etc/acpi/actions/brightness:
    #!/bin/bash
    STATE=$(cat /proc/acpi/sony/brightness)
    NEXT=$1
    if [ $NEXT == "1" ]
    then
    val=$(($STATE+1))
    else
    val=$(($STATE-1))
    fi
    if [ $val -gt "8" ]
    then
    val=8
    fi
    if [ $val -lt "1" ]
    then
    val=1
    fi
    echo $val > /proc/acpi/sony/brightness
    Here's how I got the external monitor switching working:
    in /etc/acpi/events/monitor_switch :
    event=sony/hotkey SPIC 00000001 00000012
    action=/etc/acpi/actions/monitor_switcher toggle
    and in /etc/acpi/actions/monitor_switcher
    #!/bin/bash
    # External output may be "VGA" or "VGA-0" or "DVI-0"
    EXTERNAL_OUTPUT="VGA"
    INTERNAL_OUTPUT="LVDS"
    EXTERNAL_LOCATION="right"
    case "$EXTERNAL_LOCATION" in
    left|LEFT)
    EXTERNAL_LOCATION="--left-of $INTERNAL_OUTPUT"
    right|RIGHT)
    EXTERNAL_LOCATION="--right-of $INTERNAL_OUTPUT"
    top|TOP|above|ABOVE)
    EXTERNAL_LOCATION="--above $INTERNAL_OUTPUT"
    bottom|BOTTOM|below|BELOW)
    EXTERNAL_LOCATION="--below $INTERNAL_OUTPUT"
    EXTERNAL_LOCATION="--left-of $INTERNAL_OUTPUT"
    esac
    # Figure out current state
    INTERNAL_STATE=$(xrandr | grep ^$INTERNAL_OUTPUT | grep con | sed "s/.*connected //" | sed "s/(.*//")
    EXTERNAL_STATE=$(xrandr | grep ^$EXTERNAL_OUTPUT | grep con | sed "s/.*connected //" | sed "s/(.*//")
    if [ -z "$INTERNAL_STATE" ]; then
    STATE="external"
    elif [ -z "$EXTERNAL_STATE" ]; then
    STATE="internal"
    else
    INTERNAL_STATE=$(echo $INTERNAL_STATE | sed "s/[0-9]*x[0-9]*//")
    EXTERNAL_STATE=$(echo $EXTERNAL_STATE | sed "s/[0-9]*x[0-9]*//")
    if [ "$INTERNAL_STATE" = "$EXTERNAL_STATE" ]; then
    STATE="mirror"
    else
    STATE="both"
    fi
    fi
    function screen_external(){
    xrandr --output $INTERNAL_OUTPUT --off
    xrandr --output $EXTERNAL_OUTPUT --auto
    function screen_internal(){
    xrandr --output $EXTERNAL_OUTPUT --off
    xrandr --output $INTERNAL_OUTPUT --auto
    function screen_mirror(){
    xrandr --output $INTERNAL_OUTPUT --auto
    xrandr --output $EXTERNAL_OUTPUT --auto --same-as $INTERNAL_OUTPUT
    function screen_both(){
    xrandr --output $INTERNAL_OUTPUT --auto
    xrandr --output $EXTERNAL_OUTPUT --auto $EXTERNAL_LOCATION
    function screen_toggle(){
    case "$STATE" in
    internal)
    screen_mirror
    mirror)
    screen_both
    both)
    screen_internal
    screen_internal
    esac
    # What should we do?
    DO="$1"
    if [ -z "$DO" ]; then
    if [ $(basename $0) = "monitor_switcher" ]; then
    DO="toggle"
    fi
    fi
    case "$DO" in
    toggle)
    screen_toggle
    internal)
    screen_internal
    external)
    screen_external
    mirror)
    screen_mirror
    both)
    screen_both
    status)
    echo "Current Fn-F7 state is: $STATE"
    echo
    echo "Attached monitors:"
    $SU xrandr | grep "\Wconnected" | sed "s/^/ /"
    echo "usage: $0 <command>" >&2
    echo >&2
    echo " commands:" >&2
    echo " status" >&2
    echo " internal" >&2
    echo " external" >&2
    echo " mirror" >&2
    echo " both" >&2
    echo " toggle" >&2
    echo >&2
    esac
    Please NOTE... the montor_switcher app is not mine. It was from a how-to for a Thinkpad, but I have since forgotten the link and can't seem to find it. I did make a few modifications to the script to remove the "external only" from the toggle mode as I never use just an external monitor.
    Also, with the external monitor turned on in the "mirror" state, gnome taskbar can look a little funny on the LVDS.
    I know this isn't a very good how-to, but I hope it at least has a little bit of information. Google worked pretty good for me on some of this. I'm at work and things are getting busier, but if you have questions, I can try and answer.
    if you want to see a particular .conf file that I left off, let me know and I'll post it.

    j pfromma wrote:
    I am unable to download dvd-r
    Download whence?

  • Important, I cant seem to find the hierarchy chart for Sony - For a research paper

    Hello,  
    College student and a PS3 gamer. 
    I need a hierarchy chart for Sony - For a research paper
    Thank.
    Solved!
    Go to Solution.

    Hi J D,
    Welcome to Sony Community!
    Unfortunately, Information about educational research or reports cannot be provided online. I would recommend the book "MADE IN JAPAN," written by Akio Morita (our founder) as an excellent resource for both the history of Sony and our products. You may also want to visit the following website for a detailed presentation of the company history:
    http://www.sony.net/SonyInfo/CorporateInfo/History/SonyHistory/
    You may also wish to review our Annual Financial Report at:
    http://www.sony.net/SonyInfo/IR/financial/ar/index.html
    If my post answers your question, please mark it as "Accepted Solution".
    Thank you for your post.

  • Which cable should use for Sony DV connect to iMac ?

    Which cable should use for Sony DV(IEEE 1394)connect to iMac ?

    If your iMac has just the FireWire 800 connection, you will need the 9 pin to 4 pin cable.
    http://www.cwol.com/firewire/firewire-800-1394b-cables.htm
    If your iMac has the FireWire 400 connection, you will need the 6 pin to 4 pin cable.
    http://www.radtech.us/Products/ProCableFW400800.aspx
    Links are to illustrate examples. You should be able to pick them up at most computer stores.

  • INF monitor file for SONY Bravia HDTV (W510 DP-HDMI) for Windows 7.

    Hello everybody,
    Does anybody has a INF monitor file (or driver) for SONY's Bravia television sets? Mine is KDL40-XBR2 and by default is using the "Generic PnP Monitor" driver which is pretty lousy... the text is pretty bad and the quality is worse than using the VGA port of the laptop.
    I need something specific for SONY but they don's support their line of TVs... I wasn't able to find anything on the net.
    Thanks.

    Of course, SONY is not providing generic INF monitor files for their line of LCDTV's... no wonder they are going down!

  • Installation failed. Error Code: U44M2P7 trying to get camera raw for Sony NEX 6

    I am trying to view raw pics from Sony NEX6  Have installed camera raw 6.3.0.79.   Installation failed. Error Code: U44M2P7
    How do I upgrade so include this camera?

    you need cr 7.2+ for sony alpha nex-6.
    what program/what version are you trying to update?

  • Skype for Sony Playstation 3 ( PS3 ) and for Sony Playstation 4 ( PS4 )

    There is a huge amount of Sony Playstation users who would like to have Skype available for their consoles. The client is already available for PSP and PS Vita. There are ton of thread with this request, but none of them has received a clear answer and that's why I open a new thread. We know that there are a lot of alternatives like smart TV, Blu-ray and other compatible devices, but the request is clear : could you please let us know if there is any plan to implement a client for Sony Playstation (PS3 and/or PS4) or not? If not is it possible to know why?Thank you,Dashie

    Tsunamidevil wrote:
    So thereAre you 12? Tsunamidevil wrote:
    watch your tone buddy. I didn't see anyone give you a "tone" until now. People answered your question. On top of of that, you aren't really anyone to be demanding any sort of tone from anyone else. I'll explain why:
    Tsunamidevil wrote:
    Yea that true MSFT own Skype but Sony own the Blu-ray which now available on XBox One. So fair is fair that MSFT should return a favour to give Sony 'Skype' as well.......Ya should had done your research before making that comment.And you should have a basic understanding of business before making yours. Return a favour? Really? Blu-ray is a standard. It's in Sony's best interest to allow it to be available on more platforms, so it moves closer to superceding the DVD, AND they get to make revenue from licensing the standard as a result. In the case of Xbox One, Sony make between $2 and $3 per unit according to a Wedbush Securities estimate.
    Skype is a service. And for most users, a free one at that. The revenue from it comes from people paying for the premium services such as inbound numbers, which are very unlikely to be users basing their presence on video game consoles. Given the climate of the next gen releases, it is in Micorsoft best interests to give their console offering a certain exclusive. No matter how small. In short. Comparing Blu-ray to Skype is rediculous. Just write it off as a shame that business is business.

  • Skype for Sony Playstation 3 ( PS3 ) and for Sony ...

    There is a huge amount of Sony Playstation users who would like to have Skype available for their consoles. The client is already available for PSP and PS Vita. There are ton of thread with this request, but none of them has received a clear answer and that's why I open a new thread. We know that there are a lot of alternatives like smart TV, Blu-ray and other compatible devices, but the request is clear : could you please let us know if there is any plan to implement a client for Sony Playstation (PS3 and/or PS4) or not? If not is it possible to know why?
    Thank you,
    Dashie

    Tsunamidevil wrote:
    So there
    Are you 12?
    Tsunamidevil wrote:
    watch your tone buddy. 
    I didn't see anyone give you a "tone" until now. People answered your question. On top of of that, you aren't really anyone to be demanding any sort of tone from anyone else. I'll explain why:
    Tsunamidevil wrote:
    Yea that true MSFT own Skype but Sony own the Blu-ray which now available on XBox One. So fair is fair that MSFT should return a favour to give Sony 'Skype' as well.......Ya should had done your research before making that comment.
    And you should have a basic understanding of business before making yours. Return a favour? Really?
    Blu-ray is a standard. It's in Sony's best interest to allow it to be available on more platforms, so it moves closer to superceding the DVD, AND they get to make revenue from licensing the standard as a result. In the case of Xbox One, Sony make between $2 and $3 per unit according to a Wedbush Securities estimate.
    Skype is a service. And for most users, a free one at that. The revenue from it comes from people paying for the premium services such as inbound numbers, which are very unlikely to be users basing their presence on video game consoles. Given the climate of the next gen releases, it is in Micorsoft best interests to give their console offering a certain exclusive. No matter how small.
    In short. Comparing Blu-ray to Skype is rediculous. Just write it off as a shame that business is business.

  • Will I get an official update of Andriod 2.3 GingerBread for Sony Ericsson W8. Or should I thorow it. :(

    Hi All
    Will I get an official update of Andriod 2.3 GingerBread for Sony Ericsson W8. Or should I thorow it.
    Solved!
    Go to Solution.

    would u like to do an experiment with your phone (better than throwing), install a custom rom, and u will be able to update to android version 2.3.7
    u need to root your phone
    it could void your warranty, might damage your phone, phone may get bricked,,, etc etc
    i am not responsible for anything
    the video is bad, description might help http://www.youtube.com/watch?v=LxJNy07hwjQ
    another one,,, video is good,, http://www.youtube.com/watch?v=iiC9OGJymLg&feature=related\
    installing custom roms is however for advanced users and developers
    Discussion guidelines.
    Message me or any other moderator to seek help regarding moderation.

  • Error, we detected a failure loading the advertisement for you to complete BrandBoost. Please disable any ad blockers and try again.

    Error
    We detected a failure loading the advertisement for you to complete BrandBoost. Please disable any ad blockers and try again.
    I was playing Family Feud on Facebook)
    How do I disable any blockers.

    Despite the message does the site work? If so I'd ignore the messages. From the name of the site, perhaps you want to see the advertisements.
    The most popular adblocking is the "Adblock Plus" extension which you can disable with the "ADP" toolbar button or in the extensions options in Tools -> Addons -> extensions.
    Adblock Plus - Open blockable items list - Ctrl+Shift+V (right click on icon) shows all the urls on a page and if blocked by a filter shows the filter
    * http://img213.imageshack.us/i/2010020591647pm.png/
    * http://img651.imageshack.us/i/adpblockableitems.png/

  • Conversion of Palm Desktop Data (for Sony Clie)

    Is there any software available that will convert my Palm Desktop (for Sony Clie) data to a format that can be uploaded to an iPhone (3G)?

    I believe PocketMirror from http://www.chapura.com should do just what you need. It will move everything from your Palm to Outlook, which iTunes can then work with. Hope it helps!

  • How do I identify and install latest RAW plug in for elements 10 for Sony A 7 mark 2

    How do I identify and install latest RAW plug in for elements 10 for Sony A 7 mark 2

    Elements 10 is too old for this new camera. It can't be updated to the ACR 8.5 version, you would need PSE12 or 13.
    Camera Raw plug-in | Supported cameras
    You can download the free Adobe Dngconverter which can batch convert whole folders of your Sony raw files to the DNG raw format that your PSE10 can handle.
    FAQ: Will Photoshop Elements work with my camera, or Why won't my raw files open?

  • Current Lightroom / Camera Raw Camera Profile for Sony ILCE-6000 inaccurate: green cast in shadows! Capture one better! Please fix it!

    Hi folks from Adobe!
    Please take note that the current Lightroom / Adobe Camera Raw Camera Profile for the Sony ILCE-6000 is very inaccurate: There is a serious green cast in the shadows!
    Capture One Express for Sony (which is free by the way) renders a lot more correctly!
    Please correct this, since I'd rather buy the coming LR6 because of keeping my established workflow instead of going the Capture One route.
    A good example can be found in the dpreview forum "LR5 A6K shadow pulling, a mess! Adobe LR is broken? "
    Or search for Philp Reeves 3 weeks with the Sony A6000 review "3 Wochen mit der a6000", where he compares it to the Sony A7, using both times Lightroom to push the shadows.
    The Sony A7 is fine where earth looks like brown earth, the A6000 picture looks like grass instead.
    Please fix this! This is a high volume camera frequently bought by enthusiast or as second body for FF photographers. That would be really great!

    I am talking about the two raw files linked in the very last post of page 6 of the Reeves comparison thread, not JPGs or screenshots of unknown manipulation.  In LR they both say f/11 and ISO 100 and have a similar tone, but one is shot at twice the shutter speed as the other.  This side-by-side is using Adobe Factory Defaults for each image where the profile is Adobe Standard, the toning sliders are all 0, tone-curve linear, and the Sharpening and Color NR are 25:
    However, when I look at the camera-embedded JPGs, side-by-side, the 1/80th image on the left is darker than the 1/40th image on the right, as expected given the reported shutter-speed difference:
    And it is indeed the darker image that has more shadow problems, also as expected.
    When I do manipulate the darker (a6000) raw file in LR, I do see that the shadows are greenish when brightened unlike most other cameras which usually show magenta, which is the combination of the blue and red sensors showing more noise because there are half-as-many photosites as compared to the green, so I am seeing what people are complaining about and would expect shadow noise to be purple not green, I'm more concerned that these two example raws aren't actually comparable due to apparent differences in exposure.  It is also odd that the lens listed in LR is different than the lens listed in the filename, so either someone has mistakenly or deliberately renamed the file wrong or someone or something has changed the EXIF parameters that LR is reporting to be the same when they're really not.

  • Adobe flash player 10 for Sony Playstation Portable

    Dear Adobe company and developers, i know that you made adobe flash player for Sony PSP a long time ago, but that prooved to be insufficient.I consider that you abandoned the project because of some company issues between you and Sony, but we, the users of that platform, we don't care. I know you are the best in this industry, and i, like so many other users of the portable console, we ask you to release the latest version of flash player, because the browser of the console has full capabilities to play flash contents on the internet.
    I humbly ask you to create this update, because version 6 was very good, but at it's time :(.... The majority of websites don't support it anymore, and we would be gladly happy to know that you didn't lost your interest in this platform developing.
    The file should look like this: Adobe Flash Player Update EBOOT.PBP or Adobe Flash Player 10 EBOOT.PBP but i think you know very well the programming interface on that.
    Please answer to my message to know that i receive a good news and i should be happy.
    Best Wishes for Adobe,
    the Adobe and Playstation Portable users from Romania.

    i would like to download this adobe flash player for sony playstation portable, because it is important to do thing that i would like to.
    tnx for adobe. i can watch the video i want. godBless

  • Need lens profile rokinon 14mm for sony nex7

    Please does anyone know if there is a Lightroom 5 lens profile for Rokinon(aka Bower/Samyang)  14 mm for sony nex 7??
    Thanks

    The Adobe Lens Profile implementation is not camera model specific.  Cameras with the same sensor size should theoretically be able to use the same lens profiles regardless of the camera make or model. Adobe also provides the capability of using lens profiles from larger sensor size (full-frame) cameras with images shot using smaller sensor (APS-C) camera models (i.e. Crop Factor). As best I can tell the Adobe and User created lens profiles are agnostic, except for image file type. Different lens profiles are required for raw and JPEG images. As long as the lens profile crop factor is the same or smaller than the target camera it should work just fine. The Sony Nex7 has a 1.5 Crop Factor sensor size, so any lens profile with a 1.5 to 1 crop factor should work. Lens profiles with the nearly same sensor size 1.6 crop factor should also work.
    The Adobe Lens Profile Downloader lists numerous lens profiles for this lens under 'Camera Make' Nikon for both raw and JPEG. You could also use any of the lens profiles that appear under 'Camera Make' Canon.
    1) Download and install the Adobe Lens Profile Downloader for Windows or Mac.
    2) Launch the Adobe Lens Profile Downloader, select a suitable lens profile, and download it. Add as many as you like!
    3) Close and reopen LR, select an image shot with the 14mm lens, go to Develop> Lens Corrections panel, and select 'Make' same as you downloaded (i.e. Nikon), and under 'Model' scroll down to the bottom of the list and you should see the downloaded profile(s). Test it with the 14mm images.
    4) If satisfied select in the Lens Profile panel Setup> 'Save New Lens Profile Default.'
    These profiles are created and submitted by users with varying degrees of technical-expertise. The lens profiles have a 'Rating,' based on some metric. Please keep in mind that 100% distortion and vignetting correction can actually make the image look worse, especially with a wide-angle lens. Most wide angle lenses have barrel type distortion and when corrected with the LR Lens Profile tool you will see corner "stretching," which creates cropping and volume anamorphosis. Images also tend to look more natural when there is a slight amount of vignetting left in the image. I typically use 0% Distortion and 50% Vignetting and only adjust them higher in images where it is visible. YMMV.....

Maybe you are looking for

  • Need help figuring how to track DVD drive usage

    I work at a public library and need to track how often the DVD drives are used by our patrons.  Is there some count somewhere of how many times the drive is accessed?  The only other way I can think of to do this is to run a script that will check if

  • Mac mouse wheel & trackpad--not scrolling in flash fields

    In several (probably all) Flash apps, scrollable fields do not respond to my mousewheel or trackpad scrolls. Thoughts? Running current Snow Leopard, and Flash 10.0.45.2. Thanks!

  • Broken hinge

    BROKEN HINGE/SCREEN!!!  My last HP was two years old when the right hinge started acting funny, I babied it but to no avail it broke.  It broke on the inside as well as the outside, like came unattached inside.  I chauled it up to being used heavily

  • Can I make a 5 Hour long DVD

    Hi everyone, I have a client who has already had 5 hours of video put onto a DVD he wants me to do the same. Can iDVD handle this??? I know iDVD usually has a time limit of 2 hours, but when I gave it a QT movie that was over 2 hours long it just ask

  • Visual Administrator:  error in HTTP Destination

    I want to create a http destination to an ABAP AS in the Visual Administrator like it is described in the Installation Guide for ADS: "Visual Administrator - Cluster - Services - Destination - HTTP - New". After typing in the destination, I wanted to