Nebel Skulptur

Wirklich sehenswert ist die von Wired.com dokumentierte Installation “Nebula” - künsterlisch und technisch eine tolle Leistung.

Posted in Inspiration | Tagged , | Leave a comment

Ein Klassiker neu entdeckt: Understanding Media

Marshall McLuan gilt immer noch als Vordenker der Medienlandschaft (“The Medium Is The Message”). Seine Thesen sind universal heute immer noch aktuell. Habe das Buch wieder ausgegraben und empfehlen jedem aus der Medienbranche die Lektüre: Understanding Media: The Extensions of Man

Posted in Theorie | Leave a comment

Use as3corelib in conjunction with Flex 4

The popular ActionSript 3 Core Library is still a valuable help in many Flex projects. Started as library to be used with Flex 2 it is actively developed and can still be used with the current Flex 4.x SDKs, and of course Flash Builder 4.
Unfortunately it is not obvious to use it in Flash Builder 4 since there is no as3corelib.swc compiled by Flex 4.x (or it is so hard to find that I couldn’t work it out).

So let’s build the library by ourself:

  1. Download the source archive (Note: the project moved from Google Code to github).
  2. Unpack it to a folder.
  3. In Flash Builder 4 select “File” > “New” > “Flex Library-Project”
  4. Enter a name (e.g. “as3corelib”)
  5. Select the directory of the unpacked projects
  6. Select in the section “Flex SDK-Version” Flex 4.1 (or higher), if this is not your standard SDK.
  7. And this is important: Select “Include AIR-Runtime-Libraries” – otherwise you’ll get include errors
  8. Click on the “Done” button
  9. Now you’ve got a brand new Flex library project
  10. Launch the “application” by “Run” > “Run main”
  11. This should result to a fresh compiled “as3corelib.swc” in your bin path of the unpacked as3corelib source archive

 

Posted in Tools, Werkzeuge | Tagged , , , , , , | Leave a comment

Adobe stellt Creative Suite 5.5 vor


Adobe stellt Creative Suite 5.5 vor. Das Hauptaugenmerk liegt auf dem Publizieren von Inhalten auf mobilen Geräten. Mehr dazu auf Heise.de: Adobe stellt Creative Suite 5.5 vor

Posted in Produkte | Tagged , , | Leave a comment

A Light Sensation

The making of a Light Session- Tron Premiere- ENESS from ENESS on Vimeo.

Posted in Inspiration | Tagged , , , | Leave a comment

Hochwertige Industriefotografie


Indumil stellt Waffen her. Die Website und vor allem Fotografien sind mehr als einen Blick wert – ein Paradoxum. Man sollte in gleicher Ästhetik die Auswirkungen von Waffengewalt zeigen.

Posted in Ethik, Inspiration | Leave a comment

Black swan VFX uncovered



zalando.de - Schuhe und Fashion online


 

 
Good overview of all visual effects within the movie Black Swan.

Posted in Inspiration, Knowledge, Technic | Leave a comment

XML Tidy Script for TextWrangler

If you like to add a XML beautifier to the TextWrangler Editor, create this script (name it ‘XML Tidy.sh’) in the Filters Folder (script menu>Unix Filters>Open Filters Folder):

#!/bin/sh
xmllint --format "$1"
Posted in Tools, Uncategorized | Leave a comment

ENVISION : Step into the sensory box on Vimeo

ENVISION : Step into the sensory box on Vimeo on Vimeo

via ENVISION : Step into the sensory box on Vimeo.

Posted in Inspiration | Leave a comment

MoinMoin EmbedObject macro patch for PDF scaling

MoinMoin wiki offers a default macro for embedding objects, like video, audio or pdfs etc. into a wiki page using HTML raw markup: the <object> node. For different types you can change parameter values in the output, most important the height and width of the embedding canvas. But Adobe Acrobat(r) offers also an object attribute to set the initial scaling of the document displayed, called zoom.

In order to add this attribute to the EmbedObject macro (resides in the macro directory of MoinMoin, like <moin-install-dir>/MoinMoin/macro/EmbedObject.py) for PDF embedding follow this steps:

  1. Add the zoom parameter (green highlighted) to the macro_EmbedObject function definition:
    def macro_EmbedObject(macro, target=wikiutil.required_arg(unicode), pagename=None,
        width=wikiutil.UnitArgument(None, float, ['px', 'em', 'pt', 'in', 'mm', '%'], defaultunit='px'),
        height=wikiutil.UnitArgument(None, float, ['px', 'em', 'pt', 'in', 'mm', '%'], defaultunit='px'),
        zoom=None,
        alt=u'',
        play=False, stop=True, loop=False, quality=(u'high', u'low', u'medium'),
        op=True, repeat=False, autostart=False, align=(u'middle', u'top', u'bottom'), hidden=False,
        menu=True, wmode=u'transparent', url_mimetype=None):
  2. Extend the the application type handling section with the two green highlighted lines (in MoinMoin 1.9 it’s around line 197):
    elif mt.major == 'application':
        # workaround for the acroread browser plugin not knowing the size to embed
         # we use a width of 100% for the case that there is no width given.
         # A height of 100% gives a fullscreen pdf file view without embedding it into the wikicontent.
         if mt.minor == 'pdf':
             width = width or '100%'
             height = height or '800px'
             zoom = zoom or '100'
             embed_src = '''
    <object %(ob_data)s %(ob_type)s %(ob_width)s %(ob_height)s %(ob_align)s %(ob_zoom)s>
    <p>%(alt)s</p>
    </object>''' % {
     "ob_data": _check_object_value("data", url),
     "ob_width": _check_object_value("width", width),
     "ob_height": _check_object_value("height", height),
     "ob_type": _check_object_value("type", mime_type),
     "ob_align": _check_object_value("align", align),
     "ob_zoom": _check_object_value("zoom", zoom),
     "alt": wikiutil.escape(alt),
    }

That’s it. Please note that the zoom scaling attribute is only used by the Acrobat browser plugin. Safari’s included PDF viewing support ignores this attribute. If you know of another PDF viewer which interprets the zoom value to, feel free to leave a comment.

Posted in Tools | Leave a comment