I've created a custom resolution using SwitchResX

and i cant figure out how to apply it. It does not show up in the system prefs or the current resolutions box of switchresx...
any help would be much appreciated.
I'm trying to use my samsung HDTV (model HLR4266wx/xaa) as a secondary monitor for my 15" MBP...
So far i've been able to get a custom resolution (1280 x 720 - 60 Hz) to be active, but how do i actually apply it to the TV? I'm probably an idiot - but it's not available in the system prefs or the current resolutions box (and I can't even w\switch between the ones that do show up...)
help please - thanks

+none of the available resolutions are any good+
When you have the external Display Preference Panel showing on the external screen and you click the 'Colour' Tab what Display Profiles are showing there, if you uncheck 'Show profiles for this display only' do others appear, are none of the options any good ?
You need to create a new Profile by the sound of it, click 'Calibrate' across right and follow all the prompts and adjustments until you get things looking right then save it with a name ...
If you already have a valid profile make sure it's in either:
/Library/Colorsync/Profiles (System wide)
~/Library/Colorsync/Profiles (User folder)
Then it should show in the Preference Panel mentioned above.

Similar Messages

  • Can I create a custom resolution of 1440x900 for my retina screen in a bootcamp Windows 7?

    I was wondering the best setting for using Windows 7 on my Retina screen with the intention of gaming. I was thinking that 1440 x 900 would be the best resolution as 4 retina pixels will map exactly to 1 on screen pixel.  Unfortunatey this does not exist in the settings.
    NVIDA does allow custom resolution but gives a big warning about it destroying your screen - so I thought I would ask before I create one. If I create a custom resolution of 1440x900 and leave all other settings as default, will this be ok for the retina screen?
    Also, am I barking up the wrong tree? Should I set it to a different already support resolution?
    What do other people find the best resolution for gaming?

    As far as I know, you're limited to what is provided; there's no way to customize it.

  • Creating SharePoint Custom List using a list using a Microsoft.SharePoint.Client.ClientContext object: Lists.Add method from existing Template does not Include Template Content (include content was checked for template)

    The code below works assuming you have a list template setup called "GenTasksTemplate".
    The problem is that even though the check box to include content was checked during the creation of the template, the task items in the new list do not get populated.  What am I missing?
    using System;
    using System.Linq;
    using Microsoft.SharePoint.Client;
    protected void createSPlist(object sender, EventArgs e)
    ClientContext context = new ClientContext("https://sharepointServer/sites/devcollection/");
    var web = context.Web;
    ListTemplateCollection ltc = context.Site.GetCustomListTemplates(context.Web);
    ListCollection siteListsColection = web.Lists;
    context.Load(ltc);
    context.ExecuteQuery();
    ListCreationInformation listCreationInfo = new ListCreationInformation
    Title = "New Task from Template",
    Description = "Tasks created from custom template"
    Microsoft.SharePoint.Client.ListTemplate listTemplate = ltc.First(listTemp => listTemp.Name == "GenTasksTemplate");
    listCreationInfo.TemplateFeatureId = listTemplate.FeatureId;
    listCreationInfo.TemplateType = listTemplate.ListTemplateTypeKind;
    listCreationInfo.DocumentTemplateType = listTemplate.ListTemplateTypeKind;
    //listCreationInfo.CustomSchemaXml =
    siteListsColection.Add(listCreationInfo);
    context.Load(siteListsColection);
    context.ExecuteQuery();
    http://www.net4geeks.com Who said I was a geek?

    Yes. I can create a list with the template using the UI.  I can also create list programmatically using the Microsoft.SharePoint library within a Windows Forms Application.  If I do create a provider-hosted app referencing Microsoft.SharePoint,
    it results in a 64bit / 32bit mismatch error.  I am running SharePoint 2013 on a 64 bit Windows 2012 Server.
    The problem is that with a provider-hosted SharePoint App, I am limited to only using the Microsoft.SharePoint.Client library which is very limited.
    http://www.net4geeks.com Who said I was a geek?

  • Problem while creating a custom document using JAVA API in the current Folder

    I am trying to create an instance of a custome type from the API. I have created a custom type via XML. I have associated a JSP with the custom type thru iFS manager. This jsp provides an interface for the user to enter various data. On submit I call some other jsp also loaded into the /ifs/webui/jsps which calls a method in the java class to create an instance of the above mentioned type. This instance needs to be created in the current directory and not in the home directory of the user. I have written a java program which when run from JDeveloper connects to the repository and creates the object, but not as a foldered object. If I load this class into custom_classes directory, I get an exception. I am attaching the code also here which does the actual processing.
    package cms;
    import oracle.ifs.agents.common.*;
    import oracle.ifs.agents.manager.*;
    import oracle.ifs.agents.server.*;
    import oracle.ifs.beans.*;
    import oracle.ifs.common.*;
    public class ContentModule extends Object {
    public static final String CLASSNAME = "CONTENT";
    public static final String TOPICID_ATTRIBUTE = "TOPICID";
    public static final String SITEID_ATTRIBUTE = "SITEID";
    LibrarySession m_session;
    public ContentModule() {
    connectToRepository();
    createDocument("AM5","s");
    public void connectToRepository(){
    try{
    LibraryService l_service=new LibraryService();
    CleartextCredential l_credential = new CleartextCredential("system","manager");
    ConnectOptions l_options=new ConnectOptions();
    l_options.setServiceName("IfsDefault");
    l_options.setServicePassword("ifssys");
    m_session=l_service.connect(l_credential,l_options);
    }catch(IfsException ex){
    ex.setVerboseMessage(true);
    ex.printStackTrace();
    public void createDocument(String p_docName,String p_docContent){
    try{
    DocumentDefinition l_doc=new DocumentDefinition(m_session);
    l_doc.setClassname(CLASSNAME);
    long newId1=5;
    long newId2=5;
    FolderPathResolver l_currentPath=new FolderPathResolver(m_session);
    Folder l_currentFolder=l_currentPath.getCurrentDirectory();
    l_doc.setAddToFolderOption(l_currentFolder);
    l_doc.setName(p_docName);
    l_doc.setContent(p_docContent);
    AttributeValue av1 = AttributeValue.newAttributeValue(newId1);
    l_doc.setAttribute(TOPICID_ATTRIBUTE,av1);
    AttributeValue av2 = AttributeValue.newAttributeValue(newId2);
    l_doc.setAttribute(SITEID_ATTRIBUTE,av2);
    Document l_document=(Document) m_session.createPublicObject(l_doc);
    }catch(IfsException ex){
    ex.setVerboseMessage(true);
    ex.printStackTrace();
    public static void main(String[] args) {
    ContentModule contentModule = new ContentModule();
    Any help will be highly appreciated.
    Thanks

    Please print out the Verbose Stack Trace generated when you run this application.
    I suspect that you FolderPathResolver is not pointed at the directory you think it is. You might want to try printing out
    I_CurrentFolder.getAnyFolderPath();
    and I_CurrentFolder.getName();
    null

  • Create a customer code using the First letter of a customer name and the last 4 digits of a phone number

    I am trying to create a form where one the customer has input their name and phone number it should grab the first letter of the customer's name and then the last 4 digits of the phone number.
    I am not very good at coding, and have VERY VERY limited background in coding. I understand a little (the basics pretty much).
    I am thinking i am not using the right expression to get what i want. Below is the statement I have write. This is just to find the first letter of the name, have an idea on how to get the phone number but i was trying the use the "left" and "right" functions but they wouldn't work. More specifically the left.
    form1.#subform[0].CustCode::initialize - (JavaScript, client)
    str = CustName;
    var a = str.substr(0, 1);
    any help would be greatly appreciated.
    If more information is needed, please don't hesitate to ask.

    If you switch your language to FormCalc you can use the Left and Right functions, e.g.
    Concat(Left(Name,1) , Right(Phone,4))

  • Creating a custom link using the Action Wizard

    Hi everyone! I hope someone can help me.
    I would like to create an action, using the Action Wizard, to make custom links. I work with extremely large PDF documents at a major airline. I am in charge of watermarking and linking all support manuals for the airplanes. We have a custom watermark that we apply to particular pages, and also link them to updated pages on our own private server. I think the linking process could be made faster with a custom action.
    Currently I use this code:
    app.launchURL("CODE", true)
    The "code" is the web address of the document online. This works fine, however, I still have to click the link button, reposition the link, and edit the code for the particular page. Then I have to do that hundreds of times a week.
    I'd like a link action, where I can click one button and the link is perfectly drawn and placed in the exact location I require (this never changes; The link is always the same size and in the same location). I'd like this to work the same as my custom watermark action works. With my watermark action, I simply specified where the watermark went on the page, what type size, color, etc. using javascript. I'm hoping I can do the same thing with a link; Simply state what diminsions the link box needs to be and where it's located on the page.
    If this is possible, I'd be able to do both in one click; Apply my watermark with a link box already drawn on top of it. Then all I'd need to do is edit the link with the web address of the file I'm linking to.
    I hope this makes sense. Any help would be appreciated!
    Matthew~

    Okay, I'm really close to what I want. If you could help me with this one little thing, I'll be golden.
    My watermark is text that says "See Supplemental Information". I'm using a script that finds words and draws a link around them. That's perfect for me, except I need to search for the entire phrase "See Supplemental Information".
    Here is my code:
    /* LINKING */
    for (var p = 0; p < this.numPages; p++)
                        var numWords = this.getPageNumWords(p);
                        for (var i=3; i<numWords; )
                                  var ckWord = this.getPageNthWord(p, i, true);
                                  if ( ckWord == "See Supplemental Information")
                                            var q = this.getPageNthWordQuads(p, i);
                                            // Convert quads in default user space to rotated
                                            // User space used by Links.
                                            m = (new Matrix2D).fromRotated(this,p);
                                            mInv = m.invert()
                                            r = mInv.transform(q)
                                            r=r.toString()
                                            r = r.split(",");
                                            l = addLink(p, [r[4], r[5], r[2], r[3]]);
                                            l.borderColor = color.red;
                                            l.borderWidth = 1;
                                            l.setAction("app.launchURL('https://website.com', true)");
    The code works if I only search for one word, but when I try to search for a phrase, it doesn't do anything. Is there a way to search for an entire phrase like what I need?
    Thanks for all your help.
    Matthew~

  • Is there a way to create a custom display resolution on the Macbook Pro?

    I have been able to do this with switchresx but can't really afford to spend the money to buy the full version. Can I create a custom resolution somehow? Be it through terminal or something else?

    It's $19.00 to purchase.
    Display Maestro is $5.00.
    QuickRes is $5.00.

  • Cant get any widescreen resolutions using a MDP - VGA adpater

    I recently purchased an Official Apple Mini-display port to VGA adpter for use with 2011 unibody MacBook Pro and Samsung Syncmaster 2232 BW external monitor. When plugging everything in and going into displays, I am presented with the attatched display,
    with no option for any 16:10 resolutions, everything non widescreen down from 1600 x 1200. I've tried SwitchResX with no avail, and don't know what else to try? This is my monitor and its Native settings are 1680 x 1050
    Any suggestions?

    I have resolved this problem, and will explain how for the sake of anyone else who enctounters it.
    Instal SwitchResX, create a Custom Resolution with the exact same settings as the MacBook's 1680 x 1050 display mode, save and apply it (will need restart) . You can then Uninstall SwitchResX, and the custom resolution shall remain stored in the System Preferences > Display. This is good as you don't need to purchase SwitchResX, you can just use the 10 day trial, however if you need the other facilities of the program I would recommend you support the developers.
    Hope this helps others out who get stuck with the same annoying problem!

  • Custom Report using Metrics of Instance and Server

    Hello
    I need to create a custom report using different instance and server metrics like:
    File System Space Available
    Tablesapaces
    Database Spaces usage
    Sort in Memory
    library Cache Hit
    Data Dictionary Hit
    Buffer Cache Hit
    I already made the report, but I can´t change the size of the graphic (for a better presentation on my report)....
    Do you know how can I change the size of the report?
    I think that I´m using a "metric" so for that reason I Can´t change the size ... :(

    I am currently having a problem with this report and drilldown to KSB1, the cost centers selected int S_ALR_87013611 are not transferring to KSB1 and thus all the cost centers come up in the call to KSB1, are you experiencing this problem? I am on V4.7

  • Custom Extractor using FM for Delta Upload

    Hi,
    I created a Custom Extractor using FM for Full Upload. The requirement now is that it should be able to handle Delta also.
    I used the standard FM RSAX_BIW_GET_DATA_SIMPLE to create my Z FM.
    Please suggest me the changes I have to make in this to be able to upload Delta also.
    Thanks
    Nageswara

    Hi Mahesh,
    You can selectively load from BI side (through Infopackage) and for that you should have those selection field defined as ranges in your FM.
    As per my genius friend Sidharth Gupta:
    FM RSAX_BIW_GET_DATA_SIMPLE is a funct. Mod having a simple interface in which I_UPDMODE is not used. Actually FM RSAX_BIW_GET_DATA_SIMPLE is used for a full update and uses an F2 extraction method. However through ABAP we can try to make it delta capable like below.
    *Declare
    DATA  I_UPDMODE.
    Now to capture delta on AUDAT
           I_UPDMODE = u2018 u2018.
    LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'AUDAT'.
                MOVE-CORRESPONDING L_S_SELECT TO L_R_AUDAT.
                 I_UPDMODE = u2018 D u2019.
                APPEND L_R_AUDAT.
              ENDLOOP.
    This code works however is not flexible as you do not use a CASE stmt on I_UPDMODE.
    CASE stmt gives more flexibility which is used in FM RSAX_BIW_GET_DATA.
    FM RSAX_BIW_GET_DATA is a funct. Mod having a complete interface in which I_UPDMODE is passed to funct mod during its call.FM RSAX_BIW_GET_DATA can be  used for all update types and uses an F1 extraction method. However after writing the funct mod the default extraction method is F2 in table ROOSOURCE which needs to b changed to F1 for ur mod to work.  This change from F2 to F1 can be done via test abap code.
    Part two of that Article is yet to be published so wait for sometime or follow above mentioned approach.
    Hope it helps.
    Regards,
    Ashish

  • Custom cursor using image gets resized bigger

    I have created a custom cursor using the following code:
    ClassLoader cl = this.getClass().getClassLoader();     
    Toolkit tk = Toolkit.getDefaultToolkit();
    Image im = tk.getImage( cl.getResource("images/wallcursor.gif"));
    Cursor Custom_Cursor = tk.createCustomCursor(im,new Point(9,9),"Drawing wall");
    draftGrid.setCursor( Custom_Cursor );The cursor is loaded and it works, however - the image I use for the cursor is resized so it gets too big. Any clues on why this happens?
    btw; draftGrid is one of my own classes that extends JComponent.
    - bjorn

    Thanks for your replies guys.
    I tried your code KPSeal, and it works in resizing the cursor image back to its original size. However, a gray square of size 32,32 (which is returned by getBestCursorSize()) is shown round the cursor.
    Here is the updated code (yours hade some minor bugs)
    Image im = tk.getImage( cl.getResource("images/wallcursor.gif"));
    try {
           tracker.addImage(im, 0 );
           tracker.waitForID(0);
    } catch( InterruptedException ie ) {
           ie.printStackTrace();
    int w = im.getWidth(this);
    int h = im.getHeight(this);
    int pw = Toolkit.getDefaultToolkit().getBestCursorSize(w, h).width;
    int ph = Toolkit.getDefaultToolkit().getBestCursorSize(w, h).height;
    System.out.println("w="+w+", h="+h+" - pw="+pw+", ph="+ph);
    Image cim = createImage(pw, ph);
    cim.getGraphics().drawImage(im,0,0, this);                     
    Cursor Custom_Cursor = tk.createCustomCursor(cim,new Point(0,0),"Drawing wall");
    draftGrid.setCursor( Custom_Cursor );The System.out.println statement prints: w=18, h=13 - pw=32, ph=32
    If I try to do the createImage with w and h instead of pw and ph the same gray square (32,32) is created, and in addition the cursor's size is too big which was the probem to begin with ...
    - bjorn

  • Custom Infotype - Using Table control in the screen.  IN OM

    Hi,
    I am having a requriement where in I need to create a custom infotype using table control in the screen. I have to create this in OM and I am using PPCI transaction to create the info type. I am able to create the infotype with fields but not table control. Please let me know if any one of you came across and help me with the process I need to follow.
    Thanks in advance.
    Venkat.

    Hello,
    After you create the info type throug PPCi, you can directly go to the Sceen module program created automatically while creating Info type and edit the screen.
    activate it after your changes.
    Regards,
    Srujan.

  • How to create a Custom DC

    Hello,
    I am on EP7.0 NW04s ECC6.0 and want to create a custom DC using the Floor Plan Manager just like any other ESS Personal Information service like Address,Banks etc. to update a custom infotype.
    How should I go about this..?
    Any help would be highly appreciated.

    Use JavaScript from the Acrobat SDK Sample script below.  Note you will need to change the cPath to a location on your hard drive (e.g. /c/Action Folder/  equals the path on your hard drive "C:\Action Folder").
    /* Extract pages to folder */
    // Regular expression used to acquire the base name of file
    var re = /\.pdf$/i;
    // filename is the base name of the file Acrobat is working on
    var filename = this.documentFileName.replace(re,"");
    try {for (var i = 0; i < this.numPages; i++)
              this.extractPages({
                   nStart: i,
                   cPath: "/F/temp/"+filename+"_" + i +".pdf"
    } catch (e) { console.println("Aborted: " + e) }

  • How to Import Custom Scale using Field Piont I/O

    I need to READ   a 0 to 100 Newton strain gauge on graph chart. 
    It is a full bridge with an excitation Voltage of 10V.   The field point Input module FP-SG-140 is configured for a range of -3.9... to +3.9 mV/V
    I know how to create a custom scale using DAQ assist but the option does not appear using Field Point.

    Hello belangem,
    Have you considered using the Scaling and Mapping Express VI or programming your own scaling algorithm in LabVIEW to manually convert the strain readings to force?  The Scaling and Mapping Express VI allows you to apply similar types of scales to the DAQ Assistant, such as linear, logarithmic, interpolated from a table of points, etc.
    If you really need the Fieldpoint driver to perform the scaling for you, some Fieldpoint modules support scaling.  You can configure a scale on a channel in Measurement & Automation Explorer (MAX) by going to your Fieldpoint Items under Data Neighborhood, selecting a channel in your module, and click on the Scaling tab on the bottom of the screen.  Unfortunately, I don't have a FP-SG-140 module around to try out, but I know the scaling feature is available for my FP-AI-110.  I'm using Fieldpoint 5.0 with MAX 4.0.
    I hope this helps,
    Travis G.
    Applications Engineering
    National Instruments
    www.ni.com/support
    Message Edited by Travis G. on 06-22-2006 10:21 PM
    Attachments:
    FieldpointScales.Jpg ‏46 KB

  • Creating a custom DC in the NWDI Track.

    Hi,
    How to create a custom DC using NWDS and add it to the NWDI track in 7.0. Your valuable suggestions are highly rewarded.
    Thanks!
    Surya.

    Dear Guru's,
      When I try to create a DC project in NWDI with vendor as test and DC name as test2, its giving me the following error message and doesn't allow me to create the DC project.
    Syntaz of test/test2 is not valid. Invalid name; on this server no names of category  SAP_DevelopmentComponentName are allowed at all.
    Can you please advice me here.
    Thanks.

Maybe you are looking for