Wednesday, July 27, 2016

Action Touch Up Categories


  1. Beautify
    1. Teeth whitening
    2. Bright eyes
    3. Soften skin effect
  2. Fix / Enhance
    1. Remove white background
    2. High definition sharpening
    3. Noise Reduction

Tuesday, July 26, 2016

Effect Action / Filter Categories


  • Polaroid Generator
  • STICKERS n TAPE
  • Sticker
  • Stamp Generator
  • Reflections
  • Pencil Draw

Thumbnail for Windows Explorer

SageThumbs

Thumbnail picture for Windows/File Explorer
To enable thumbnails for Adobe Illustrator (ai), Postscript (ps, eps) and Adobe Acrobat (pdf) files you need installed old Ghostscript library / AFPL Ghostscript library.


XnView
XnView Shell Extension
XnView GFL Library (legacy)

Action / Filter Categories


  • Photo filters
    • Vintage photo filters
    • Monochrome photo filters
  • Touch-up techniques
  • Special effects
    • Text

Monday, July 25, 2016

Microsoft Word - Options 2

Autocorrect Options
  • Set left- and first-indent with tabs and backspaces

Saturday, July 23, 2016

Paragraph Alignment in CSS

Paragraph Alignment in :

Cascading Style Sheet (CSS)

for Text

using properties: text-align
value:
  • left
  • right
  • center
  • justify
default value in many CSS properties:
  1. initial = like reset.
  2. inherit = follow it properties value.
for image
using objects, images, tables, frames, etc.
using : float and clear.

alternative:

HyperText Markup Language (HTML)

Using HTML 4 align attribute, but not supported in HTML 5
attribute "justify" is supported by element :
  • p, div, h1, h2, h3, h4, h5, h6
  • col, colgroup, tbody, thead, tfoot, tr, th, td.
  • or block elements (tables, images, objects, paragraphs, etc.) 

HTML Special Character

soft hyphens (­)

Friday, July 22, 2016

Web Server Configuration

Server Configuration
Application Specific Configuration
General Configuration

Tuesday, July 19, 2016

Make too Much in CorelDraw

Copy & Paste (Ctrl+C & Ctrl+V)
Duplicate (Ctrl+D)
Clone
Repeat (Ctrl+R)
Step and Repeat (Ctrl+Shift+D)
Transform Docker
Shaping
Hidden Command using Mouse Only, Mouse & Keyboard
Convert Outline to Object (Ctrl+Shift+Q)

Animation With Power Point 2

Shapes:

  1. Rectangle
  2. Rectangle
Shape Properties:
  1. rectangle 1
    1. HxW : 4,17x6,15 cm
    2. Fill (color) : Solid fill > Orange, Accent 6, Darker 50%
    3. Line Color : Solid line > Black, Text 1, Lighter 15%
    4. Line Style : Width > 2pt
    5. Shadow : Presets > Outer > Offset Diagonal Bottom Right
  2. rectangle 2
    1. HxW : 1,29x0,77 cm
    2. Fill (color) : Solid fill > White, Background 1
    3. Line Color : No line
    4. Glow : Black, Text 1, 5pt glow
Animation
  1. Arc Up, Start: On Click, Speed: Medium
  2. Pinwheel, Start: With Previous, Speed: Slow

Paste unformatted text - macro word

Paste unformatted text - macro Microsoft Word

Sub PasteUnfText()
'Paste unformatted text
'----------------------
Selection.PasteSpecial _
DataType:=wdPasteText, _
Placement:=wdInLine
'--- argument
'Word.WdPasteDataType
'Word.WdOLEPlacement
End Sub

[Pre Step] Macro Microsoft Office


  1. Set up the macro
    • Activate / Change Macro Security Settings
    • enter a macro name and description. Follow these rules for the name: 
      • Macro names must begin with a letter and use either letters or numerals. You cannot use spaces, non-alphanumeric characters, or periods.
      • Macro names can be 80 characters maximum
      • Macro names cannot conflict with the program’s reserved commands or keywords such as Print, Save, Copy, Paste.
      • Descriptions are just notes that summarize the macro’s function.
    • identify object's hierarchy structure
  2. Define The Macro
    • ensure where to store/save macro file location
    • assign to user interface and keyboard shortcuts
    • try to record macro
  3. Implement and Testing
    • clean some macro code if needed.
    • delete any other macro if you don't need.