text
stringlengths
4
1.04M
package { (function () { var o = {"toString": function (a, b) { return arguments.length + " " + a + " " + b; }}; trace(o.toString("Hello")); trace(o.toString("Hello", "World")); trace(o); })(); (function () { var o = {}; trace(o.valueOf() === o); })(); class Foo { proto...
package xu { import flash.utils.ByteArray; public class BinaryReaderProxy { private var charsetName:String; private var data:ByteArray; public function BinaryReaderProxy(data:ByteArray, charsetName:String) { super(); this.data=data; this.charsetName=charsetName; } public function readBoolean():B...
package a24.tween.core.updaters.colors { import a24.tween.core.updaters.abstracts.AbstractDisplayObjectUpdater; import a24.tween.core.updaters.abstracts.AbstractUpdater; import flash.display.DisplayObject; import flash.geom.ColorTransform; /** * * @author Atsushi Kaga * @since 2011.01.26 ...
class agung.loader01.Loader01 extends MovieClip { // movie clips used private var Bg:MovieClip; private var Ldr:MovieClip; private var LblMc:MovieClip; private var LblTxt:TextField; // width and height vars private var w:Number; private var h:Number; public function Loader01() { Bg = thi...
package raix.reactive.scheduling { import raix.reactive.*; /** * Provides static helpers to schedulers */ public class Scheduler { /** * Gets the default synchronous scheduler */ public static function get synchronous() : IScheduler { return immediate; } /** * Gets the default asynchr...
/* 2017 Kevin Foley. 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 kevinfoley.addonsforfeathers.localization { import flash.utils.Dictionary; import kevinfoley.addonsforfeathers.localization.IS...
class Test { bool get_boolProp() property { return true; } } void main1() { Test t; if( t.boolProp ) {} if( t.boolProp && true ) {} if( false || t.boolProp ) {} if( t.boolProp ^^ t.boolProp ) {} if( !t.boolProp ) {} t.boolProp ? t.boolProp : t.boolProp; }
package com.codeazur.as3swf.tags { import com.codeazur.as3swf.SWFData; import com.codeazur.as3swf.data.SWFButtonRecord; import com.codeazur.as3swf.data.actions.IAction; import com.codeazur.utils.StringUtils; public class TagDefineButton extends Tag implements IDefinitionTag { public static const TYP...
//////////////////////////////////////////////////////////////////////////////// // // ADOBE SYSTEMS INCORPORATED // Copyright 2009 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 com.flashblocks.blocks { /** * ... * @author Trevor Rundell */ public class BlockType { public static const COMMAND:String = "command"; public static const REPORTER:String = "reporter"; public static const ARGUMENT:String = "argument"; public static cons...
package mx.rpc.events { import flash.events.Event; import mx.core.mx_internal; import mx.messaging.events.MessageFaultEvent; import mx.messaging.messages.IMessage; import mx.rpc.AsyncToken; import mx.rpc.Fault; public class FaultEvent extends AbstractEvent { public s...
package view.scene.item { import flash.display.*; import flash.filters.*; import flash.utils.Dictionary; import mx.core.UIComponent; import mx.core.ClassFactory; import mx.containers.*; import mx.controls.*; import mx.collections.ArrayCollection; import model.*; import model.e...
package com.smbc.graphics { import com.smbc.characters.Link; import flash.display.MovieClip; import flashx.textLayout.formats.LineBreak; public class LinkSword extends SubMc { private static const SUFFIX_VEC:Vector.<String> = Vector.<String>(["","",""]); public function LinkSword(link:Link, mc:MovieCli...
package org.openapitools.client.model { import org.openapitools.client.model.BranchListEmbedded; import org.openapitools.client.model.ProgramListLinks; [XmlRootNode(name="BranchList")] public class BranchList { [XmlElement(name="_totalNumberOfItems")] public var totalNumberOfItems: Num...
//////////////////////////////////////////////////////////////////////////////// // // 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 away3d.entities { import away3d.animators.IAnimator; import away3d.arcane; import away3d.containers.*; import away3d.core.base.*; import away3d.core.partition.*; import away3d.events.*; import away3d.library.assets.*; import away3d.materials.*; import away3d.materials.utils.DefaultMaterialManager; u...
/** * Copyright 2010 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 kabam.rotmg.stage3D.shaders { import com.adobe.utils.AGALMiniAssembler; import flash.display3D.Context3DProgramType; import flash.utils.ByteArray; public class VertextShader extends AGALMiniAssembler { public function VertextShader() { super(); var vertexShaderAssembler:AGALMiniAssembler...
package emap.data { /** * * 布局信息。 * */ import cn.vision.core.VSObject; import emap.consts.StepStyleConsts; import emap.core.em; import emap.utils.StepUtil; import flash.geom.Point; public final class Layout extends VSObject { /** * * 构造函数。 * */ public function Lay...
package com.company.assembleegameclient.objects.particles { import com.company.assembleegameclient.objects.GameObject; import flash.geom.Point; import kabam.rotmg.messaging.impl.data.WorldPosData; public class BurstEffect extends ParticleEffect { public var center_:Point; public var edgePoint_:Point; p...
//////////////////////////////////////////////////////////////////////////////// // // 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...
// makeswf -v 7 -r 1 -o propflags-set-7.swf propflags-set.as var o = new Object (); o[0] = 0; for (var i = 0; i <= 13; i++) { if (i == 11) continue; // flash player bug o[1 << i] = 1 << i; ASSetPropFlags (o, 1 << i, 1 << i, 0); } trace ("0: " + o[0]); o[0] = "0 reset"; trace ("0: " + o[0]); ASSetPropFlags (o, ...
/** * Hi-ReS! ColorUtils v0.1 * * How to use: * * ColorUtils.getHex(1,1,1,1); * * version log: * * 08.01.30 0.1 Mr.doob Big bang **/ package net.hires.utils { public class ColorUtils { static public function getHex(cr:Number = 0, cg:Number = 0, cb:Number = 0, ca:Numbe...
/* * -*- Mode: Actionscript -*- * ************************************************************************* * * Copyright 2007-2009 Juice, 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 L...
/* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 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 Li...
package kabam.rotmg.ui.view.components { import com.company.assembleegameclient.ui.SoundIcon; import flash.display.Sprite; public class ScreenBase extends Sprite { public function ScreenBase() { addChild(new MapBackground()); addChild(new DarkLayer()); addChild(new SoundIcon()); } }...
package tests.extendedsprite { import org.flixel.*; import org.flixel.plugin.photonstorm.*; import tests.TestsHeader; public class ExtendedSpriteTest14 extends FlxState { // Common variables public static var title:String = "Springs 3"; public static var description:String = "Multiple Things on Springs!"; ...
package laya.d3.terrain.unit { import laya.d3.math.Vector2; /** * <code>DetailTextureInfo</code> 类用于描述地形细节纹理。 */ public class DetailTextureInfo{ public var diffuseTexture:String; public var normalTexture:String; public var scale:Vector2; public var offset:Vector2; public function DetailTextureInfo() ...
package pl.brun.lib.controller { import pl.brun.lib.Base; import pl.brun.lib.models.IEnablable; import pl.brun.lib.models.IValidatable; import flash.events.Event; /** * created:2010-10-01 13:27:51 * @author Marek Brun */ public class ValidateCtrl extends Base { private var fields:Array; private var ...
// ================================================================================================= // // 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 serverProto.rankBattle { import com.netease.protobuf.Message; import com.netease.protobuf.fieldDescriptors.RepeatedFieldDescriptor$TYPE_MESSAGE; import com.netease.protobuf.WireType; import serverProto.inc.ProtoNinjaSimpleInfo; import com.netease.protobuf.WritingBuffer; import com.netease.prot...
package sound.se { import flash.media.*; import flash.events.Event; import flash.net.URLRequest; import sound.se.BaseSESound; public class GemSE extends BaseSESound { static private const _PERMIT_NUM:int = 20; // 同時になってもいい数 static private const _DECAY:Number = 0.01; // 同時になってい...
/* * 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 ...
/* Copyright (c) 2009 by contributors: * James Hight (http://labs.zavoo.com/) * Richard R. Masters 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-...
// ================================================================================================= // // 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 gs.display.flv { import gs.util.*; import gs.display.flv.*; import gs.events.*; import gs.managers.*; import flash.display.*; import flash.text.*; import flash.utils.*; import com.greensock.*; /** * The FLVCaptions class simplifies showing captions for * an FLV instance. You pass a reference...
//////////////////////////////////////////////////////////////////////////////// // // 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 pbjAS { public class PBJType { public static var TFloat:String = "TFloat"; public static var TFloat2:String = "TFloat2"; public static var TFloat3:String = "TFloat3"; public static var TFloat4:String = "TFloat4"; public static var TFloat2x2:String = "TFloat2x2"; public static var TFl...
/* ***** 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 visuals.ui.elements.optical_changes { import com.playata.framework.display.Sprite; import com.playata.framework.display.lib.flash.FlashDisplayObjectContainer; import com.playata.framework.display.lib.flash.FlashLabelArea; import com.playata.framework.display.lib.flash.FlashSprite; import com.play...
//////////////////////////////////////////////////////////////////////////////// // // 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 // //...
/* * Copyright (c) 2008 Allurent, 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, * ...
package de.codekommando.cosmicwonder.views.editor { import com.greensock.TweenLite; import flash.display.Bitmap; import flash.display.DisplayObject; import flash.display.Graphics; import flash.display.MovieClip; import flash.display.Sprite; import flash.events.Event; import flash.events.MouseEvent; import ...
package com.illuzor.spinner.screens.subscreens { import com.greensock.TweenLite; import com.illuzor.spinner.screens.ScreenBase; import starling.display.Quad; import starling.display.Sprite; import starling.events.Touch; import starling.events.TouchEvent; import starling.events.TouchPhase; /** * ... * @a...
/* * PROJECT: FLARToolKit * -------------------------------------------------------------------------------- * This work is based on the FLARToolKit developed by * R.Iizuka (nyatla) * http://nyatla.jp/nyatoolkit/ * * The FLARToolKit is ActionScript 3.0 version ARToolkit class library. * Copyright (C)2008 Saq...
/* * Copyright (c) 2006-2010 the original author or authors * * Permission is hereby granted to use, modify, and distribute this file * in accordance with the terms of the license agreement accompanying it. */ package reprise.ui.renderers { import reprise.events.DisplayEvent; import reprise.controls.Label; import...
/** * Copyright (c) 2010 Johnson Center for Simulation at Pine Technical College * * 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 ...
package away3d.core.stats { import flash.display.Shape; public class Logo extends Shape { private var arr:Array = [[7,1,262151],[8,1,3215136],[9,1,2033436],[10,1,1],[7,2,2098723],[8,2,5908501],[9,2,4922400],[10,2,720913],[6,3,327691],[7,3,6957102],[8,3,5975556],[9,3,6368779],[10,3,4789809],[11,3,2],[6,4,...
/** * Created by bslote on 3/29/15. */ package pw.fractal.vbm.view { import flash.display.Shape; import flash.display.Sprite; import flash.text.TextField; import flash.text.TextFieldAutoSize; import pw.fractal.vbm.model.GoldenRhombusModel; public class GoldenRhombus extends Sprite { ...
/* -*- c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4 -*- */ /* vi: set ts=4 sw=4 expandtab: (add to ~/.vimrc: set modeline modelines=5) */ /* 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...
package com.rockdot.library.util.tracker.ui { import fl.controls.Slider; import fl.events.InteractionInputType; import fl.events.SliderEvent; import fl.events.SliderEventClickTarget; import flash.display.Sprite; import flash.text.TextField; import flash.text.TextFieldAutoSize; import flash.text.TextFo...
package sample.away3d_4x.sketchSimple { import flash.media.*; import flash.geom.*; import flash.net.*; import flash.text.*; import flash.display.*; import flash.events.*; import flash.utils.*; import away3d.containers.ObjectContainer3D; import away3d.containers.Scene3D; import away3d.con...
//////////////////////////////////////////////////////////////////////////////// // // 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.flashcommander.components { import flash.events.Event; import flash.events.FocusEvent; import flash.events.KeyboardEvent; import flash.events.MouseEvent; import flash.ui.Keyboard; import flash.ui.Mouse; import flash.ui.MouseCursor; import mx.collections.ArrayCollection; import mx.col...
//////////////////////////////////////////////////////////////////////////////// // // 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 demo.AccordionWithFlowManager.ui { import demo.AccordionWithFlowManager.ui.accordion.*; import flash.display.MovieClip; import flash.text.TextField; public class DemoPaneTextContent extends MovieClip implements IPaneContent { public var tMask : MovieClip; public var tContent : TextField; public fu...
/* * Copyright(c) 2007 the Spark project. * * 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 ...
package org.spicefactory.parsley.messaging { import org.hamcrest.assertThat; import org.hamcrest.object.equalTo; import org.hamcrest.object.notNullValue; import org.spicefactory.parsley.context.ContextBuilder; import org.spicefactory.parsley.context.scope.model.OrderedMixedScopeReceivers; import org.spicefactory.parsle...
package laya.maths { /** * @private * 计算贝塞尔曲线的工具类。 */ public class Bezier { /** * 工具类单例 */ public static var I:Bezier = new Bezier(); /** @private */ private var _controlPoints:Array = [new Point(), new Point(), new Point()]; /** @private */ private var _calFun:Function = getPoint2; ...
; ; HGIMG4 Default define and macros ; #ifndef __hgimg4__ #define __hgimg4__ #define __hsp3dish__ #define global _HSP3DISH #define global _HGIMG4 #runtime "hsp3gp" #addition "dish_enhance.as" #define global screen_offscreen (32) #define global screen_usergcopy (64) #define global celbitmap_bgr (0) #define global cel...
/* * Graffiti 3.0 * ______________________________________________________________________ * www.nocircleno.com/graffiti/ */ /* * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PU...
package com.ankamagames.dofus.network.types.game.context.roleplay { import com.ankamagames.dofus.network.ProtocolTypeManager; import com.ankamagames.dofus.network.types.game.context.EntityDispositionInformations; import com.ankamagames.dofus.network.types.game.context.roleplay.treasureHunt.PortalInformatio...
// ================================================================================================= // // 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...
/* Copyright (C) 2007 Apple 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 follow...
package { import flash.display.Sprite; import flash.events.Event; import flash.globalization.Collator; import flash.system.WorkerDomain; //import flash.globalization.LocaleID; import flash.globalization.CollatorMode; /** * ... * @author Huw Pritchard */ public class Main extends Sprite ...
/* * _________ __ __ * _/ / / /____ / /________ ____ ____ ___ * _/ / / __/ -_) __/ __/ _ `/ _ `/ _ \/ _ \ * _/________/ \__/\__/\__/_/ \_,_/\_, /\___/_//_/ * /___/ * * Tetragon : Game Engine for multi-platform ActionScript projects. * http://w...
package fl.controls { import fl.core.InvalidationType; import fl.core.UIComponent; import fl.managers.IFocusManagerComponent; import flash.display.DisplayObject; public class Button extends LabelButton implements IFocusManagerComponent { private static var defaultStyles:Obje...
package com.xgame.godwar.core.center { import com.xgame.godwar.core.GameManager; import flash.errors.IllegalOperationError; import flash.events.KeyboardEvent; import flash.utils.Dictionary; public class HotkeyCenter extends BaseCenter { private static var _instance: HotkeyCenter; private static var _allowI...
package bpel.editor.gridcc.data { public class TerminateDO extends ActivityDO implements DOInterface { private static var counter:int = 1; public function TerminateDO(){ super(); fillAttributes(); } private function fillAttributes():void { _at...
public function input(key:KeyPoll):void { var i:int, j:int, k:int; generickeypoll(); if (key.click || key.press || key.rightpress || key.rightclick || key.middlepress || key.middleclick || key.mousewheel != 0) { //Update screen when you click the mouse gfx.updatebackground = 5; } if (control.fixmou...
/* * 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 ma...
// rev-c.as push "Please enter a line:"; puts push 0; pop in // in = 0 L001: getc; // NO pop fp[in] here !! // fp[in] = getc push fp[in]; push 10; compeq; j1 L002 // if newline goto L002 push in; push 1; add; pop in // in++ jmp L001 L002: push in; push 1; sub; pop in // in-- push fp[in]; putc_ push in; j...
package com.codeazur.as3swf.data.actions.swf5 { import com.codeazur.as3swf.SWFData; import com.codeazur.as3swf.data.actions.*; import com.codeazur.utils.StringUtils; public class ActionWith extends Action implements IAction { public static const CODE:uint = 0x94; public var withBody:Vector.<IAction>; ...
/** * Created with IntelliJ IDEA. * User: mobitile * Date: 5/7/14 * Time: 12:20 PM * To change this template use File | Settings | File Templates. */ package skein.rest.client.extras.download { import flash.utils.ByteArray; public interface DownloadReader { function start(from:Object):void; function clo...
//////////////////////////////////////////////////////////////////////////////// // // 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...
// =================================================================================================== // _ __ _ _ // | |/ /__ _| | |_ _ _ _ _ __ _ // | ' </ _` | | _| || | '_/ _` | // |_|\_\__,_|_|\__|\_,_|_| \_...
/* -*- Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4 -*- */ /* vi: set ts=4 sw=4 expandtab: (add to ~/.vimrc: set modeline modelines=5) */ /* 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 ob...
package maryfisher.view.ui.interfaces { import flash.display.DisplayObject; import maryfisher.framework.view.IDisplayObject; /** * ... * @author mary_fisher */ public interface IProgressBar extends IDisplayObjectContainer { function setProgress(percent:Number):void //function get width():Number; //fun...
/* Copyright (c) 2012 Adobe Systems Incorporated 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, pub...
package com.aquigorka.interfaces{ public interface InterfaceDispatchManager{ function dispatch(str_seccion:String, params:Array = null):void; function handler_manage_petition(str_seccion:String, params:Array):void; function handler_manage_async_petition(str_seccion:String, params:Array):Array; function...
package org.cocos2d.Actions { import org.cocos2d.*; import org.cocos2d.Actions.*; public class CCHide extends CCActionInstant { override public function startWithTarget(aTarget:*) : void { super.startWithTarget(aTarget); target_.visible = false; } //override public function reverse() : CCFiniteTimeActi...
package net.pixelmethod.engine.model { import net.pixelmethod.engine.render.PMRenderTarget; import net.pixelmethod.engine.phys.IPMPhysBody; public interface IPMEntity extends IPMPhysBody { // PUBLIC PROPERTIES function get parent():IPMEntity // PUBLIC API function update( a_elapsed:Number ):void ...
var str:String = ""; for (var i:int = 1; i <= 5; i++) { for (var j:int = 1; j <= i; j++) str += "*"; trace(str); str = ""; }
package com.tinyspeck.debug { import com.adobe.serialization.json.JSON; import com.quietless.bitmap.BitmapSnapshot; import com.tinyspeck.bootstrap.Version; import com.tinyspeck.bridge.FlashVarModel; import com.tinyspeck.core.beacon.StageBeacon; import com.tinyspeck.engine.Version; import com.tinyspeck.engine.loa...
/* 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 DefClassImpPublicIntname.*; import com.adobe.test.Assert; // var SECTION = "Definitions"; // provide a...
//////////////////////////////////////////////////////////////////////////////// // // 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.playfab.ClientModels { public class { public static const Unverified:String = "Unverified"; public static const Pending:String = "Pending"; public static const Confirmed:String = "Confirmed"; } }
//////////////////////////////////////////////////////////////////////////////// // // 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 services.command.BDC { import com.adobe.cairngorm.control.CairngormEvent; import services.business.BDC.BDCDelegate; import services.cairngorm.BaseCommand; import services.events.BDC.CheckProfilesEvent; public class CheckProfilesCommand extends BaseCommand { /** * @override */ override public...
package { import flash.display.MovieClip; import com.codeazur.as3swf.SWF; import com.codeazur.as3swf.tags.TagDefineShape; import com.codeazur.as3swf.exporters.CoreGraphicsShapeExporter; public class ShapeExportLogo_ObjectiveC extends MovieClip { public function ShapeExportLogo_ObjectiveC() { ...
/* * _________ __ __ * _/ / / /____ / /________ ____ ____ ___ * _/ / / __/ -_) __/ __/ _ `/ _ `/ _ \/ _ \ * _/________/ \__/\__/\__/_/ \_,_/\_, /\___/_//_/ * /___/ * * Tetragon : Game Engine for multi-platform ActionScript projects. * http://w...
/** * 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...
package asx.number { /** * Generate a random Number between the min and max Numbers. * * @param minimum * @param maximum * @returns Number * * @example * <listing version="3.0"> * * var n:Number = randomNumber(1.1, 3.5); * * </listing> */ public function randomNumber(minimum:Number, m...
package com.github.asyncmc.mojang.sessions.flash.model { import org.openapitools.common.ListWrapper; import com.github.asyncmc.mojang.sessions.flash.model.PlayerProfileProperty; public class PlayerProfileList implements ListWrapper { // This declaration below of _PlayerProfile_obj_class is to force flash ...
package kabam.rotmg.assets { import mx.core.BitmapAsset; [Embed(source="EmbeddedAssets_fungalCavernChars8x8Embed.png")] public class EmbeddedAssets_fungalCavernChars8x8Embed extends BitmapAsset { public function EmbeddedAssets_fungalCavernChars8x8Embed() { super(); } } }
/** * VERSION: 1.12 * DATE: 2010-12-28 * AS3 * UPDATES AND DOCS AT: http://www.greensock.com/loadermax/ **/ package com.greensock.loading.data { import flash.display.DisplayObject; import flash.display.DisplayObjectContainer; import flash.system.LoaderContext; /** * Can be used instead of a generic ...
/* * 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 ...
package { public dynamic class PerkClip4a0ab extends PerkAnimHolder { public function PerkClip4a0ab() { super(); addFrameScript(0,this.frame1,32,this.frame33); } function frame1() : * { stop(); } function frame33() : * { gotoAndPlay(2); } } }
//////////////////////////////////////////////////////////////////////////////// // // 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 blockly { final public class OpCode { static public const JUMP:String = "jump"; static public const JUMP_IF_TRUE:String = "jumpIfTrue"; static public const CALL:String = "call"; static public const PUSH:String = "push"; static public const RETURN:String = "return"; static public const INVOKE:St...