CombinedText
stringlengths
4
3.42M
/* Copyright 2018 Tua Rua Ltd. 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 agreed to in writing, software ...
package layer.popup { import layer.popup.common.AlertBox; import com.gskinner.motion.GTween; import com.gskinner.motion.easing.Cubic; import com.gskinner.motion.easing.Sine; import com.sibirjak.asdpc.button.Button; import com.sibirjak.asdpc.button.ButtonEvent; import org.as3commons.ui.layer.PopUpManager; import...
/* * Temple Library for ActionScript 3.0 * Copyright © MediaMonks B.V. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright ...
package io.decagames.rotmg.seasonalEvent.signals { import org.osflash.signals.Signal; public class ShowSeasonHasEndedPopupSignal extends Signal { public function ShowSeasonHasEndedPopupSignal() { super(); } } }
package com.adobe.cep { /** * @author harbs */ public class CSInterface { // ------------------------------ CSInterface ---------------------------------- /** * @class CSInterface * This is the entry point to the CEP extensibility infrastructure. * Instantiate this object and use it to: * <ul> ...
/** * (c) VARIANTE <http://variante.io> * * This software is released under the MIT License: * http://www.opensource.org/licenses/mit-license.php */ package io.variante.controls { import flash.display.DisplayObject; import flash.display.Shape; import io.variante.debug.VSDebug; import ...
/** * Copyright 2011 The original author or authors. * * 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 applic...
package reflex.measurement { public function setSize(child:Object, width:Number, height:Number):void { if(child is IMeasurable) { // || child is IDrawable child.setSize(width, height); } else if(child != null) { child.width = width; child.height = height; } } }
//////////////////////////////////////////////////////////////////////////////// // // 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 com.hendrix.mirror.commands.locations { import com.hendrix.http.builders.RequestBuilder; import com.hendrix.mirror.commands.MirrorRequest; import com.hendrix.mirror.config.SConfig; import com.hendrix.mirror.resources.locations.LocationsListResponse; public class List extends MirrorRequest { /...
package com.playata.application.ui.effects { import com.greensock.easing.Ease; import com.greensock.easing.Power1; import com.playata.framework.core.IDisposable; import com.playata.framework.core.TypedObject; import com.playata.framework.display.IDisplayObject; public class ScaleInOutEffect implem...
/* -*- mode: java; tab-width: 4 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the Licens...
package kabam.rotmg.assets { import mx.core.ByteArrayAsset; [Embed(source="santaWorkshopObjects.txt", mimeType="application/octet-stream")] public class santaWorkshopObjects extends ByteArrayAsset { public function santaWorkshopObjects() { super(); } } }
// ================================================================================================= // // Starling Framework // Copyright 2012 Gamua OG. 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....
import flash.filters.GlowFilter; import flash.geom.Point; import caurina.transitions.Tweener; import caurina.transitions.Equations; import descendent.hud.reticle.ArcBar; import descendent.hud.reticle.Color; import descendent.hud.reticle.IMeter; import descendent.hud.reticle.Rad; import descendent.hud.reticle.Shape; ...
//////////////////////////////////////////////////////////////////////////////// // // 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 org.ro.core.event { import org.ro.core.DisplayManager; import org.ro.core.Globals; import org.ro.core.Utils; /** * Keeps a log of remote invocations and the responses. * Subsequent invocations are served from this cache. * UI events (Dialogs, Windows, etc.) are logged here as well. * * @See http...
package net.flashpunk.tweens.misc { import net.flashpunk.Tween; /** * Tweens multiple numeric public properties of an Object simultaneously. */ public class MultiVarTween extends Tween { /** * Constructor. * @param complete Optional completion callback. * @param type Tween type. */ public fu...
package com.syndrome.sanguo.battle.mediator { import com.syndrome.sanguo.battle.CombatConsole; import components.MessageWindow; import net.ESB; import net.parameter.MessageParameters; import net.IProtocolhandler; /** * 重置手牌询问 */ public class RedealRequest implements IProtocolhandler { public funct...
package com.company.assembleegameclient.ui.options { import com.company.ui.SimpleText; import com.company.util.GraphicsUtil; import flash.display.CapsStyle; import flash.display.Graphics; import flash.display.GraphicsPath; import flash.display.GraphicsSolidFill; import flash.display.GraphicsStroke; import flash.displa...
//////////////////////////////////////////////////////////////////////////////// // // 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 com.codeazur.as3swf.tags { import com.codeazur.as3swf.SWFData; public class TagEnd implements ITag { public static const TYPE:uint = 0; public function TagEnd() {} public function parse(data:SWFData, length:uint, version:uint, async:Boolean = false):void { // Do nothing. The End tag has no ...
package laya.device.motion { /** * 加速度x/y/z的单位均为m/s²。 * 在硬件(陀螺仪)不支持的情况下,alpha、beta和gamma值为null。 * * @author Survivor */ public class AccelerationInfo { /** * x轴上的加速度值。 */ public var x:Number; /** * y轴上的加速度值。 */ public var y:Number; /** * z轴上的加速度值。 */ public var z:Number; ...
package com.jasongatt.utils { public final class NumberUtil { // Public Static Constants public static const EPSILON:Number = NumberUtil._computeEpsilon(); public static const PRECISION:int = NumberUtil._computePrecision(); // Public Static Methods public static function parseNumber(value:*) : Number ...
package examples.fiducial.ascb.util { public class StringUtilities { private static var codeMap:Object; private static var reverseCodeMap:Object; public static function encode( original:String ):String { // The codeMap property is assigned to the StringUtils class when the encode() method ...
package com.company.assembleegameclient.objects { import com.company.assembleegameclient.sound.SoundEffectLibrary; import flash.utils.Dictionary; public class ObjectProperties { private static var groupDict:Dictionary = new Dictionary(); private static var groupCounter:int = 0; ...
package serverProto.fight { import com.netease.protobuf.Message; import com.netease.protobuf.fieldDescriptors.FieldDescriptor$TYPE_SINT32; import com.netease.protobuf.WireType; import com.netease.protobuf.WritingBuffer; import com.netease.protobuf.WriteUtils; import flash.utils.IDataInput; import c...
package idv.cjcat.stardust.twoD.display { import flash.display.Shape; public class BasicShape extends Shape { private var _fillColor:uint; private var _fillAlpha:Number; private var _lineColor:uint; private var _lineAlpha:Number; private var _lineThickness:Number; public function BasicShape(fillColo...
/////////////////////////////////////////////////////////// // CommonTools.as // Macromedia ActionScript Implementation of the Class CommonTools // Created on: 2015-9-29 下午12:53:31 // Original author: ww /////////////////////////////////////////////////////////// package laya.debug.tools { import la...
package org.casalib.events { import flash.events.Event; import flash.events.EventDispatcher; import flash.events.IEventDispatcher; import org.casalib.core.IDestroyable; public class RemovableEventDispatcher extends EventDispatcher implements IRemovableEventDispatcher, IDestroyable { ...
package kabam.rotmg.Forge { import flash.events.MouseEvent; import kabam.rotmg.dialogs.control.CloseDialogsSignal; import robotlegs.bender.bundles.mvcs.Mediator; public class ForgeModalMediator extends Mediator { public function ForgeModalMediator() { super(); } [Inject] public var closeDia...
/** * VERSION: 1.02 * DATE: 10/2/2009 * ACTIONSCRIPT VERSION: 3.0 * UPDATES AND DOCUMENTATION AT: http://www.TweenMax.com **/ package com.greensock.plugins { import com.greensock.*; /** * Performs SLERP interpolation between 2 Quaternions. Each Quaternion should have x, y, z, and w properties. * Simply pass in...
package kabam.rotmg.assets { import mx.core.BitmapAsset; [Embed(source="EmbeddedAssets_mountainTempleObjects16x16Embed_.png")] public class EmbeddedAssets_mountainTempleObjects16x16Embed_ extends BitmapAsset { public function EmbeddedAssets_mountainTempleObjects16x16Embed_() { super(); } } }
package org.erlyvideo { import flash.display.Sprite; import flash.events.Event; import org.osmf.containers.MediaContainer; import org.osmf.elements.VideoElement; import org.osmf.layout.HorizontalAlign; import org.osmf.layout.LayoutMetadata; import org.osmf.layout.ScaleMode; import org.osmf.layout.VerticalAl...
/* * Copyright 2015 GarageGames LLC */ package ui { import flash.display.Sprite; import flash.text.TextField; import assets.Resources; import scratch.ScratchCostume; import scratch.ScratchObj; import scratch.ScratchSprite; import translation.Translator; import ui.media.MediaInfo; import ui.media.Media...
/* 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/. */ /* * Default Interface DefaultInterface * Interface methods * */ package FinalClassImpDefIntInt{ interf...
// Action script... // [Initial MovieClip Action of sprite 20931] #initclip 196 if (!ank.battlefield.mc.InteractiveObject) { if (!ank) { _global.ank = new Object(); } // end if if (!ank.battlefield) { _global.ank.battlefield = new Object(); } // end if if (!ank.battlefield.m...
package com.codeazur.as3swf.tags { import com.codeazur.as3swf.SWFData; import com.codeazur.as3swf.data.SWFRectangle; import com.codeazur.utils.StringUtils; public class TagDefineShape4 extends TagDefineShape3 implements IDefinitionTag { public static const TYPE:uint = 83; public var edgeBounds:S...
package starling.extensions.window { import starling.events.Event; public class StarlingWindowEvent extends Event { public static const STARLING_INIT:String = "starlingInit"; public static const ACTIVATE:String = "activate"; public static const CLOSE:String = "close"; public static const CLOSING:String ...
package org.hamcrest.collection { import org.hamcrest.Matcher; import org.hamcrest.object.equalTo; /** * Matches if the item being matched is an Array and contains at least one item that matches * the given Matcher. * * @param value Object or Matcher that must be in the Array. * ...
package away3d.entities { import away3d.arcane; import away3d.animators.IAnimator; import away3d.bounds.BoundingSphere; import away3d.bounds.BoundingVolumeBase; import away3d.cameras.Camera3D; import away3d.core.base.IRenderable; import away3d.core.managers.Stage3DProxy; import away3d.core.partition.EntityNode...
package laya.d3.core.trail.module { public class GradientColorKey { private var _color:Color; private var _time:Number; /** * 获取颜色值。 * @return 颜色值。 */ public function get color():Color { return _color; } /** * 设置颜色值。 * @param value 颜色值。 */ public functi...
package devoron.components.buttons { import devoron.dataui.multicontainers.table.DataContainersForm; import flash.events.MouseEvent; import net.kawa.tween.easing.Linear; import net.kawa.tween.KTween; import org.aswing.ASColor; import org.aswing.Icon; import org.aswing.JDropDownButton; import org.aswing.JPopup; ...
/* 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.data { import flash.errors.IllegalOperationError; /** * An <code>IListCollectionDataDesc...
// makeswf -v 7 -r 15 -o filename-with-%-character-7.swf filename-with-%-character.as trace ("Testing that file with % in the name will be loaded properly"); getURL ("FSCommand:quit", "");
package { public class Foo { public function foo() : void { [[1,2,3], [4,5,6][0][2]$(EntryPoint) } } }
package org.osflash.actions.types { import org.osflash.actions.Action; import org.osflash.stream.IStreamInput; import org.osflash.stream.IStreamOutput; /** * @author Simon Richardson - simon@ustwo.co.uk */ public class ActionFloatType extends Action { private var _value : Number; public function Actio...
package Ankama_Social.ui { import com.ankamagames.berilia.api.UiApi; import com.ankamagames.berilia.components.ComboBox; import com.ankamagames.berilia.components.Input; import com.ankamagames.berilia.components.Label; import com.ankamagames.berilia.components.MultipleComboBox; import com.ankam...
/** * Apache License * Version 2.0, January 2004 * http://www.apache.org/licenses/ * * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION * * 1. Definitions. * * "License" shall mean the terms and conditio...
// Decompiled by AS3 Sorcerer 6.08 // www.as3sorcerer.com //kabam.rotmg.characters.reskin.control.OpenReskinDialogCommand package kabam.rotmg.characters.reskin.control { import kabam.rotmg.dialogs.control.OpenDialogSignal; import kabam.lib.console.signals.HideConsoleSignal; import kabam.rotmg.core.model....
//////////////////////////////////////////////////////////////////////////////// // // ADOBE SYSTEMS INCORPORATED // Copyright 2005-2007 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 agreem...
/* * 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 (the ...
package shootemup.gameobject.ai { import engine.gameobject.GameObject; import engine.locator.Locator; import engine.utils.Utils; import shootemup.game.ShootEmUp; // specific behavior to move along the y-aligned axis public class YEnemyBehaviorComponent extends EnemyBehaviorComponent { private var direction_: ...
package run_fla { import flash.display.*; dynamic public class theChar_1 extends MovieClip { public var theLower:MovieClip; public var theUpper:MovieClip; public var theHead:MovieClip; public function theChar_1() { return; }// end f...
/** 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 not ...
//////////////////////////////////////////////////////////////////////////////// // // 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 com.indiestream.model { /** * @author Kiwi-Works, LLC */ import com.indiestream.common.Constants; import com.confluence.core.managers.interfaces.InterfaceStage; import flash.display.Stage; import flash.events.EventDispatcher; import flash.events.IEventDispatcher; import mx.events.PropertyChan...
// Action script... // [Initial MovieClip Action of sprite 20652] #initclip 173 if (!ank.gapi.controls.ContainerGrid) { if (!ank) { _global.ank = new Object(); } // end if if (!ank.gapi) { _global.ank.gapi = new Object(); } // end if if (!ank.gapi.controls) { _gl...
//////////////////////////////////////////////////////////////////////////////// // // 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...
package h2olib.control.treeGrid { import flash.events.EventDispatcher; import mx.collections.ArrayCollection; import mx.collections.ICollectionView; import mx.collections.Sort; import mx.collections.SortField; import org.osflex.ITreeGridNode; public class TreeGridDataProvider extends EventDispatcher implem...
package org.yellcorp.lib.xml.validator.utils { import org.yellcorp.lib.core.MapUtil; public class NamespacePrefixMap { public static const NO_PREFIX:String = "xmlns"; private var _prefixToURI:Object; private var _parent:NamespacePrefixMap; public function NamespacePrefixMap(prefixToURI:Object, paren...
package com.tinyspeck.engine.data.prompt { import com.tinyspeck.engine.data.AbstractTSDataEntity; public class Prompt extends AbstractTSDataEntity { public var uid:String; public var timeout:int; // ignored if modal public var title:String; // only relevant if modal public var txt:String; public var icon...
package { import flash.events.Event; import flash.net.SharedObject; public class Data { static var mySave:SharedObject; static var saveObj:Object = {}; static function setup() { mySave = SharedObject.getLocal("saveData"); if (mySave.data.saveFile == undefined) { createSave(); } else...
package kabam.rotmg.chat.view { import flash.display.Sprite; import flash.display.Stage; import flash.events.Event; import flash.events.KeyboardEvent; import kabam.rotmg.account.core.Account; import kabam.rotmg.account.core.signals.RegisterSignal; import kabam.rotmg.account.core.view.RegisterPromptDialog; import kaba...
package com { import flash.display.GraphicsBitmapFill; import flash.display.GraphicsEndFill; import flash.display.GraphicsGradientFill; import flash.display.GraphicsPath; import flash.display.GraphicsShaderFill; import flash.display.GraphicsSolidFill; import flash.display.GraphicsStroke; import flash.display.Gr...
/** * Copyright 2008 Marvin Herman Froeder * 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 agreed to ...
// Decompiled by AS3 Sorcerer 6.08 // www.as3sorcerer.com //io.decagames.rotmg.pets.windows.yard.PetYardWindowMediator package io.decagames.rotmg.pets.windows.yard { import robotlegs.bender.bundles.mvcs.Mediator; import kabam.rotmg.game.model.GameModel; import kabam.rotmg.account.core.signals.OpenMoneyWi...
package game.actions { import ddt.manager.SoundManager; import ddt.view.character.GameCharacter; import flash.geom.Point; import game.GameManager; import game.animations.AnimationLevel; import game.model.LocalPlayer; import game.objects.GameLiving; import game.objects.GamePlayer; public c...
// Archer brain #define SERVER_ONLY #include "BrainCommon.as" #include "ArcherCommon.as" void onInit(CBrain@ this) { InitBrain(this); } void onTick(CBrain@ this) { SearchTarget(this, false, true); CBlob @blob = this.getBlob(); CBlob @target = this.getTarget(); // logic for target this....
/* * Temple Library for ActionScript 3.0 * Copyright © MediaMonks B.V. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright ...
//////////////////////////////////////////////////////////////////////////////// // // 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...
/** * Created with IntelliJ IDEA. * User: mobitile * Date: 8/29/14 * Time: 4:08 PM * To change this template use File | Settings | File Templates. */ package feathersx.controls.pulltorefresh { public class FooterState { /** * Indicates normal state. */ public static const PULL:String = "pull...
/////////////////////////////////////////////////////////////////////////// // Copyright (c) 2013 Esri. All Rights Reserved. // // 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:...
/** * VERSION: 1.0 * DATE: 2010-06-16 * AS3 * UPDATES AND DOCS AT: http://www.greensock.com/loadermax/ **/ package com.greensock.loading { /** * Defines status values for loaders. <br /><br /> * * <b>Copyright 2011, GreenSock. All rights reserved.</b> This work is subject to the terms in <a href="http://www.gr...
package { import flash.display.MovieClip; public dynamic class VertibirdMenu extends MovieClip { public var Menu_mc:PlayBinkMenu; public function VertibirdMenu() { super(); } } }
package kabam.rotmg.ui.view { import flash.system.Capabilities; import kabam.rotmg.account.core.Account; import kabam.rotmg.account.core.signals.OpenAccountInfoSignal; import kabam.rotmg.account.core.signals.OpenVerifyEmailSignal; import kabam.rotmg.account.securityQuestions.data.SecurityQuestionsModel; ...
//////////////////////////////////////////////////////////////////////////////// // // ADOBE SYSTEMS INCORPORATED // Copyright 2007 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...
/** * IAsn1Type * * An interface for Asn-1 types. * Copyright (c) 2007 Henri Torgemane * * See LICENSE.txt for full license information. */ /*[IF-FLASH]*/package com.hurlant.util.der { import flash.utils.ByteArray; public interface IAsn1Type { function getType():uint; function getLength():uint; f...
package org.openapitools.client.api { import org.openapitools.common.ApiInvoker; import org.openapitools.exception.ApiErrorCodes; import org.openapitools.exception.ApiError; import org.openapitools.common.ApiUserCredentials; import org.openapitools.event.Response; import org.openapitools.common.OpenApi; import org.ope...
package org.osflash.ui.components.themes.graphic.button { import org.osflash.ui.components.text.IUILabelView; import org.osflash.ui.components.themes.graphic.component.IUIComponentViewConfig; /** * @author Simon Richardson - simon@ustwo.co.uk */ public interface IUIButtonViewConfig extends IUIComponentViewConfi...
package { import flash.display.MovieClip; import flash.events.Event; public class Bala extends MovieClip { private var right_:Boolean; public function Bala(right:Boolean) { right_ = right; addEventListener(Event.ENTER_FRAME, update); //Move if(!right_) { scaleX = ...
/* * Copyright 2007 ZXing authors * * 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 agreed ...
package com.likya.pinara.utils { import mx.utils.StringUtil; public class SSS { private var _state:String; private var _substate:String; private var _status:String; public function SSS(complexText:String) { if(complexText.indexOf(':') > 0) { var pairs:Array = complexText.split(':'); ...
package com.ankamagames.dofus.datacenter.effects.instances { import com.ankamagames.dofus.datacenter.effects.EffectInstance; import com.ankamagames.jerakine.interfaces.IDataCenter; public class EffectInstanceDice extends EffectInstanceInteger implements IDataCenter { public...
/** * CHANGELOG: * * <ul> * <li><b>1.0</b> - 2012-04-18 09:36</li> * <ul> * <li>Create file</li> * </ul> * </ul> * @author Piotr Paczkowski - kontakt@trzeci.eu */ package pl.asria.tools.display.ui { import flash.events.Event; public class BaloonTipEvent extends Event { /** Begin of show animation **/ public...
/* * Almost all copy of com.google.zxing.qrcode.QRCodeReader * STRUCTURE_APPEND suported */ /* * Copyright 2007 ZXing authors * edit by Heriet [http://heriet.info/] * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. ...
/* Copyright (c) 2009 Yahoo! Inc. All rights reserved. The copyrights embodied in the content of this file are licensed under the BSD (revised) open source license */ package com.yahoo.astra.utils { /** * Represents a value in the CMYK color space. */ public class CMYKColor extends CMYColor { ...
package feathers.examples.componentsExplorer.screens { import feathers.controls.Button; import feathers.controls.ButtonGroup; import feathers.controls.Header; import feathers.controls.PanelScreen; import feathers.data.ListCollection; import feathers.layout.AnchorLayout; import feathers.layout.AnchorLayoutData; ...
package scenes { import starling.display.Image; import starling.text.TextField; import starling.textures.Texture; import starling.textures.TextureAtlas; public class TextureScene extends Scene { public function TextureScene() { // load textures from an atlas ...
/* Copyright (c) 2007 salesforce.com, inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the fo...
// Assume we are testing a class that looks like this: package utils { public class MathUtil { // Add one to the number provided: public function addOne(num:Number):Number { return num + 1; } } } // This is a test case for the class above: package utils { ...
/* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (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.mozilla.org/MPL/ * ...
package fl.transitions { import flash.events.EventDispatcher; import flash.display.*; import flash.geom.Rectangle; import flash.events.Event; /** * The TransitionManager class defines animation effects. It allows you to apply one of ten * animation effects to movie clips. When creating custom componen...
/* * Copyright (c) 2018 Marcel Piestansky * * 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 agre...
package net.wooga.selectors.pseudoclasses { import net.arneschroppe.displaytreebuilder.DisplayTree; import net.wooga.fixtures.TestSpriteA; import net.wooga.fixtures.TestSpriteB; import net.wooga.fixtures.TestSpriteC; import net.wooga.fixtures.tools.ContextViewBasedTest; import net.wooga.fixtures.tools.getAdapter...
/************************************************************************** Filename : TextFieldEx.as Copyright : Copyright 2011 Autodesk, Inc. All Rights reserved. Use of this software is subject to the terms of the Autodesk license agreement provided at the time of installation or download, or which other...
/* * 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...
/** * PerformanceTest by Grant Skinner. Apr 21, 2009 * Visit www.gskinner.com/blog for documentation, updates and more free code. * * * Copyright (c) 2009 Grant Skinner * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Softwa...
/* 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 { /** * Handles the editing of text, and supports multiline editing. This is not * ...
package serverProto.equipment { import com.netease.protobuf.Message; import com.netease.protobuf.fieldDescriptors.FieldDescriptor$TYPE_UINT32; import com.netease.protobuf.fieldDescriptors.RepeatedFieldDescriptor$TYPE_MESSAGE; import com.netease.protobuf.WireType; import serverProto.bag.ProtoEquipInfo; ...