Tag: Work

  • My Adobe Max Agenda for 2009

    Session 1, 10/5 Learn how easy it is to build rich Internet applications with Flash Catalyst — no programming necessary. This session covers the fundamentals of Flash Catalyst, including importing a design, adding interactivity and motion, creating your own components from artwork, structuring your design, the basics of interactive video, and publishing your design as…

  • Jar of Life – v. 0.2

    BA321 Spring 2009 ID: Lynne Johnson Issues/Lessons: Use smaller images when starting the Flash Project – compressing each image (under Library -> Properties for each bitmap) was time consuming and did not yield the best results.  I was still able to compress the swf down to 1.2MB from 4MB. The AS3 Garbage Collector is finicky…

  • Psych243, sp09, Modern View of Learning, GIF

    Animated GIF for Psych243 ID: Dong Li

  • Psych243, sp09, Traditional View of Learning

    FLV to Animated GIF conversion The original FLV was 1.5MB and was a very simple animation with no audio. It was produced with “Moyea Software” program. At some point, the FLV player wrapper got lost and we got complaints that it wasn’t working, so we decided to convert it to the simplest technology that will…

  • Psych 256, sp09, Short Term Memory, v. 0.1

    ID: Julie Laubach Concept: Jin Sung An and Brian Strauss Programmer/Designer: Jin Sung An Version: 0.1 (proof of concept, draft) Design Justification: The boxes were re-positioned so that the reader/student would start at the “Central Executive” box when reading up/down OR left/right. Some design cues/graphics are re-used from other animations in the same course for…

  • Psych256, sp09, Memory v. 0.1

    ID: Julie Laubach Designer/Programmer: Jin Sung An Version: 0.1, Draft/Proof-of-concept Original graphic:

  • Psych256, sp09, Visual v. 0.1

    ID: Julie Laubach Programmer/Designer: Jin Sung An Graphic contributions: Brian Strauss Draft/proof of concept Original graphic:

  • Psych441 sp09, The Stress Response v. 0.1

    ID: Dong Li Programmer/Designer: Jin Sung An Version: 0.1 Proof of concept/Draft Flash CS3, AS3

  • 100% height in most browsers

    http://codesnippets.joyent.com/posts/show/938 /* commented backslash hack \*/ html, body{height:100%;} /* end hack */ html,body {margin:0;padding:0} #outer{min-height:100%;height:auto;background:#ffffcc} * html #outer{height:100%;}/* ie6 and under*/

  • Indenting the second line in HTML/CSS

    http://codingforums.com/showthread.php?t=75685 This is a quick, elegant, simple way to indent the second line of an HTML element using CSS. The relevant code is basically: [some element] { padding-left: 1em; text-indent: -1em; } You can use it to manipulate most html elements.