A Flash Developer Resource Site

Search:

Type: Posts; User: divillysausages

Page 1 of 11 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    2
    Views
    2,543

    Thanks for the reply moagrius. I'm not sure if...

    Thanks for the reply moagrius. I'm not sure if they originally intended to do it like that or not - half the information on cross domain policy files on the internet is a bit insane. Still it's worth...
  2. Replies
    2
    Views
    2,543

    SecurityError 2048 & URLLoader

    Hi guys,

    I've been running into a problem with the SecurityError that stops a swf loading data from a URL on another server.

    What I'm trying to do:
    I'm trying to make a request to the...
  3. Replies
    7
    Views
    7,928

    Hi Jonathan, Planet, That seems to have fixed...

    Hi Jonathan, Planet,

    That seems to have fixed it all right. Purely out of interest, how do you choose which words get linked and what's shown? It seems a bit random:
    ...
  4. Replies
    7
    Views
    7,928

    [Bug] Kontera error dialogs

    I'm using the debug player in my browser for developing, and when I visit any page on this site, I get 2 dialogs:

    http://divillysausages.com/files/flashProblems/kontera_error1.jpg

    and
    ...
  5. Replies
    1
    Views
    485

    [lol] code wtf of the day

    Just now I've have to add a button to toggle quality in a game I'm working on. I've never had to do it before, but I lolled when I saw this.



    this.stage.quality = StageQuality.LOW;
    trace(...
  6. weird bug with textfield & external embedded fonts

    Hi guys,
    I'm having a weird problem with externally embedded fonts in my game.

    I'm using an swc to provide graphics etc. In the swc, there are a number of fonts that I use in TextFields that I...
  7. Binding stops working when swf is put through optimizer

    Hi guys,

    I have a game using Flex where I use the binding to update certain UI automatically when a value has changed, like this:



    ChangeWatcher.watch( player, "life", this.onLifeChange);
    ...
  8. Embedding a Movieclip loses it's dynamic property?

    Hi guys,

    I'm using the [Embed] tag to embed a movieclip symbol from a fla like this:



    [Embed( source = "../../assets/icons.swf", symbol = "crate" )]
    private var m_crateClass:Class;
  9. Also, i should say, that everything else that's...

    Also, i should say, that everything else that's running flash was closed (browsers etc)
  10. Memory leak with Flash Player 10.0 r42?

    package
    {
    import flash.display.Sprite;
    import flash.events.Event;
    import flash.system.System;

    public class Main extends Sprite
    {

    public function Main():void
  11. Replies
    3
    Views
    1,241

    also, if i change the code slightly to: for...

    also, if i change the code slightly to:


    for ( var i:int = 0; i < 15; i++ )
    {
    // create fake item
    this._AddToShowingList( [fake item] );
    if( i == 14 )
    return;
    }
  12. Replies
    3
    Views
    1,241

    Back again like a renegade master with another...

    Back again like a renegade master with another insane bug.

    I was trying to test a gui component that would scroll a list of items. as my list doesn't contain enough objects at the minute to make...
  13. Replies
    3
    Views
    1,241

    Today's insane Flash bug

    Hey guys,

    So I'm writing some code that involves entities and subentities. Today i noticed a thing that, when i deleted my entity, the subentities were still on the screen.
    I thought, "how...
  14. Replies
    1
    Views
    500

    Flash player crashing IE

    Hey guys,

    I'm trying to remotely debug a problem with another's teams game at work. They have a game, where if you play it through IE, eventually it will crash with the error "This application has...
  15. Programmatically view classes from an external swf?

    Hi,

    I know it's possible to load an external swf file and instantiate a class from it using this code:


    var ad:ApplicationDomain = this.m_loader.contentLoaderInfo.applicationDomain;...
  16. Thanks for replying guys. Ralgoth: Your fix...

    Thanks for replying guys.

    Ralgoth:
    Your fix works, though I'm still a bit confused with why it only happens if the variable is static. If it's a normal class variable, it compiles fine.
    ...
  17. Null object reference when creating a static variable/const

    Hi guys,

    I've come across some weird behaviour and I'm not sure if it's a bug with Flash or not.

    Basically I have 2 classes, A and B. B derives from A. Inside A, I declare a static...
  18. but it does take an ARGB value - see the first...

    but it does take an ARGB value - see the first sprite in the first example. 0xffff0000 produces red as desired.

    perhaps the extra 1 added from 0xfffffffe to 0xffffffff makes it too large, which is...
  19. Weird bug with beginFill() and the colour white

    Why does this not work?


    package
    {
    import flash.display.Sprite;

    public class Main extends Sprite
    {
  20. Replies
    2
    Views
    766

    The idea's not to steal it (though the...

    The idea's not to steal it (though the actionscript facebook api is released under the mit license, so its fine to include it: http://www.opensource.org/licenses/mit-license.php) but more me trying...
  21. Replies
    2
    Views
    766

    Can a SWC contain another SWC?

    Hey guys,
    I'm compiling an engine into a SWC using FlashDevelop. Inside my engine I'm using the Actionscript Facebook API (a SWC itself) with some classes of my own etc. When I compile my engine...
  22. [as3] sound looping and a non zero start time

    Hey guys,

    I'm doing a sound controller class, and one of the things i want to do is pausing and looping. separately, they work fine, but when combined, problems occur.

    Ok, first off, when...
  23. Replies
    3
    Views
    4,298

    in a nutshell: XML: create an xml with your...

    in a nutshell:

    XML:
    create an xml with your image, text pairing, either like:


    <myItem image="myImage.jpg" text="some text here" />
    ...

    or:
  24. Replies
    0
    Views
    2,091

    AS3 equivilant of xmlDecl?

    Hi guys,
    I'm writing a simple 2d tile map generator, and I'm using FileReference to save out my data. When I write it out, I want to add the line "<?xml version="1.0" encoding="utf-8"?>" to the...
  25. [problem] Flex 4 and the Flash Debug Player

    Hi guys,

    I'm currently writing a game engine using the Flex 4 SDK that shipped with Flash Builder. I keep running into a weird bug that's absolutely wrecking my head. I'm using FlashDevelop as my...
Results 1 to 25 of 252
Page 1 of 11 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center