text
stringlengths
4
1.04M
/** * Translation date only used for the time being * * @langversion ActionScript 3.0 * @playerversion Flash 9.0 * @author Abraham Lee * @since nov.2009 */ package com.neopets.games.inhouse.FaerieBubblesAS3.game { //---------------------------------------- // IMPORTS //----------------------------------...
///////////////////////////////////////////////////////////////////////////////////// // // Simplified BSD License // ====================== // // Copyright 2013-2014 Pascal ECHEMANN. All rights reserved. // // Redistribution and use in source and binary forms, with or without modification, // ar...
package org.hyzhak.fluid.feathers { import feathers.controls.ScrollContainer; import feathers.layout.HorizontalLayout; public class HGroupBuilder extends GroupBuilder { final internal function initNewInstance() : HGroupBuilder { var layout : HorizontalLayout = new HorizontalLayout(); layout.gap = 0; ...
package awaybuilder.view.components.events { import flash.events.Event; public class ToolBarZoomEvent extends Event { public static const ZOOM_IN:String = "zoomIn"; public static const ZOOM_OUT:String = "zoomOut"; public static const ZOOM_TO:String = "zoomTo"; public function ToolBarZoomEvent(type:Strin...
package kabam.rotmg.assets { import mx.core.ByteArrayAsset; public class theMachineObjects extends ByteArrayAsset { public function theMachineObjects() { super(); } } }
package me.rainui.layout { import flash.display.DisplayObject; import flash.geom.Rectangle; import me.rainssong.utils.Directions; import me.rainui.components.Container; /** * @date 2018-12-30 0:38 * @author Rainssong * @blog http://blog.sina.com.cn/rainssong * @homepage http://rainsgameworld.sinaapp.c...
package org.bigbluebutton.lib.presentation.models { import org.bigbluebutton.lib.whiteboard.models.AnnotationStatus; import org.bigbluebutton.lib.whiteboard.models.IAnnotation; import org.osflash.signals.ISignal; import org.osflash.signals.Signal; public class Presentation { private var _fileName:String = ""...
package command { import base.Param; import com.adobe.images.PNGEncoder; import com.risonhuang.pixas.objects.PixelObject; import component.Alert; import component.Confirm; import events.ProjectCommandEvent; import flash.display.BitmapData; import flash.display.Sprite; import flash.events.Event; im...
package flash.display3D { final public class Context3DClearMask extends Object { public static const COLOR:int = 1 << 0; public static const DEPTH:int = 1 << 1; public static const STENCIL:int = 1 << 2; public static const ALL:int = COLOR | DEPTH | STENCIL; p...
package gaia.lib.tween.easing { public class Sine { private static const HALF_PI:Number = Math.PI * 0.5; public static function easeIn(p:Number):Number { return 1 - Math.cos(-p * HALF_PI); } public static function easeOut(p:Number):Number { return Math.sin(p * HALF_PI); } public static functi...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
// ================================================================================================= // // Starling Framework // Copyright 2011-2014 Gamua. All Rights Reserved. // // This program is free software. You can redistribute and/or modify it // in accordance with the terms of the accompanying license agreemen...
package jp.coremind.core { import jp.coremind.utility.Log; public class IdGenerator { public static const TAG:String = "[IdGenerator]"; Log.addCustomTag(TAG); private static const PREFIX_LAYER:String = "L"; private static const PREFIX_VIEW:String = "V"; ...
package com.ankamagames.dofus.network.messages.game.context.dungeon { import com.ankamagames.jerakine.network.CustomDataWrapper; import com.ankamagames.jerakine.network.ICustomDataInput; import com.ankamagames.jerakine.network.ICustomDataOutput; import com.ankamagames.jerakine.network.INetworkMessage; ...
/** * @package wav reader/writer library * @author jaco_at_pixeldump * @description part of lib * * NOTE: this is a draft stage, much work has to be done * If you plan to use this stuff, don't strip this header! * released under gpl v.2 - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html */ package it.pixel...
package one_arrow { import flash.display.Sprite; import flash.events.Event; import one_arrow.events.GameScreenEvent; /** * ... * @author Luis Miguel Blanco */ public class GameScreen extends Sprite { public static const START_MENU:int = 0; public static const GAMEPLAY:int = 1; public function Ga...
/* Copyright (c) 2010, Adobe Systems Incorporated All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of condition...
/* * Copyright (c) 2014-2019 Object Builder <https://github.com/ottools/ObjectBuilder> * * 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 ...
package game.hero { import com.sound.SoundManager; import flash.geom.Point; import flash.geom.Rectangle; import game.data.BuffData; import game.data.EffectSoundData; import game.data.Goods; import game.data.HeroData; import game.data.RoleShow; import game.data.SkillData...
package feathers.examples.todos { import feathers.controls.Button; import feathers.controls.Header; import feathers.controls.List; import feathers.controls.PanelScreen; import feathers.controls.ScrollContainer; import feathers.controls.TextInput; import feathers.data.ListCollection; import feathers.events.Feath...
//////////////////////////////////////////////////////////////////////////////// // // ADOBE SYSTEMS INCORPORATED // Copyright 2010 Adobe Systems Incorporated // All Rights Reserved. // // NOTICE: Adobe permits you to use, modify, and distribute this file // in accordance with the terms of the license agreement ac...
package sh.saqoo.filter { import flash.filters.ColorMatrixFilter; /** * @author Saqoosha */ public class ColorMatrixFilterFactory { /** * @see http://en.wikipedia.org/wiki/Luma_(video) */ public static function luma():ColorMatrixFilter { return new ColorMatrixFilter([ 0.2126, 0.7152, 0.07...
/** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/osl-3.0.php * If you did not receive a copy of ...
package tests.extendedsprite { import org.flixel.*; import org.flixel.plugin.photonstorm.*; import tests.TestsHeader; public class ExtendedSpriteTest7 extends FlxState { // Common variables public static var title:String = "Sprite Throw 1"; public static var description:String = "Throw a Sprite"; private...
//////////////////////////////////////////////////////////////////////////////// // // ADOBE SYSTEMS INCORPORATED // Copyright 2008 Adobe Systems Incorporated // All Rights Reserved. // // NOTICE: Adobe permits you to use, modify, and distribute this file // in accordance with the terms of the license agreement ac...
package starling.display.util { public class CurveUtil { // State variables for quadratic subdivision. private static const STEPS:int = 8; public static const BEZIER_ERROR:Number = 0.75; private static var _subSteps:int = 0; private static var _bezierError:Number = BEZIER_ERROR; // ax1, ay1, cx, cy, ax...
/* * =BEGIN CLOSED LICENSE * * Copyright (c) 2013-2014 Andras Csizmadia * http://www.vpmedia.eu * * For information about the licensing and copyright please * contact Andras Csizmadia at andras@vpmedia.eu * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT N...
/** * Autogenerated by Thrift * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING */ package com.evernote.edam.userstore { import org.apache.thrift.Set; import org.apache.thrift.type.BigInteger; import flash.utils.ByteArray; import flash.utils.Dictionary; import org.apache.thrift.*; import org.ap...
/* Copyright aswing.org, see the LICENCE.txt. */ package org.aswing.util { import flash.utils.Dictionary; /** * To successfully store and retrieve (key->value) mapping from a HashMap. * HashMap accept any type of object to be the key: number, string, Object etc... * But it is only get fast accessing with string...
class Shared.GlobalFunc { static var RegisteredTextFields: Object = new Object(); static var RegisteredMovieClips: Object = new Object(); function GlobalFunc() { } static function Lerp(aTargetMin: Number, aTargetMax: Number, aSourceMin: Number, aSourceMax: Number, aSource: Number, abClamp: Boolean): Number { ...
package flashx.textLayout.conversion { import flash.system.System; import flashx.textLayout.TextLayoutVersion; import flashx.textLayout.elements.BreakElement; import flashx.textLayout.elements.Configuration; import flashx.textLayout.elements.ContainerFormattedElement; import flashx.textLayout.e...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF li...
/* * ______ _____ _______ * .-----..--.--..----..-----.| __ \ \| ___| * | _ || | || _|| -__|| __/ -- | ___| * | __||_____||__| |_____||___| |_____/|___| * |__| * $Id: IllegalPdfSyntaxError.as 238 2010-01-31 10:49:33Z alessandro.crugnola $ * $Author Alessandr...
package mods { import Main; public class ManaLeechFixes { public const MOD_NAME:String = "ManaLeechFixes"; public const COREMOD_VERSION:String = "1"; private var main:Main; private var regex:RegExp; private var result:Object; public function ManaLeechFixes() {} private function fixLeech(function...
package devoron.sdk.aslc.core.utils.compare { /** * IScriptNodeCompareResult * @author Devoron */ public interface IScriptNodeCompareResult { } }
package { import flash.display.MovieClip; import flash.display.DisplayObject; import flash.events.MouseEvent; import gs.TweenLite; import gs.easing.*; public class MainGame extends MovieClip{ private var mSource:Array; private var mConfigData:Object; private var mCurrentItemName:String; private v...
package com.ankamagames.dofus.network.messages.game.inventory.items { import com.ankamagames.dofus.network.types.game.data.items.GoldItem; import com.ankamagames.jerakine.network.CustomDataWrapper; import com.ankamagames.jerakine.network.ICustomDataInput; import com.ankamagames.jerakine.network.ICustom...
/************************************************************************ * Copyright 2010-2012 Worlize Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * htt...
package model.states { import adobe.utils.ProductManager; import command.LoadImageCommand; import events.AppEvent; import events.Dispatcher; import events.StateChangeEvent; import flash.events.Event; import model.vo.ContentVO; import model.vo.FilterVO; import model.vo.ImageVO; import model.vo.Sto...
//------------------------------------------------------------------------------ // Copyright (c) 2011 the original author or authors. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. //--------...
/* * The MIT License (MIT) * * Copyright (c) 2015 Andrew Salomatin (MerlinDS) * * 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 ri...
package { import flash.display.Shape; import flash.display.Sprite; import gainer.*; public class Button extends Sprite { private var _gio:Gainer; // Gainerのインスタンス private var _sqr:Shape; // ボタンの状態を表示するオブジェクト public function Button() { // Gainerのインスタンスを生成する _gio = new Gainer("localhost", 2000, Gaine...
/** * VERSION: 1.0 * DATE: 10/22/2009 * ACTIONSCRIPT VERSION: 3.0 * UPDATES AND DOCUMENTATION AT: http://www.TweenMax.com **/ package com.greensock.plugins { import com.greensock.*; import flash.media.SoundTransform; /** * Tweens properties of an object's soundTransform property (like the volume, p...
/*********************************************************************** Copyright (c) 2008, Memo Akten, www.memo.tv This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License,...
package { import flash.utils.ByteArray import flash.system.System public class Exploiter { private const VECTOR_OBJECTS_LENGTH:uint = 1014 private var exploit:Exploit private var ev:ExploitVector private var eba:ExploitByteArray private var payload:By...
package kabam.rotmg.account.core.view { import flash.events.IEventDispatcher; public interface AccountInfoView extends IEventDispatcher { function setInfo(_arg_1:String, _arg_2:Boolean):void; } }//package kabam.rotmg.account.core.view
package as3{ import flash.display.MovieClip; import flash.events.*; import flash.utils.*;//Needed for time import flash.net.navigateToURL;//Needed for URL import flash.net.URLRequest;//More URL stuff import flash.desktop.NativeApplication; import flash.desktop.SystemIdleMode; public class GSSplash extends G...
package net.systemeD.halcyonpdf.connection { import flash.events.Event; public class TagEvent extends EntityEvent { private var _key:String; private var _oldKey:String; private var _oldValue:String; private var _newValue:String; public function TagEvent(type:String, it...
package org.denivip.osmf.utility.decrypt { import com.hurlant.crypto.symmetric.AESKey; import com.hurlant.crypto.symmetric.CBCMode; import com.hurlant.crypto.symmetric.ICipher; import com.hurlant.crypto.symmetric.IPad; import com.hurlant.crypto.symmetric.IVMode; import com.hurlant.crypto.symmetric.NullPad; impor...
package controls.login.events { import flash.events.Event; public class ActivationCompletedEvent extends Event { public function ActivationCompletedEvent(type:String, datum:Object, bubbles:Boolean=true, cancelable:Boolean=false) { super(type, bubbles, cancelable); this.datum = datum; } ...
package ageb.modules.avatar.timelineClasses.contextMenus { import flash.events.Event; import ageb.modules.avatar.op.InsertFrame; /** * 插入帧 * @author zhanghaocong * */ public class InsertFrameMenu extends FrameMenuItem { /** * constructor * */ public function InsertFrameMenu() { super(); ...
// ================================================================================================= // // Starling Framework // Copyright 2011-2014 Gamua. All Rights Reserved. // // This program is free software. You can redistribute and/or modify it // in accordance with the terms of the accompanying license agreemen...
package net.guttershark.preloading.events { import flash.events.Event; import net.guttershark.preloading.Asset; /** * The AssetStatusEvent dispatches for an Asset that had an HTTP status other than 0 or 200. */ public class AssetStatusEvent extends Event { /** * Defines the value of the type proper...
package kabam.rotmg.assets { import mx.core.BitmapAsset; [Embed(source="EmbeddedAssets_textile4x4Embed_.png")] public class EmbeddedAssets_textile4x4Embed_ extends BitmapAsset { public function EmbeddedAssets_textile4x4Embed_() { super(); } } }
package serverProto.zone.ProtoChangeSceneRequest { public final class ChangeSceneType { public static const CHANGE_SCENE_PORTAL:int = 1; public function ChangeSceneType() { super(); } } }
package managers.popup { import flash.events.IEventDispatcher; import popup.IPopup; /** * @author Павел Гольцев */ public interface IInitPopup extends IPopup, IEventDispatcher { /** * Инициализиарует всплывающее окно. Вызывается единожды сразу после создания всплывающего окна. */ function initPopup(...
/* Copyright 2012-2016 Bowler Hat LLC 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,...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
package { public class Test {} } trace("//\"\".length;"); trace("".length); trace("//\"\\n\\r\".length;"); trace("\n\r".length); trace("//\"\\t\".length;"); trace("\t".length); trace("//\"abc012aáâ\".length;"); trace("abc012aáâ".length); trace("//\"你好こんにちは\".length;"); trace("你好こんにちは".length); trace("//\"مَرحَبًا\"....
/** * --------------------------------------------------------------------------- * Copyright (C) 2008 0x6e6562 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http:...
package com.ankamagames.dofus.network.messages.game.interactive { import com.ankamagames.jerakine.network.CustomDataWrapper; import com.ankamagames.jerakine.network.ICustomDataInput; import com.ankamagames.jerakine.network.ICustomDataOutput; import com.ankamagames.jerakine.network.INetworkMessage; ...
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ import com.adobe.test.Assert; // var SECTION = "12.6.2-4"; // var VERSION = "ECMA_1"; // var TITLE =...
package com.company.assembleegameclient.background { import com.company.assembleegameclient.map.Camera; import com.company.util.GraphicsUtil; import flash.display.BitmapData; import flash.display.BitmapDataChannel; import flash.display.GraphicsBitmapFill; import flash.display.GraphicsPath; import flash.display.IGraph...
package { (function () { trace("--- Test 0 - Delete Array Element While Enumerating ---"); var o = ["A", "B", "C", "D", "E", "F"]; for (var k in o) { trace(k); delete o[4]; } })(); (function () { trace("--- Test 1 - IN ---"); var o = ["A", "B", "C", "D", "E", "F"]; trace(0...
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ include "driver.js" include "string-split-2.js"
/* * Copyright 2014 Mozilla Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
package lifecycle.lifecycle.panelexample { import common.ControlPanelBase; import org.as3commons.ui.layout.HLayout; import org.as3commons.ui.layout.shortcut.hlayout; public class PanelTestControls extends ControlPanelBase { private var _panel : Panel; private var _layout : HLayout; public function PanelTest...
package com.syndrome.sanguo.lobby.ui.itemuser { import com.electrotank.electroserver5.api.EsObject; import com.electrotank.electroserver5.user.User; import com.syndrome.client.enum.EnumGUI; import com.syndrome.sanguo.lobby.ui.UILobby; import com.syndrome.sanguocard.uiclass.UISpriteWithSlider; /* * @author ni...
package com.unhurdle.spectrum { COMPILE::JS { import org.apache.royale.core.WrappedHTMLElement; } public class CalendarDay extends SpectrumBase { public function CalendarDay() { super(); typeNames = "spectrum-Calendar-date"; } private var _date:Date; public function get d...
/* Feathers Copyright 2012-2014 Joshua Tynjala. All Rights Reserved. This program is free software. You can redistribute and/or modify it in accordance with the terms of the accompanying license agreement. */ package feathers.controls.renderers { import feathers.controls.List; import feathers.events.FeathersEventTyp...
/** * VERSION: 1.392 * DATE: 2010-10-13 * AS3 (AS2 version is also available) * UPDATES AND DOCS AT: http://www.greensock.com **/ package com.greensock.core { import com.greensock.*; /** * TweenCore is the base class for all TweenLite, TweenMax, TimelineLite, and TimelineMax classes and * provides ...
package game.view.arena.base { import flash.geom.Rectangle; import feathers.display.Scale9Image; import feathers.textures.Scale9Textures; import game.manager.AssetMgr; import starling.display.Sprite; import starling.text.TextField; import starling.textures.Texture; publi...
/** * TLSEngine * * A TLS protocol implementation. * See comment below for some details. * Copyright (c) 2007 Henri Torgemane * * See LICENSE.txt for full license information. */ package com.hurlant.crypto.tls { import com.hurlant.crypto.cert.X509Certificate; import com.hurlant.crypto.cert.X509Ce...
import org.caleb.util.Base64; /** * Utility string class */ class org.caleb.util.StringUtil { /** * Shortens the input string (inString) by the given amount (shortenBy) * * @param inString (String) * @param shortenBy (Number) * @return String */ public static function shorten(inString:String, shortenBy:Numb...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
package kabam.rotmg.chat.control { import com.company.assembleegameclient.parameters.Parameters; import kabam.rotmg.chat.model.ChatMessage; import kabam.rotmg.chat.model.ChatModel; import kabam.rotmg.text.model.TextAndMapProvider; import kabam.rotmg.text.view.stringBuilder.LineBuilder; import robotlegs.bender.bundle...
package spawners.arena.skybox { import flash.display.Sprite; /** * ... * @author Glenn Ko */ public class ClearBlueSkyAssets extends Sprite { // [Embed(source="../../../../resources/skybox/clearblue/top.png")] static public var SBTop:Class; //[Embed(source="../../../../resources/skybox/clearblue/bott...
package org.servebox.cafe.core.command.impl { import org.servebox.cafe.core.command.INullableParameterObject; public class NullableParameterObject extends AbstractParameterObject implements INullableParameterObject { public function NullableParameterObject(keyParam:String="", valueParam:Object=null) { super(...
/* * This file is part of Apparat. * * Apparat is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Apparat is distribu...
/** * VERSION: 1.142 * DATE: 1/18/2010 * AS3 (AS2 version is also available) * UPDATES AND DOCUMENTATION AT: http://blog.greensock.com/timelinelite/ **/ package com.greensock { import com.greensock.core.*; import flash.utils.*; /** * TimelineLite is a lightweight, intuitive timeline class for building and m...
package net.natpat { import flash.display.Bitmap; import flash.display.BitmapData; import flash.filters.GlowFilter; import flash.geom.Rectangle; import net.natpat.gui.Button; import net.natpat.gui.InputBox; import net.natpat.particles.Emitter; import net.natpat.utils.Sfx; import net.natpat.gui.Text; impo...
package flare.vis.data.render { import flare.util.Geometry; import flare.util.Shapes; import flare.vis.data.DataSprite; import flare.vis.data.EdgeSprite; import flare.vis.data.NodeSprite; import flash.display.Graphics; import flash.geom.Point; import flash.geom.Rectangle; /** * Renderer that ...
/* Copyright 2007-2011 by the authors of asaplibrary, http://asaplibrary.org Copyright 2005-2007 by the authors of asapframework, http://asapframework.org Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the Licen...
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ import com.adobe.test.Assert; // var SECTION = "15.5.4.11"; // var VERSION = ""; // var TITLE = "Str...
// Copyright (c) 2013 Adobe Systems Inc // 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, publis...
package com.company.assembleegameclient.ui.panels { import com.company.assembleegameclient.game.GameSprite; import com.company.assembleegameclient.objects.Player; import com.company.assembleegameclient.parameters.Parameters; import com.company.assembleegameclient.ui.TextBox; import com.company.assembleegameclient.ui.bo...
package org.hyzhak.fluid.feathers { import feathers.controls.PickerList; import feathers.data.ListCollection; public class FeatherPickerListBuilder extends DisplayObjectBuilder { final internal function initNewInstance() : FeatherPickerListBuilder { _instance = new PickerList(); return this; } pub...
/* Feathers Copyright 2012-2015 Bowler Hat LLC. All Rights Reserved. This program is free software. You can redistribute and/or modify it in accordance with the terms of the accompanying license agreement. */ package feathers.core { import flash.utils.Dictionary; import starling.display.DisplayObject; import starl...
package kabam.rotmg.ui.view { import com.company.assembleegameclient.parameters.Parameters; import com.company.assembleegameclient.screens.AccountScreen; import com.company.assembleegameclient.screens.TitleMenuOption; import com.company.assembleegameclient.ui.SoundIcon; import com.worlize.gif.GIFPlayer; import co...
package my.patterns { public class Duck extends Animal { override public function say():String { return super.say() + " quack-quack-quack\r\n"; } override public function init():void { super.init(); this.name = "A duck"; } } }
package org.red5.samples.publisher.command { /** * RED5 Open Source Flash Server - http://www.osflash.org/red5 * * Copyright (c) 2006-2009 by respective authors (see below). All rights reserved. * * This library is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesse...
/* * Copyright (C) 2007 Claus Wahlers * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, * inclu...
package feathers.examples.gallery { import feathers.controls.ImageLoader; import feathers.controls.List; import feathers.controls.renderers.IListItemRenderer; import feathers.core.FeathersControl; import feathers.events.FeathersEventType; import flash.geom.Point; import flash.utils.Dictionary; import starling...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
/* Feathers Copyright 2012-2015 Bowler Hat LLC. All Rights Reserved. This program is free software. You can redistribute and/or modify it in accordance with the terms of the accompanying license agreement. */ package feathers.data { import flash.errors.IllegalOperationError; /** * An <code>IListCollectionDataDesc...
package feathers.controls { import feathers.core.FeathersControl; import feathers.skins.IStyleProvider; import starling.core.Starling; import starling.display.DisplayObject; import starling.display.Image; import starling.display.Quad; import starling.display.Sprite; import starling.events.EnterFrameEvent; im...
package visuals.ui.base { import com.playata.framework.display.Sprite; import com.playata.framework.display.lib.flash.FlashDisplayObjectContainer; import com.playata.framework.display.lib.flash.FlashSprite; import flash.display.MovieClip; public class SymbolBlockerAnimationGeneric extends Sprite {...
/* * FLINT PARTICLE SYSTEM * ..................... * * Author: Richard Lord * Copyright (c) Richard Lord 2008-2011 * http://flintparticles.org * * * Licence Agreement * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (t...