Is it possible to give Photoshop CS5 the Dark UI like CS6?

325

Unfortunately, changing the colour of the interface isn't supported in Photoshop CS5. You may only change the colour of the area surrounding the document.

Share:
325

Related videos on Youtube

Bingfoot
Author by

Bingfoot

Updated on September 18, 2022

Comments

  • Bingfoot
    Bingfoot almost 2 years

    I'm in search of steps to accomplish the following. I have a monitoring API query that returns response body containing a value between 0 to 100. I want to create a SharePoint list field that will store the value that API call.

    For instance, imagine I have a SharePoint list of 3 rows.

    Row 1 calls the API and returns the value 90
    Row 2 calls the API and returns the value 60 Row 2 calls the API and returns the value 40

    I would like a column in the list to surface these values.

    Ideally, what I will do with these values is this. If the value is 90, I will show a GREEN status image in a status column of type image. If the value is 60, I will show a YELLOW status image in a status column of type image. If the value is 40, I will show a RED status image in a status column of type image.

    What I'm struggling to find through basic Google and Bing searches are any code that illustrates how and where an API query can be executed for every row in a SharePoint list and populate a column, say text OR numeric column

    ................................

    BY THE WAY, I haven't written my API function yet but my intent is to simply return a number between 0 to 100 in the response body. But I'd be curious to know how the guidance would change if the response body is fixed in JSON format. Can someone provide additional tips to parse the JSON body to retract the 90, 60 and 40 values?

    Thanks

    Bingfoot