A Flash Developer Resource Site

Search:

Type: Posts; User: jscarlip

Page 1 of 8 1 2 3 4

Search: Search took 0.03 seconds.

  1. Here is the XML source

    Just the first two player nodes, because it's pretty long.



    <?xml version="1.0"?>
    <rss version="2.0">
    <channel>
    <title>Fantasy News / NBA Weekly Top Performances</title>...
  2. Setting DataProvider to One Element in ArrayCollection

    So the following MXML works fine. The problem is I want to isolate the chart to show the data for one player at a time. How would I do that? I tried every combination I can think of. But nothing...
  3. Replies
    2
    Views
    858

    Yeah except in AS3 LoadVars doesn't exist...

    Yeah except in AS3 LoadVars doesn't exist anymore. It's now URLVariables URLRequest and URLLoader classes. But some basic idea. Let's just assume that PHP does pick up that variable which is an XML...
  4. Replies
    2
    Views
    858

    Saving XML to Disk

    In AS3 I have a swf that talks to a PHP file. That PHP should take a passed variable from Flash in this case an XML object, and save that to disk.

    This is my PHP script tell me where I went wrong:...
  5. Replies
    2
    Views
    1,496

    Hey Cancer, yeah that actually still works either...

    Hey Cancer, yeah that actually still works either way. "mouseChildren" enabled the children of that sprite to receive MousEvents. My problem was the hit area. I had several pngs and they where all...
  6. Replies
    2
    Views
    1,496

    Sprite MouseChildren Not Working

    Very basic yet very difficult for some reason. I have a container Sprite, that hold many sprites inside it. I need at least one of the children sprites to works like a button. I've done this a...
  7. Replies
    2
    Views
    591

    Hey thanks cancerinform I got this going ...

    Hey thanks cancerinform I got this going



    bitMapSamosa = Bitmap(__loaderSamosa.content);
    bitMapSamosa.smoothing = true;
    addChild( bitMapSamosa );


    I also took away this line
  8. Replies
    4
    Views
    688

    Hey my MyFriendIsATaco how would you "extract the...

    Hey my MyFriendIsATaco how would you "extract the Bitmap object out of the Loader"?
  9. Replies
    2
    Views
    591

    Loader Class | Smoothing Content

    I have a loader class that loads a png. When that png is finished loading I start scaling the graphic back and forth. It will works fine except the graphic when scaling DOES NOT look smooth. I know...
  10. Thread: noob Question

    by jscarlip
    Replies
    6
    Views
    508

    I think I get you. Well first of all you can't...

    I think I get you. Well first of all you can't magically get a movieclip in your library to stage you have to add it to the stage somehow. There is no attachMovie anymore in as3. So let's say you...
  11. Thread: noob Question

    by jscarlip
    Replies
    6
    Views
    508

    Don't know if you did or not but you need to...

    Don't know if you did or not but you need to always import the classes you need. In this case you only need Sprite and Event.



    import flash.display.Sprite;
    import flash.events.Event;
    ...
  12. Thread: noob Question

    by jscarlip
    Replies
    6
    Views
    508

    What's happening? Is there anything on stage?

    What's happening? Is there anything on stage?
  13. Replies
    3
    Views
    1,172

    AS2 This code goes on the timeline. So make a...

    AS2

    This code goes on the timeline. So make a new layer and name in actions.

    Copy and paste this code there.

    button_1.onRelease = function() {
    trace("this button works");
    }
  14. Replies
    2
    Views
    591

    And in your Rightbat class. First let's make a...

    And in your Rightbat class.
    First let's make a function in the Rightbat class that will check the ball x position and determine where it needs to bounce back. But before we do that add a public...
  15. Replies
    3
    Views
    1,172

    Yeah this is really basic. I don't know how...

    Yeah this is really basic. I don't know how exactly you're coding here, but onRelease doesn't exist in AS3, not to worry though. This is how you do it in AS3. So let's assume your four buttons are...
  16. Replies
    10
    Views
    648

    My bad, I went as2 on you. I'm working with both...

    My bad, I went as2 on you. I'm working with both right now simultaneously. So I make mistakes sometimes. By I am thinking in as3. When I say "_root" I'm referring to the stage, or whatever your...
  17. Replies
    2
    Views
    496

    None of you have any solutions? I've looked at...

    None of you have any solutions? I've looked at other posts, some of them say that embedFonts simply doesn't work. Is this true?
  18. Replies
    10
    Views
    648

    Did you try making a variable that's a function,...

    Did you try making a variable that's a function, you can even make it _global if it's easier. So when you load a new swf you can change that global variable to whatever you need it to be. Just...
  19. Replies
    10
    Views
    648

    Yeah so am I. I was just assuming since you...

    Yeah so am I. I was just assuming since you didn't specify that you where using Classes. I didn't know people actually still wrote code on frames. Regardless you can still do this. Did you read my...
  20. Replies
    10
    Views
    648

    Also try this: this["load"+test1](); What...

    Also try this:

    this["load"+test1]();

    What you did won't work for several reasons

    1. no scope the square brackets need a scope
    2. the function brackets need to be outside the square...
  21. Replies
    10
    Views
    648

    Basically when using [] - square brackets you...

    Basically when using [] - square brackets you need to preface it with the scope, so something like this or whatever your scope is. I think however this syntax might not work. I think I know what...
  22. Replies
    2
    Views
    496

    Oh, also I'm using Flash CS3 on Windows Vista....

    Oh, also I'm using Flash CS3 on Windows Vista. Maybe that means something.
  23. Replies
    2
    Views
    496

    TextField Embed Problem

    I've been looking over the internet for hours. I know there are different methods for embedding fonts, but this seems to be the simplest. It's documented so it should work... right?



    import...
  24. Replies
    2
    Views
    385

    Thanks man you're a genius.

    Thanks man you're a genius.
  25. Replies
    2
    Views
    385

    Preloader Logo Movement

    I'm trying to get my logo to start at the bottom and move up the screen depending on the percentage of the swf is loaded on the preloader. The problem is right now it moves from top to bottom NOT...
Results 1 to 25 of 188
Page 1 of 8 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center