20 percent tint counts as color... here we go again!

We use InDesign CS6 v8.0.1 on Windows. About 80 percent of our documents use color as follows:
PMS 541 is applied as a spot color on at least 3 pages
Black text is used on every page
20 percent K tint is used (see image inserted below)
Our in-house printer is a Konica Minolta C454
The printer counts the tinted pages as a color, and we are charged for this "color" click. This has become costly for us, since the majority of the pages in our documents use pages with the 20 percent K tint. We create the box using the retangle tool and then outline with a 1pt. rule at 100 percent black and fill with 20 percent tint of black. Is there anyway to have the black tint just print as black and not as a color without printing the whole document as grayscale.
BTW: We have used the printer driver and the postcript driver and both interpret the screen as a "color."

Are you saying you think 0/0/0/20 should be considered as color?
My RGB Epson driver  prints 0|0|0|20 as a 4-color mix, and my experience with other RGB drivers is the same, any CMYK mix gets color managed for the printer.
Why wouldn't the printer then also consider the default black, 0/0/0/100 as color?
Maybe it does unless the page is printed as grayscale? Or maybe the driver's smart enough to make an exception for 100% black text.
included a single box with 20 percent K fill sent to the PostScript drive (straight from ID) and the printer counted is as a color click …now what!
My PS Rip (PowerRipX) will do it but not with the default settings. I don't think all PS RIPs can print document CMYK values.

