A Flash Developer Resource Site

Search:

Type: Posts; User: DelvarWorld

Page 1 of 12 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    1
    Views
    531

    http://www.google.com/search?hl=en&client=opera&rl...

    http://www.google.com/search?hl=en&client=opera&rls=en&hs=zPj&ei=v7uPSZabENCCtwe_1-WUCw&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=send+post+data+from+flash&spell=1 :) Usually faster for common questions
  2. Flash bug?! Can't type in textarea in fullscreen mode

    Here is the sample movie for this problem:
    http://andrewray.me/assets/stuff/test.html

    You will notice that if you click on the white textarea, you can type in it and the keyCode is printed at the...
  3. Replies
    2
    Views
    6,635

    Oh, figured it out. Didn't read the help files...

    Oh, figured it out. Didn't read the help files closely enough. It's

    loader.contentLoaderInfo.addEventListener()

    not

    loader.addEventListener()

    but thanks, you pointed me in the right...
  4. Replies
    2
    Views
    6,635

    Loader class not firing Event.COMPLETE

    I'm having a problem that's got me stuck in AS3. I have this seemingly simple code:


    var loader:Loader = new Loader();
    loader.addEventListener(Event.COMPLETE, function(event:Event):void{...
  5. Replies
    11
    Views
    2,707

    It says this in the help files: "Sets the...

    It says this in the help files:

    "Sets the availability of a dynamic property for loop operations. The property must exist on the target object because this method does not check the target...
  6. Replies
    11
    Views
    2,707

    Oh, in that case I believe it was something like...

    Oh, in that case I believe it was something like looping through an XMLList and trying to cast everything to XML
  7. Replies
    11
    Views
    2,707

    Well, it looks like you guys maybe right. I just...

    Well, it looks like you guys maybe right. I just tried this code in JavaScript and it had the same outcome. Here's the code if anyone's interested:

    Object.prototype.hello = function(str){...
  8. Replies
    11
    Views
    2,707

    I don't think native is the issue. In ECMAScript...

    I don't think native is the issue. In ECMAScript all objects have certain methods because those methods are prototypes of the objects. Adding a prototype method to an object type should make it...
  9. Replies
    11
    Views
    2,707

    With that logic, the foreach should also trace...

    With that logic, the foreach should also trace methods like toString, hasOwnProperty, etc.
  10. Replies
    13
    Views
    5,471

    Or you could just do scrollPane.update(), as...

    Or you could just do scrollPane.update(), as that's what it's designed for :)
  11. Replies
    11
    Views
    2,707

    Terrible Flash for each problem

    Can someone explain to me why Flash would ever do this with a for each



    //Create a prototype function on an object
    Object.prototype.hello = function() {
    trace("Hello World");
    }

    //Create...
  12. Replies
    3
    Views
    643

    You want to use getDefinitionByName to...

    You want to use getDefinitionByName to dynamically grab the class


    var classRef:Class = getDefinitionByName(event.target.name + "Info") as Class;
    var info:MovieClip = new classRef();...
  13. Replies
    3
    Views
    3,030

    bump a doop

    bump a doop
  14. Replies
    3
    Views
    3,030

    Adding icon to datagrid cell

    I'm trying to add an icon (movieclip) to my DataGrid. I can get the icon to show up, but when I scroll the datagrid up and down the wrong cells get icons. It happens when one of the rows goes off the...
  15. Have you tried setting your movie's framerate...

    Have you tried setting your movie's framerate higher, like to 60?
  16. Replies
    5
    Views
    2,056

    Sweet, I will try that out tomorrow. Thanks! ...

    Sweet, I will try that out tomorrow. Thanks!

    Also, I think it's possible to do only in the CellRenderer class. I had this same functionality working on a Flash file but I accidentaly deleted the...
  17. Replies
    5
    Views
    2,056

    Ok, let's say I have a CellRenderer class for the...

    Ok, let's say I have a CellRenderer class for the list like such:


    package {

    import fl.controls.listClasses.CellRenderer;

    class ListBackground extends CellRenderer {
    public function...
  18. Replies
    5
    Views
    2,056

    Bumping from page two, no responses yet.

    Bumping from page two, no responses yet.
  19. Replies
    5
    Views
    2,056

    Disabling a list item onclick

    I have a List() component populated by a data provider. The list has a custom style set to an external AS class that extends CellRenderer. What I want to do is when a list item is clicked, I want to...
  20. Replies
    3
    Views
    458

    That's really the main issue, there's no code...

    That's really the main issue, there's no code that could be doing this. It also seems to happen when the text isn't even updating, like hitting play or pause.
  21. Replies
    3
    Views
    458

    [F8] Inexplicable component behavior,

    I'm building a Flash mp3 player application which can be found at http://www.delvarworld.com/music/ . The problem being that occasionally the list of songs (a dynamic text field) will be replaced...
  22. I would do it via actionscript. Add a mouse...

    I would do it via actionscript. Add a mouse listener to the mouse, then play a sound via AS when the click event is triggered.
    ...
  23. That PNG is taking forever to download, please...

    That PNG is taking forever to download, please unlink it from your post and post JPEGs instead.

    Your version of Flash is pirated, right? Why not try just getting a different installer?
  24. Replies
    1
    Views
    599

    Neither of those links work, the "..." is in the...

    Neither of those links work, the "..." is in the URL. Try again.
  25. Inexplicable component behavior - dynamic text field

    I'm building a Flash mp3 player application which can be found at http://www.delvarworld.com/music/ . The problem being that occasionally the list of songs (a dynamic text field) will be replaced...
Results 1 to 25 of 295
Page 1 of 12 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center