Skip to content

Instantly share code, notes, and snippets.

Textmesh PRO norwegian ranges
33-122 (signs, digits, a-z, A-Z)
197,198,216 (Å, Æ, Ø)
229, 230, 248 (å,æ,ø)
201, 233 (É, é)
@feedmac
feedmac / selection2PNG.jsx
Created February 9, 2016 13:33
Photoshop JS script for quickly exporting selection to PNG.
app.displayDialogs = DialogModes.NO;
var pngSaveOptions = new PNGSaveOptions();
pngSaveOptions.compression = 9;
pngSaveOptions.interlaced = false;
var hasSelection;
var docRef;
var artLayer;
var width = app.activeDocument.width;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
using System;
using System.Collections.Generic;
namespace Helpers
{
public static class StringExtensions
{
public static bool IsNullOrWhiteSpace(string value)
{
if (value != null)