Similar Messages

  • Can't apply tint or spot color to graphic

    I have a grayscale, 1-layer graphic in a layout that will not let me apply a tint or spot color.
    I must be missing something basic here.
    ID CS2

    If there's any transparency, it won't work.
    Otherwise, make sure you're doing this properly.
    Select the graphic with the direct selection tool (white arrow) and then
    apply the color or
    Drag the color from the swatches panel onto the graphic.
    Bob

  • In Photoshop CS6 Hue Saturation does not work with forground/background Jitter set at 100 percent no change in color is observed. Help

    In Photoshop CS6 Hue Saturation does not work with forground/background Jitter set at 100 percent no change in color is observed. I have Added a screen Shot of the Brush settings and a demonstration of what the brush produces.
    I also notice That when I make a pattern of a single color, when I fill a selection with the pattern I get a rainbow of different colors.
    I am running a 64 bit version of Photoshop from the CS6 Masters Collection
    I am on a PC with a Intel i7 1366 4 physical cores and 8 threads, 24 Gig of DDR memory, A Crucial 512 Gig SSD and a NVIDIA GTX 570 with 2 Gig of memory.
    The document size is 2100 by 1500 Pixels at 300 PPI   only two layers

    In Photoshop CS6 Hue Saturation does not work with forground/background Jitter set at 100 percent no change in color is observed. I have Added a screen Shot of the Brush settings and a demonstration of what the brush produces.
    I also notice That when I make a pattern of a single color, when I fill a selection with the pattern I get a rainbow of different colors.
    I am running a 64 bit version of Photoshop from the CS6 Masters Collection
    I am on a PC with a Intel i7 1366 4 physical cores and 8 threads, 24 Gig of DDR memory, A Crucial 512 Gig SSD and a NVIDIA GTX 570 with 2 Gig of memory.
    The document size is 2100 by 1500 Pixels at 300 PPI   only two layers

  • I want to have the tint to the color information of the Cos Object.

    I have developed a plug-in now.
    My plug-in is creating a color with a Cos Object.And, It is used to fill the art object.
    I would like to have the information of tint to this color.
    Please tell me how to have a tint.
    --- The following is the code which creating a color. ---
        PDEColorSpace spotColorSpace;
        CosDoc cosDoc = PDDocGetCosDoc(pdDoc);
        char *functionText = "{50.0 -128.0 -128.0}";
        // Domain
        CosObj domain = CosNewArray(cosDoc, false, 2);
        CosArrayPut(domain, 0, CosNewFloat(cosDoc, false, 0.0f));
        CosArrayPut(domain, 1, CosNewFloat(cosDoc, false, 1.0f));
        // Range
        CosObj range = CosNewArray(cosDoc,false,6);
        CosArrayPut(range, 0, CosNewFloat(cosDoc, false, 0.0f));
        CosArrayPut(range, 1, CosNewFloat(cosDoc, false, 100.0f));
        CosArrayPut(range, 2, CosNewFloat(cosDoc, false, -128.0f));
        CosArrayPut(range, 3, CosNewFloat(cosDoc, false, 127.0f));
        CosArrayPut(range, 4, CosNewFloat(cosDoc, false, -128.0f));
        CosArrayPut(range, 5, CosNewFloat(cosDoc, false, 127.0f));
        // create dictionary
        CosObj tintTransform = CosNewDict(cosDoc, false, 4);
        CosDictPut(tintTransform,ASAtomFromString("FunctionType"),CosNewInteger(cosDoc,false,4));
        CosDictPut(tintTransform, ASAtomFromString("Domain"), domain);
        CosDictPut(tintTransform, ASAtomFromString("Range"), range);
        ASStm asStm = ASMemStmRdOpen(functionText, strlen(functionText));
        CosObj function = CosNewStream(cosDoc, true, asStm, 0, true, tintTransform, CosNewNull(), -1);
        ASStmClose(asStm);
        // create Lab
        PDEColorSpace altSpace = createLab(pdDoc);
        PDESeparationColorData data;
        data.alt = altSpace;
        data.name = ASAtomFromString("MyColor");
        data.size = sizeof(data);
        data.tintTransform = function;
        PDEColorSpaceStruct clrStruct;
        clrStruct.sep = &data;
        spotColorSpace = PDEColorSpaceCreate(ASAtomFromString("Separation"), &clrStruct);

    >lrosenth
    Thank you for the reply.
    Sorry... I forgot to write createLab() function.
    I am trying to create a color in the separation color space.
    I just have to set the lab to the AlternateSpace.
    Please tell me how to make the separation color and how to have the tint to the separation color.
    PDEColorSpace createLab(PDDoc pdDoc)
        PDEColorSpace labColorSpace;
        CosDoc cosDoc = PDDocGetCosDoc(pdDoc);
        // Lab
        CosObj csLab = CosNewArray(cosDoc, false, 2L);
        CosObj csLabDic = CosNewDict(cosDoc, false, 3L);
        // WhitePoint
        CosObj csWhitePoint = CosNewArray(cosDoc, false, 3);
        CosArrayPut(csWhitePoint, 0, CosNewFloat(cosDoc, false, 0.964203f));
        CosArrayPut(csWhitePoint, 1, CosNewFloat(cosDoc, false, 1.0f));
        CosArrayPut(csWhitePoint, 2, CosNewFloat(cosDoc, false, 0.824905f));
        CosDictPutKeyString(csLabDic, "WhitePoint", csWhitePoint);
        // Range
        CosObj csRange = CosNewArray(cosDoc, false, 4L);
        CosArrayPut(csRange, 0, CosNewFloat(cosDoc, false, -128.0f));
        CosArrayPut(csRange, 1, CosNewFloat(cosDoc, false, 127.0f));
        CosArrayPut(csRange, 2, CosNewFloat(cosDoc, false, -128.0f));
        CosArrayPut(csRange, 3, CosNewFloat(cosDoc, false, 127.0f));
        CosDictPutKeyString(csLabDic, "Range", csRange);
        // BlackPoint
        CosObj csBlackPoint = CosNewArray(cosDoc, false, 3);
        CosArrayPut(csBlackPoint, 0, CosNewFloat(cosDoc, false, 0.0f));
        CosArrayPut(csBlackPoint, 1, CosNewFloat(cosDoc, false, 0.0f));
        CosArrayPut(csBlackPoint, 2, CosNewFloat(cosDoc, false, 0.0f));
        CosDictPutKeyString(csLabDic, "BlackPoint", csBlackPoint);
        CosArrayPut(csLab, 0L, CosNewNameFromString(cosDoc, false, "Lab"));
        CosArrayPut(csLab, 1L, csLabDic);
        labColorSpace = PDEColorSpaceCreateFromCosObj(&csLab);
        return labColorSpace;

  • My daughter forgot her password and now her ipod touch is disabled.  When I connect it to itunes it does not come up on the screen as a device.  What can I do to get her itouch working again?

    My daughter forget her password and now her ipod touch is disabled.  Red message says to connect to itunes.  When I do connect to itunes, the device is not recognized and then a message comes on the screen that says it is locked and to enter the password to access it.  I cannot access the password and since itunes does not recognize the device, it does not come up on the list on the left, i cannot reset it.  What do I need to do so she can use her ipod touch again?   Thanks

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen        
    If recovery mode does not work try DFU mode.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • Linkification (any version) does not work with FF9.0.1. Here we go again! Same old problem. Why don't you guys develop a permanent fix??!!! Don

    Here we go again. Same old problem with FF updates. FF9.x.x will not allow clickable internet links. They are dead when typed. ALL IE versions have clickable links BUILT IN! Why can't you do it??? Don't blame it on "third party add on incompatiblity." It's not their fault. It is YOUR fault for not including it. Do not blame users either.
    xpi files are not compatible with FF9.x.x even when dragged on to it

    '''''Linkification''''' was not developed by Mozilla.
    *The third party developer appears to have abandoned the Add-on (no longer updates it).
    *The last update available on the Mozilla Firefox Add-ons site ( https://addons.mozilla.org/en-US/firefox/addon/linkification/ ) was made compatible only through Firefox 3.6.x
    *The developer posted version 1.3.9 on his/her own site which was made compatible through Firefox 4
    *'''''Read the comments section on the Add-ons page for suggestions.'''''
    **I would NOT download from another site as you do not know what you might be getting.
    **You can install the following and force compatibility in Add-ons > Extensions
    ***https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/?src=ss
    **Under "Reviews", click "See all ###user reviews". The suggestion ''by marwn098 on November 11, 2011'' is the only one that I would recommend.
    ***Link to that suggestion --> https://addons.mozilla.org/en-US/firefox/addon/linkification/reviews/321220/
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *'''''Adobe Shockwave for Director Netscape plug-in''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.org/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.org/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *'''''Next Generation Java Plug-in for Mozilla browsers''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Green tint, DV Pal, Color 1.0.2

    Hi
    Faced one problem with Color 1.0.2
    I am using Color and outputing to PAL.
    The green channel gets shifted and the footage gets a green tint when importing graded footage into FCP.
    Any ideas how to fix it? Tnx.
    Yuri Prylypko

    "Square" pixels versus "rectangular" issue.
    When viewing DV files in QuickTime the size used to be reported as 640X480 (NTSC here) instead of 720X480.
    http://docs.info.apple.com/article.html?artnum=302955
    This document describes the issue although it relates to iPod exports

  • Trying to get count of one fld as percent of count of all in the database

    I am trying to get either the distinct count of all users with a specific criteria in the database (NOT JUST IN THE REPORT) or to get the discount of those in the report as a percentage of all of those in the database.
    Example I am running a report on what people in our sales department have completed a task. I want to know what percent of each job type have completed it. My report is only going to pull records for those who have completed the event but I want to know what percentage those users are of all the users with that job description.
    Can this be done? can someone help me please? I have researched all day including spending 5 hours at Barnes and Nobles digging through Crystal books and I still can't figure it out.
    Thanks for any assistance you can provide.
    David

    Place your music motif on a layer over your chosen background.
    Then change the blending mode of the layer from Normal to Multiply and the white background of the layer will disappear.
    Another option, depending upon the light gray tones in the layer, is to double click on the music layer in the Layers panel to bring up Styles.
    Then in the bottom segment as seen here, slowly shift the marker shown to the left

  • Mystical Tint Tone and Color

    Hi Folks, I am running PS5  32 bit on Windows 7, when use Mystical Tint Tone & Colour  filter in PS5 it opens as a standalone version which means it does not open the active image from PS5, it all works fine but of course I have to save the image then reopen it again to make further adjustments, any ideas please
    Regards Carl

    How did you install it?  If not via an updated installer that knows CS5, is it possible there are components that didn't get properly moved?
    Is it supposed to be Photoshop CS5-compatible?
    Though many legacy plug-ins are fine with Photoshop CS5, if the plug-in maker did something tricky instead of following the SDK to the letter it could be that this particular one just can't work with Photoshop CS5 unless the software developer updates it.
    Also check to ensure the bit depth and color mode of the document you're working with is one that the plug-in supports.
    -Noel

  • How do you make a tint of a color in an alpha channel?

    When creating a spot color channel in PS it gives you Solidity option. I set this to 50% on my Reflex Blue channel but
    it still prints at 100%. What am I doing wrong?

    bump

  • Link Colors: Here you can change the default colors for Web links. Click on the color samples to select colors.

    This worked before, but, since I reinstalled my pc, it doesn't.
    Why is this & what must I do for it to work. ?

    Try using this add-on: https://addons.mozilla.org/en-US/firefox/addon/color-toggle/

  • STAMINA MODE(here we go again) -final clear up?

    So I just got the Z1
    - After googling around the net I have found several detailed explanations on how STAMINA MODE works. 
    However, I still think it is unclear so bear with me:
    I get the part about usage statistics/usage patterns being learned and all that. 
    I also understand that if I whitelist an app it supposedly can get push-messages even when in STAMINA MODE and that apps like Spotify will still be able to stream audio - This last fact raises some questions however... 
    What I still want to know is:
    1.
    does the STAMINA MODE in effect turn off the Wifi/3G on a hardware level while allowing bursts of data through at timed intervals? 
    OR
    does it only prevent apps that are not on the whitelist from requesting/receiving data on a software level
    (while still leaving the 3G/Wifi in an up state from a hardware point of view)?
    2.
    do the usage statistics/usage pattern collection over time determine at what time-interval apps that are not on the whitelist are allowed to fetch data over 3G/Wifi? 
    (for example, allow ALL traffic for 2 minutes every 10th minute while allowing WHITELISTED traffic through all the time). 
    OR
    Is whitelisted apps allowed to use data whenever they need to, while all other apps won't do anything at all while the screen is off? 
    If the answer to question 1 is that all data transfer is disabled on timed intervals in the hardware for all apps and letting bursts of data through every now and then
    (and the interval period gets shorter/longer based on whether the usage pattern is intense or not and what apps have a priority status because present in the whitelist) 
    - then adding any application that uses push (IM, Exchange)  to the whitelist doesn't make much sense to anyone who wants their mail or IM to arrive when it was actually sent. I also think that if one has an intense usage pattern the constant renegotiation the device has to do to take the connection up and down in the hardware may even prove counter-productive. 
    If the answer to question 1 is that all apps on the whitelist are allowed to go on about their bussiness as usual while all other apps are simply "frozen on a software level" while the screen is in an off-state then this feature is useful even when using IM/mail) and should basically be efficient almost no matter what scenario it is used in. 
    I really hope for a complete clarification once and for all
    Solved!
    Go to Solution.

    Stamina works like a firewall at a software level blocking all apps that are not on the white list from communicating with the internet while display is off. It also prevents most background activities from waking up the system.
    Stamina will not allow apps that are not on the white list to access internet at certain times while display is off. Only when you turn on the display or connect a charger they will be able to update. The usage statistics is used to estimate standby.
    You can find some more information about Stamina here: http://developer.sonymobile.com/2013/04/03/how-sonys-battery-stamina-mode-works/ and here: http://developer.sonymobile.com/2013/04/04/5-coding-tips-to-make-your-app-power-efficient-and-optimi...
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • HERE WE GO AGAIN - BROADBAND IN SHETLAND AT A CRAW...

    One wonders how many blasted times this has to happen before something gets done to rectify our appalling broadband service in Shetland once and for all?
    Heres my latest BT speedtest result
    FAQ
    This Test comprises of Best Effort Test: -provides background information.
    Download  Speed
    130 Kbps
    0 Kbps
    2000 Kbps
    Max Achievable Speed
     Download speedachieved during the test was - 130 Kbps
     For your connection, the acceptable range of speeds is 400-2000 Kbps.
     Additional Information:
     Your DSL Connection Rate :2368 Kbps(DOWN-STREAM), 448 Kbps(UP-STREAM)
     IP Profile for your line is - 2000 Kbps
    As you can see its a desultory 130kbps
    Heres my router stats:
    ADSL line status
    Connection information
    Line state
    Connected
    Connection time
    10 days, 9:39:21
    Downstream
    2,368 Kbps
    Upstream
    448 Kbps
    ADSL settings
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    ITU-T G.992.1
    Latency type
    Interleaved
    Noise margin (Down/Up)
    9.6 dB / 17.0 dB
    Line attenuation (Down/Up)
    57.0 dB / 29.0 dB
    Output power (Down/Up)
    18.0 dBm / 12.1 dBm
    Loss of Framing (Local)
    0
    Loss of Signal (Local)
    0
    Loss of Power (Local)
    0
    FEC Errors (Down/Up)
    10102968 / 38
    CRC Errors (Down/Up)
    5399 / N/A
    HEC Errors (Down/Up)
    N/A / 25
    Error Seconds (Local)
    2836

    Further BT speedtest result:
    FAQ
    Test1 comprises of Best Effort Test: -provides background information.
    Download  Speed
    651 Kbps
    0 Kbps
    2000 Kbps
    Max Achievable Speed
     Download speedachieved during the test was - 651 Kbps
     For your connection, the acceptable range of speeds is 400-2000 Kbps.
     Additional Information:
     Your DSL Connection Rate :2368 Kbps(DOWN-STREAM), 448 Kbps(UP-STREAM)
     IP Profile for your line is - 2000 Kbps

  • Here we go again - all pear-shaped and customer on the warpath...

    This customer of mine seems destined to suffer one disaster after another. This time, they ran out of space on the boot drive sometime last Friday night - this time for fairly reasonable reasons (although named.log was about 15Gb in size for some reason). Mail had fallen over due to lack of space. I got in and found some space (55Gb no less), rebooted the server and expected all to be well. However, mail services will not work now.
    The first thing I noticed was this:
    relay=none, delay=28030, status=deferred (delivery temporarily suspended: connect to 127.0.0.1[127.0.0.1]: Connection refused)
    I thrashed about a bit in my usual cack-handed way and eventually ran mailbfr -o to see if there was an ownership problem involved.
    The next thing I noticed was that after two or three attempted receipts of incoming mail, this happens:
    postfix/master[649]: terminating on signal 15
    The system log shows:
    deliver[666]: connect(/var/imap/socket/lmtp) failed: No such file or directory
    Now, the thing that's pressing on my mind is that the configuration worked nicely until the server ran out of space. Some config file somewhere must be corrupt but I'm unable to see it. I've stared at main.cf and master.cf until my eyes hurt and nothing seems wrong. There's no 'lmtp' in the socket directory but I can't see how to put one there - that's postfix's job, isn't it?
    Naturally any attempt to connect from a mail client while the system is up is refused (squirrelmail reports an error 61 - Mail just says the connection is refused).
    There have been no entries to the server admin mailaccess log or imap log since before the space ran out.
    More in hope than expectation, I also ran mailbfr -f but I don't really think the problem lies with the database. Postfix has its knickers in a twist and I can't get a handle on what's gone wrong.
    By the way - it's an Xserve which was running 10.4.9 at the time but the customer updated it to 10.4.10 this morning thinking this might help. All other services, e.g. DHCP, NAT, firewall, afp, print, web, windows, are working fine.
    Tell me what to look for someone?
    Justin

    Thanks for responding. It's really reassuring to know you're out there. Quick look at imapd.conf and cyrus.conf and they look "normal" - at least the same as the equivalents on a known working server. Here they are:
    cyrus.conf:
    standard standalone server implementation
    START {
    # do not delete this entry!
    recover cmd="ctl_cyrusdb -r"
    # this is only necessary if using idled for IMAP IDLE
    # idled cmd="idled"
    # UNIX sockets start with a slash and are put into /var/imap/socket
    SERVICES {
    # add or remove based on preferences
    imap cmd="imapd" listen="imap" prefork=0
    # imaps cmd="imapd -s" listen="imaps" prefork=0
    # pop3 cmd="pop3d" listen="pop3" prefork=0
    # pop3s cmd="pop3d -s" listen="pop3s" prefork=0
    sieve cmd="timsieved" listen="sieve" prefork=0
    # at least one LMTP is required for delivery
    # lmtp cmd="lmtpd" listen="lmtp" prefork=0
    lmtpunix cmd="lmtpd" listen="/var/imap/socket/lmtp" prefork=0
    # this is only necessary if using notifications
    # notify cmd="notifyd" listen="/var/imap/socket/notify" proto="udp" prefork=1
    EVENTS {
    # this is required
    checkpoint cmd="ctl_cyrusdb -c" period=30
    # this is only necessary if using duplicate delivery suppression
    delprune cmd="ctl_deliver -E 3" at=0400
    # this is only necessary if caching TLS sessions
    tlsprune cmd="tls_prune" at=0400
    LIMITS {
    imaplimit value=400
    imapd.conf:
    admins: cyrus admin
    configdirectory: /var/imap
    partition-default: /Volumes/Archive/m+m
    unixhierarchysep: yes
    altnamespace: yes
    servername: mail.mandm.uk.com
    sendmail: /usr/sbin/sendmail
    logrollingdays: 7
    logrolling_daysenabled: true
    popauthgssapi: yes
    imapauth_crammd5: yes
    enable_pop: no
    popauthclear: no
    quotawarn_frequencydays: 0
    # lmtpluser_relayenabled: true
    mboxlist_db: skiplist
    seenstate_db: skiplist
    tlscertfile: /etc/certificates/Default.crt
    tlskeyfile: /etc/Certificates/Default.key
    imapauthgssapi: yes
    imapauthclear: no
    I'm curious about the remarked out line above (it doesn't appear at all in the other server's file) but other than that...
    I'm going to look into this further and try to understand what makes amavisd and cyrus go.
    Thanks
    Justin

  • *Sigh* Here we go again - GCU $30 promo

    Okay, BBY, this seems to be an almost regular occurance for me to have some sort of purchase issue due to the fact that all stores operate under their own individual management styles instead of having a formatted policy and style across the board. This is a HUGE inconvenience as it's both a waste of my time and patience as a regular BBY customer. I was to start that the store personnel are all very friendly and attempted their best to make it work, but in the end, they were not able to help me and gave me an explanation that contridicted the weekly flyer, forum discussions, and others' experiences.
    The weekly flyer states that I should be able to extend my GCU memebership by 2 years for $30 based on the purchase of a new game of $40+. I pre-ordered (online) Sunset Overdrive for Xbox One, which was shown in the photo of the promotion, and well over the $40 price. I was informed that they tried to put it in the system but it showed as full price for the membership. I was also informed by the girl working at the pick-up counter that it was a deal that was only for this past weekend, which would make no sense as there is no date listed in the flyer other than the front date range that shows the flyer applies from 10/26 through 11/1 or whatever.
    Please tell me how I go about getting this added to my account. I would prefer NOT to go back into a store as I spend over an hour round trip going to BBY. I would also like to add that it was mentioned in this forum by a BBY Support member that all stores were informed of this promotion and that they would be able to find a way to make it work. I don't care if you charge me for it somehow online, over the phone, or offer me a freebie extension as a courtesy for all of the customer service issues, but BBY, what's up with that?
    I know I'm asking for it for another 2 years of this, but it's the best deal going and I want to make sure I get it based on a qualified purchase during the promotional period. I am sure you can look at my order history, but this was at the Poughkeepsie, NY location.

    Hello ToxicLogics,
    I realize this may not be the answer you were hoping for, but you must return to your local store for assistance with this issue -- Gamers' Club Unlocked memberships are only available for purchase at our U.S. retail stores. You will also need to return your copy of Sunset Overdrive and repurchase it with a GCU membership on the same transaction to take advantage of this offer. Doing so should not affect your pre-order bonuses, but we'd invite you to let us know if you don't receive them within the usual timeframe (15-20 days for pre-order bonus certificates, 24-48 hours for bonus DLC).
    Thank you for your understanding, as well as for taking the time to post!
    Aaron|Social Media Specialist | Best Buy® Corporate
     Private Message

Maybe you are looking for