text stringlengths 4 1.04M |
|---|
package
{
import flash.display.BitmapData;
import flash.utils.ByteArray;
public interface ICoreModule extends IGamepadModule
{
function init(ntsc:Boolean, rom:ByteArray, region:String):void;
function tick(input:uint, data:BitmapData):void;
function sound(data:ByteArray):void;
function save():ByteArray;
f... |
package nz.co.codec.flexorm.command
{
import flash.data.SQLConnection;
import flash.events.SQLEvent;
public class SelectMaxRgtCommand extends SQLCommand
{
private var _result:Array;
public function SelectMaxRgtCommand(sqlConnection:SQLConnection, schema:String, table:String, debugLevel... |
package charts.series.bars {
import flash.display.Sprite;
import charts.series.bars.Base;
public class Outline extends Base {
private var outline:Number;
public function Outline( index:Number, props:Properties, group:Number ) {
super(index, props, group);
//super(index, {'top':props.... |
/*
Copyright (c) 2007 FlexLib Contributors. See:
http://code.google.com/p/flexlib/wiki/ProjectContributors
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, incl... |
package as_lisp.data
{
import flash.utils.Dictionary;
/**
* Packages class contains static functions for managing the list of packages defined by the runtime.
*/
public class Packages
{
/** Global package, unnamed */
public static const NAME_GLOBAL :String = null;
/** Special keywords package */
... |
package me.rainssong.display
{
import flash.events.Event;
import flash.events.MouseEvent;
import flash.geom.Rectangle;
/**
*
* @author Rainssong
*/
public class MouseDragSprite extends MouseInteractiveSprite
{
public function MouseDragSprite()
{
super();
}
override public function o... |
package com.company.assembleegameclient.screens {
import com.company.assembleegameclient.ui.GuildText;
import com.company.assembleegameclient.ui.RankText;
import com.company.assembleegameclient.ui.tooltip.RankToolTip;
import flash.display.DisplayObject;
import flash.display.Shape;
import flash.display.Sprite;
import ... |
/*
* 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... |
////////////////////////////////////////////////////////////////////////////////
//
// ADOBE SYSTEMS INCORPORATED
// Copyright 2007-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 ... |
////////////////////////////////////////////////////////////////////////////////
//
// 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 net.guttershark.util
{
import flash.events.Event;
/**
* The FrameDelay class allows for a callback to be called after
* a certain amount of frames have passed.
*
* @example Using a FrameDelay:
* <listing>
* var fd:FrameDelay = new FrameDelay(after10, 10);
* function after10():vo... |
/*
CASA Lib for ActionScript 2.0
Copyright (c) 2008, Aaron Clinger & Contributors of CASA Lib
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 abo... |
////////////////////////////////////////////////////////////////////////////////
//
// 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... |
////////////////////////////////////////////////////////////////////////////////
// Copyright 2016 Prominic.NET, 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
//
// http://www.ap... |
package {
function normalizeString(str) {
return str.split("").sort().join("");
}
(function() {
trace("Parsing: " + '{ "test": 1, "arr": [1, 2, 3] }');
var obj:Object = JSON.parse('{ "test": 1, "arr": [1, 2, 3] }');
trace(obj, obj.test, obj.arr);
})();
(function() {
trace(JSON.parse(1).t... |
/* 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/. */
package org.mangui.hls.loader {
import flash.events.ErrorEvent;
import flash.events.Event;
import flash... |
/**
* ...
* @author Martin Legris
* @version 0.1
*/
package ca.newcommerce.youtube
{
import ca.newcommerce.youtube.data.*;
import ca.newcommerce.youtube.events.CommentFeedEvent;
import ca.newcommerce.youtube.events.ContactFeedEvent;
import ca.newcommerce.youtube.feeds.*;
import ca.newcommerce.youtube.... |
import buildings;
from buildings import IBuildingHook;
import resources;
import util.formatting;
import systems;
import saving;
from statuses import IStatusHook, Status, StatusInstance;
from resources import integerSum, decimalSum;
import planet_types;
import planet_levels;
import generic_effects;
import hook_globals;
... |
package com.somerandomdude.colortoolkit
{
import com.somerandomdude.colortoolkit.spaces.CMYK;
import com.somerandomdude.colortoolkit.spaces.Gray;
import com.somerandomdude.colortoolkit.spaces.HSB;
import com.somerandomdude.colortoolkit.spaces.HSL;
import com.somerandomdude.colortoolkit.spaces.Lab;
... |
/**
* This class handles links to other pages in the same destination.
*
* @langversion ActionScript 3.0
* @playerversion Flash 9.0
* @author David Cary
* @since 04.14.2010
*/
package com.neopets.games.marketing.destination.capriSun.disrespectoids.widgets.nav
{
//----------------------------------------
//... |
package
{
import flash.display.MovieClip;
import flash.text.TextField;
public dynamic class PlayerInventory extends MovieClip
{
public var RightHitBox_tf:TextField;
public var PlayerCaps_tf:TextField;
public var LeftHitBox_tf:TextField;
public var PlayerListHeader:ListHeader;
public var PlayerWeight... |
package
{
import flash.display.Bitmap;
import flash.utils.getTimer;
import starling.core.Starling;
import starling.display.Shape;
import starling.display.Sprite;
import starling.events.Event;
public class FillProfiling extends Sprite
{
[Embed( source = "/assets/Checker.png" )]
private var CheckerBMP :C... |
/*
Copyright aswing.org, see the LICENCE.txt.
*/
package org.aswing.layouts{
import org.aswing.Component;
import org.aswing.Container;
import org.aswing.geom.*;
import org.aswing.JViewport;
/**
* The default layout manager for <code>JViewport</code>.
* <code>ViewportLayout</code> defines
* a policy for layout t... |
import templateNewsy.util.*;
import templateNewsy.mvc.*
import templateNewsy.I.*
import templateNewsy.mvcgallery.*
class templateNewsy.mvcgallery.TimeView extends AbstractView {
var progressTime:MovieClip
var spiral:MovieClip
////////////////////////////////////////////////
public function de... |
// =================================================================================================
//
// CadetEngine Framework
// Copyright 2012 Unwrong Ltd. All Rights Reserved.
//
// This program is free software. You can redistribute and/or modify it
// in accordance with the terms of the accompanying license agre... |
package spine.atlas {
public interface TextureLoader {
function load (page:AtlasPage, path:String) : void;
function unload (texture:Object) : void;
}
}
|
class Player
{
Player()
{
msg = "YOUR AND IDIOT KILL YOU'RE SELVE ";
}
void Tick(float dt)
{
if (char is null)
{
@char = GetCharacter();
char.Radius = 16;
}
Vec2 walkDir, aimDir;
if (joy.Connected)
{
walkDir = Vec2(joy.AxisPosition(sf::Joystick::Axis::X), joy.AxisPosition(sf::Joystick::... |
///////////////////////////////////////////////////////////////////////////
// Copyright (c) 2011 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:... |
package com.hendrix.mirror.config
{
public class SConfig
{
static public var HOST:String = "https://www.googleapis.com";
static public var SLASH:String = "/";
public function SConfig()
{
}
}
} |
/*
* Copyright (c) 2015 Snowplow Analytics Ltd. All rights reserved.
*
* This program is licensed to you under the Apache License Version 2.0,
* and you may not use this file except in compliance with the Apache License Version 2.0.
* You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/lice... |
package com.unhurdle.spectrum.renderers
{
import org.apache.royale.core.Bead;
import org.apache.royale.core.ISelectableItemRenderer;
public class SelectableItemRenderer extends Bead implements ISelectableItemRenderer
{
public function SelectableItemRenderer()
{
}
protected function get h... |
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 fu... |
/*
Feathers
Copyright 2012-2021 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.layout
{
import feathers.core.IValidating;
import flash.errors.IllegalOperationError;
imp... |
/*
* 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 copy... |
package spine {
import spine.attachments.Attachment;
public class Skeleton {
internal var _data:SkeletonData;
internal var _bones:Vector.<Bone>;
internal var _slots:Vector.<Slot>;
internal var _drawOrder:Vector.<Slot>;
internal var _skin:Skin;
public var r:int = 1;
public var g:int = 1;
public var b:int = 1;
... |
package org.fxml.handlers {
import flash.display.Sprite;
/**
* @author jordandoczy
* @private
*/
public class Package extends Sprite {
StageResizeHandler;
}
}
|
/******************************************************************************
* Spine Runtimes License Agreement
* Last updated January 1, 2020. Replaces all prior versions.
*
* Copyright (c) 2013-2020, Esoteric Software LLC
*
* Integration of the Spine Runtimes into software or otherwise creating
* der... |
/*
Copyright (c) 2014, GlassLab, 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 kabam.rotmg.maploading.signals {
import org.osflash.signals.Signal;
public class HideMapLoadingSignal extends Signal {
public function HideMapLoadingSignal() {
super();
}
}
}
|
////////////////////////////////////////////////////////////////////////////////
//
// 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 org.osflash.ui.signals.support
{
import org.osflash.ui.display.UIShape;
import org.osflash.ui.signals.ISignalTarget;
import flash.geom.Point;
/**
* @author Simon Richardson - simon@ustwo.co.uk
*/
public class Circle extends UIShape
{
public static const UP : int = 0xff00ff;
public static const... |
package com.smbc.messageBoxes
{
public final class MenuBoxItems
{
public static const GAME_PAD_INFO:String = "game pad info",
PLAY_NEW_VERSION:String = "play new version",
OKAY:String = "okay",
CANCEL:String = "cancel",
YES:String = "yes",
NO:String = "no",
VALUE_SEP:String = ": ",
ON:String = "on",
... |
require('./foo');
module.exports = function(){
return 3;
}
|
package cmodule.lua_wrapper
{
const __2E_str27409:int = gstaticInitter.alloc(8,1);
}
|
/*
Feathers
Copyright 2012-2021 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.controls.supportClasses
{
import feathers.controls.AutoSizeMode;
import feathers.controls.I... |
/*
* 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 applica... |
package com.sixfootsoftware.pitstop {
public class PlayerPitstopCalculator implements Calculator {
private var pitstop:Number = 0;
private var lastPitstop:Number = 0;
public function calculatePitstop( elapsed:Number ):void {
pitstop = int( elapsed / 10 );
}
public fun... |
package stateTypes {
import stateTypes.NumberState;
/**
* ...
* @author notSafeForDev
*/
public class NumberStateReference extends StateReference {
private var state : NumberState;
public function NumberStateReference(_state : NumberState) {
super();
state = _state;
}
public function g... |
/* 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/. */
package static.chplayer.source.org.mangui.hls.demux {
import org.mangui.hls.model.Level;
import flash.dis... |
/*
Copyright (c) 2011 Taro Hanamura
See LICENSE.txt for full license information.
*/
/*
referred to http://wonderfl.net/c/74QW
*/
package org.typefest.display.shape {
import flash.display.GraphicsPath;
import flash.geom.Rectangle;
public class RoundRect4Angles extends ShapeBase {
///// ellipse ratio
... |
package com.company.assembleegameclient.objects {
import com.company.assembleegameclient.map.Map;
import com.company.assembleegameclient.parameters.Parameters;
import com.company.util.PointUtil;
import flash.utils.Dictionary;
import kabam.rotmg.messaging.impl.incoming.AccountList;
public class Party {
public st... |
package awaybuilder.controller.scene
{
import awaybuilder.model.vo.scene.LightVO;
import awaybuilder.controller.history.HistoryCommandBase;
import awaybuilder.controller.scene.events.SceneEvent;
import awaybuilder.model.DocumentModel;
import awaybuilder.model.vo.scene.MeshVO;
import awaybuilder.... |
package org.hamcrest.object
{
import org.hamcrest.Matcher;
/**
* Matches a Class reference that defines an interface.
*
* @example
* <listing version="3.0">
* assertThat(IExternalizable, isInterface());
* </listing>
*/
public function isInterface():Matcher
{
return new IsInterfaceMatcher();
}
} |
package org.si.utils {
import flash.display.DisplayObjectContainer;
import flash.text.TextField;
import flash.events.Event;
import flash.utils.getTimer;
/** static timer class */
public class timer {
static public var title:String = "";
static private var _text:TextF... |
package com.neopets.vendor.gamepill.novastorm.obj
{
import com.neopets.vendor.gamepill.novastorm.obj.gameObject;
import flash.display.MovieClip;
import flash.display.DisplayObject;
/*
* Blue Jewel class file
* Drops from destroyed enemies
*
* @langversion ActionScript 3.0
* @playerversion ... |
package kabam.rotmg.assets {
import mx.core.ByteArrayAsset;
[Embed(source="EmbeddedData_HeroesCXML.xml", mimeType="application/octet-stream")]
public class EmbeddedData_HeroesCXML extends ByteArrayAsset {
public function EmbeddedData_HeroesCXML() {
super();
}
}
} |
package org.bigbluebutton.air.main.views.ui.navigationbutton {
import org.bigbluebutton.air.main.commands.NavigateToSignal;
import robotlegs.bender.bundles.mvcs.Mediator;
public class NavigationButtonMediator extends Mediator {
[Inject]
public var navigateToPageSignal:NavigateToSignal;
[Inject]
p... |
// Action script...
// [Initial MovieClip Action of sprite 20766]
#initclip 31
if (!dofus.utils.DofusTranslator)
{
if (!dofus)
{
_global.dofus = new Object();
} // end if
if (!dofus.utils)
{
_global.dofus.utils = new Object();
} // end if
var _loc1 = (_global.dofus.utils.Dof... |
/**
* VERSION: 2.3
* DATE: 10/17/2009
* ACTIONSCRIPT VERSION: 3.0
* UPDATES AND DOCUMENTATION AT: http://www.TweenMax.com
**/
package com.greensock.plugins {
import com.greensock.*;
/**
* Tweening "autoAlpha" is exactly the same as tweening an object's "alpha" except that it ensures
* that the object's "visib... |
/* Copyright (c) 2012 EL-EMENT saharan
*
* 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,
... |
package kabam.rotmg.assets {
import mx.core.BitmapAsset;
[Embed(source="EmbeddedAssets_oryxHordeChars8x8Embed.png")]
public class EmbeddedAssets_oryxHordeChars8x8Embed extends BitmapAsset {
public function EmbeddedAssets_oryxHordeChars8x8Embed() {
super();
}
}
} |
package framework.services
{
import com.probertson.data.QueuedStatement;
import flash.data.SQLResult;
import flash.errors.SQLError;
import flash.events.IEventDispatcher;
import flash.utils.Dictionary;
import framework.events.GlobalErrorEvent;
import framework.models.BoardModel;
import framework.models.vo.Ta... |
package Scenery
{
import net.flashpunk.Entity;
import net.flashpunk.graphics.Spritemap;
import net.flashpunk.utils.Draw;
import net.flashpunk.FP;
/**
* ...
* @author Time
*/
public class FinalDoor extends Entity
{
[Embed(source = "../../assets/graphics/FinalDoor.png")] private var imgFinalDoor:Class;
... |
/**
* GetAllAdGroups.as
* This file was auto-generated from WSDL by the Apache Axis2 generator modified by Adobe
* Any change made to this file will be overwritten when the code is re-generated.
*/
package com.macys.marketing.sema{
import mx.utils.ObjectProxy;
import flash.utils.ByteArray;
imp... |
package com.rafaelrinaldi.sound
{
import flash.media.SoundMixer;
import flash.media.SoundTransform;
/**
*
* Controls for the global sound aka <code>SoundMixer</code>.
*
* @author Rafael Rinaldi (rafaelrinaldi.com)
* @since Aug 9, 2011
*
*/
public class SoundGlobal extends SoundControl
{
/** Stop ... |
////////////////////////////////////////////////////////////////////////////////
//
// 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... |
/*
* 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.css.propertyparsers
{
import reprise.core.reprise;
import reprise.css.CSSParsingHelper;
... |
package framework.view.pages.inHouse.renders
{
import services.vo.inHouse.PersonMessageVO;
import mx.collections.ArrayCollection;
import mx.controls.DataGrid;
import mx.controls.dataGridClasses.DataGridItemRenderer;
public class EmailItemRenderer extends DataGridItemRenderer
{
public function EmailItemRender... |
package feathers.examples.componentsExplorer.screens
{
import feathers.controls.Button;
import feathers.controls.Header;
import feathers.controls.PanelScreen;
import feathers.controls.Slider;
import feathers.examples.componentsExplorer.data.SliderSettings;
import feathers.skins.IStyleProvider;
import feathers.sy... |
/* ***** 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{
import flash.display.*;
import flash.events.*;
[SWF(width="640",height="480")]
public class CerberusGame extends Sprite{
public function CerberusGame(){
addEventListener( Event.ADDED_TO_STAGE,OnAddedToStage );
}
private function OnAddedToStage( e:Event ):void{
BBCerberusGame.Mai... |
#include "SeatsCommon.as"
void onInit(CBlob@ this)
{
AttachmentPoint@[] aps;
if (this.getAttachmentPoints(@aps))
{
for (uint i = 0; i < aps.length; i++)
{
InitSeatAttachment(aps[i]);
}
}
this.Tag("seats");
this.getCurrentScript().runFlags |= Script::tick_not_attached;
this.getCurren... |
package com.illuzor.gaftest {
import com.catalystapps.gaf.data.GAFGFXData;
import starling.core.Starling;
import starling.display.MovieClip;
import starling.display.Sprite;
import starling.events.Event;
import starling.textures.Texture;
import starling.textures.TextureAtlas;
/**
* ...
* @author illuzor... |
package com.company.assembleegameclient.ui.tooltip.slotcomparisons {
import com.company.assembleegameclient.ui.tooltip.TooltipHelper;
import kabam.rotmg.text.model.TextKey;
import kabam.rotmg.text.view.stringBuilder.LineBuilder;
public class ShieldComparison extends SlotComparison {
private var projectileCompar... |
/*******************************************************************************
* PushButton Engine
* Copyright (C) 2009 PushButton Labs, LLC
* For more information see http://www.pushbuttonengine.com
*
* This file is licensed under the terms of the MIT license, which is included
* in the License.html file at th... |
/**
* Created by qingfenghuang on 2015/5/19.
*/
package me.shunia.xsqst_helper.game.module {
import flash.geom.Point;
public class Mine extends BaseModule{
private static const CONF:Object = {
queue: [],
job: [
{
id: 10001,
name:... |
// Moving character example.
// This sample demonstrates:
// - Controlling a humanoid character through physics
// - Driving animations using the AnimationController component
// - Manual control of a bone scene node
// - Implementing 1st and 3rd person cameras, using raycasts to avoid the 3rd person ca... |
package
{
import cn.geckos.effect.OilPaintingEffect;
import flash.display.Sprite;
import flash.events.MouseEvent;
/**
* ...油画效果测试
* @author Kanon
*/
public class OilPaintingEffectTest extends Sprite
{
private var oilPaintingEffect:OilPaintingEffect;
private var isDown:Boolean;
public function OilPaint... |
package kabam.rotmg.assets {
import mx.core.*;
[Embed(source="EmbeddedAssets_bigcubeEmbed_.dat", mimeType="application/octet-stream")]
public class EmbeddedAssets_bigcubeEmbed_ extends ByteArrayAsset {
public function EmbeddedAssets_bigcubeEmbed_() {
super();
}
}
}
|
/**
* <p>Original Author: Daniel Freeman</p>
*
* <p>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, m... |
package com.ankamagames.dofus.kernel.zaap.messages.impl
{
import com.ankamagames.dofus.kernel.zaap.messages.IZaapInputMessage;
public class ZaapCloseOverlayMessage implements IZaapInputMessage
{
public function ZaapCloseOverlayMessage()
{
super();
}
... |
/*
Copyright (c) 2008, 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 ... |
package kabam.rotmg.pets.view.components {
import flash.events.MouseEvent;
import kabam.rotmg.account.core.Account;
import kabam.rotmg.dialogs.control.OpenDialogSignal;
import kabam.rotmg.pets.data.PetYardEnum;
import kabam.rotmg.pets.data.PetsModel;
import kabam.rotmg.pets.view.YardUpgraderView;
import kabam.rotmg.p... |
/* 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;
import com.adobe.test.Utils;
/*
1069 Property _ not found on _ and there is no def... |
stop();
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// SETUP
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////... |
// makeswf -v 7 -s 200x150 -r 1 -o enumerate.swf enumerate.as
x = 0;
createEmptyMovieClip ("a", 0);
a.y = 1;
a.createEmptyMovieClip ("a", 0);
a.a.z = { w: 42 };
function do_test (x) {
asm {
push "x"
getvariable
enumerate
push undefined
equals
trace
};
};
tests = [ "/a/a", "a/../a::::a", "... |
package com.playfab.DataModels
{
public class InitiateFileUploadsRequest
{
public var Entity:EntityKey;
public var FileNames:Vector.<String>;
public var ProfileVersion:*;
public function InitiateFileUploadsRequest(data:Object=null)
{
if(data == null)
... |
package com.freshplanet.ane.airFacebook
{
/**
* This class represents a basic Facebook profile.
*
* @see http://developers.facebook.com/docs/reference/android/current/class/Profile/
*/
public class FBProfile{
/**
* The first name of the profile. Can be null.
*/
public var firstName:String;
/*... |
package buttontutorial.step3 {
import com.sibirjak.jakute.JCSS;
import com.sibirjak.jakute.JCSS_Sprite;
import flash.display.Sprite;
public class ButtonExample2 extends Sprite {
private var _button : Button;
public function ButtonExample2() {
// JCSS
JCSS_Sprite.jcss = new JCSS();
JCSS_Sprite.jcss.... |
//------------------------------------------------------------------------------
// 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.
//--------... |
package io.decagames.rotmg.pets.popup.evolving {
import io.decagames.rotmg.ui.buttons.BaseButton;
import io.decagames.rotmg.ui.buttons.SliceScalingButton;
import io.decagames.rotmg.ui.popups.signals.ClosePopupSignal;
import io.decagames.rotmg.ui.texture.TextureParser;
import robotlegs.bender.bundles.mvcs.Mediator;
pu... |
package rumorPlot.model.cfg
{
import flash.utils.Dictionary;
import rumorPlot.model.info.PlotInfo;
public class PlotInfosConfig
{
public var plotIDDict:Dictionary;
public function PlotInfosConfig()
{
this.plotIDDict = new Dictionary();
super();
}
... |
/**
* <p>Original Author: toddanderson</p>
* <p>Class File: ToggleButtonSkin.as</p>
* <p>Version: 0.3</p>
*
* <p>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, incl... |
/*
* Copyright 2007 (c) Tim Knip, ascollada.org.
*
* 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,... |
////////////////////////////////////////////////////////////////////////////////
//
// 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... |
////////////////////////////////////////////////////////////////////////////////
//
// 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... |
/**
* This code is part of the Bumpslide Library maintained by David Knape
* Fork me at http://github.com/tkdave/bumpslide_as3
*
* Copyright (c) 2010 by Bumpslide, Inc.
* http://www.bumpslide.com/
*
* This code is released under the open-source MIT license.
* See LICENSE.txt for full license terms.
* More in... |
package com.ankamagames.jerakine.pools
{
import flash.geom.Point;
public class PoolablePoint extends Point implements Poolable
{
public function PoolablePoint(x:Number = 0, y:Number = 0)
{
super(x,y);
}
public function renew(x:Number = 0, ... |
package com.tinyspeck.engine.port {
import com.adobe.serialization.json.JSON;
import com.tinyspeck.core.beacon.StageBeacon;
import com.tinyspeck.debug.BootError;
import com.tinyspeck.debug.Console;
import com.tinyspeck.debug.NewxpLogger;
import com.tinyspeck.engine.control.TSFrontController;
import com.tinyspe... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.