This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package | |
| { | |
| import embeds.*; | |
| import flash.display.*; | |
| import org.swiftsuspenders.*; | |
| import org.tinytlf.*; | |
| import org.tinytlf.html.*; | |
| import org.tinytlf.util.TagSoup; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.tinytlf.html | |
| { | |
| import flash.utils.getTimer; | |
| import org.tinytlf.*; | |
| public class CSS extends Styleable | |
| { | |
| [Embed(source = "default.css", mimeType = "application/octet-stream")] | |
| private const defaultCSS:Class; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package | |
| { | |
| public class MyService | |
| { | |
| [Inject] | |
| public var session:ISession; | |
| private var startedSignal:ISignal; | |
| public function startMyService():ISignal | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package | |
| { | |
| import flash.display.*; | |
| import flash.text.engine.*; | |
| import org.tinytlf.layout.*; | |
| import org.tinytlf.layout.properties.LayoutProperties; | |
| import org.tinytlf.util.fte.ContentElementUtil; | |
| [SWF(width="500", height="300")] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.robotlegs.variance | |
| { | |
| public interface IPackageFilters | |
| { | |
| /** | |
| * Registers a package name to check against in <code>applyFilters()</code>. | |
| * | |
| * @see IPackageFilters#applyFilters | |
| */ | |
| function registerPackageFilter(packageFilter:String):void; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.puremvc.as3.multicore.utilities.lazy.interfaces | |
| { | |
| import flash.events.IEventDispatcher; | |
| public interface IFacadeAdapter | |
| { | |
| function getFQCN(clazz:Class):QName; | |
| function startup(eventBus:IEventDispatcher, startupCommandClass:Class = null, autoMediateCommandClass:Class = null):void; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package { | |
| import flash.errors.IllegalOperationError; | |
| import flash.utils.Dictionary; | |
| import flash.utils.Proxy; | |
| import flash.utils.flash_proxy; | |
| use namespace flash_proxy; | |
| public dynamic class ImmutableProxy extends Proxy { | |
| private const propertyMap:Dictionary = new Dictionary(); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.tinytlf.utils | |
| { | |
| import flash.utils.*; | |
| public function reflect(type:Object, refreshCache:Boolean = false):XML | |
| { | |
| const typeCache:Dictionary = ReflectionCache.cache; | |
| if(!(type is Class)) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * The MIT License | |
| * | |
| * Copyright (c) 2009 @author jessefreeman | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy | |
| * of this software and associated documentation files (the "Software"), to deal | |
| * in the Software without restriction, including without limitation the rights | |
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| * copies of the Software, and to permit persons to whom the Software is |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var css:String = | |
| "global{ | |
| fontName: Calibri; | |
| fontSize: 26; | |
| } | |
| #font1{ | |
| color: #00FF00; | |
| } | |
| #font1 #special1{ | |
| fontWeight: bold; |