A Flash Developer Resource Site

Search:

Type: Posts; User: Phix

Page 1 of 14 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    0
    Views
    725

    Gradient masking dynamic text

    This is just asking for problems...

    I need to make an element to be used in a grid displaying information about songs and videos. There will be a thumbnail to the left, and vertically-aligned to...
  2. Replies
    1
    Views
    413

    Stream Error from php feed

    This one is really pissin me off.

    I'm making a system to load media files as securely as possible, mainly to prevent people from finding the files if they were to decompile the swf. The way I...
  3. Replies
    1
    Views
    324

    Heckuva time with dynamic grids

    This is like AS 101 but I'm surely missing something easy.



    private function drawBars():void {
    var bw:Number = Math.floor(holderWidth / BAR_COUNT)
    for(var i:uint = 1; i < BAR_COUNT; i++){...
  4. Replies
    0
    Views
    300

    Code hints no longer?

    Where the heck did my code hints go? When using passed variables in functions, etc, the little helper window doesn't show.

    i.e.



    private function progressLoad(pe:ProgressEvent):void {
    //
    }
  5. Replies
    10
    Views
    1,036

    I think you can simplify it. Inside a test...

    I think you can simplify it.

    Inside a test scene I have a few movieclips with different instance names, inside one movieclip called "scroller". The idea is to move the scroller movieclip and...
  6. Why aren't you assigning the new XmlParser to a...

    Why aren't you assigning the new XmlParser to a var? I'm guessing because you're doing the loading inside the constructor? IMO not a good idea.

    Also, when you're loading an external swf, it's...
  7. Replies
    4
    Views
    555

    instanceName.addEventListener(MouseEvent.MOUSE_OVE...

    instanceName.addEventListener(MouseEvent.MOUSE_OVER, onOver);
    instanceName.addEventListener(MouseEvent.MOUSE_OUT, onOut);
    instanceName.addEventListener(MouseEvent.MOUSE_UP, onRelease);

    function...
  8. Replies
    1
    Views
    359

    Check out the localconnection classes.

    Check out the localconnection classes.
  9. var held:Boolean = false...

    var held:Boolean = false
    btn.addEventListener(MouseEvent.MOUSE_DOWN, onDown)
    btn.addEventListener(MouseEvent.MOUSE_UP, onUp)

    function onDown(me:MouseEvent):void {
    if(!held){...
  10. Thread: error 1120 --

    by Phix
    Replies
    6
    Views
    510

    Maybe I'm missing something obvious, but in your...

    Maybe I'm missing something obvious, but in your orginal post you are clearly referencing an XML value. I don't see any XML specific code here.

    My initial question was "What is this function...
  11. Thread: File Open Dialog

    by Phix
    Replies
    2
    Views
    996

    One example. ...

    One example.

    http://www.developphp.com/Flash_tutorials/show_tutorial.php?tid=6
  12. Replies
    1
    Views
    493

    Flash8 Far as I know, the include statement is not...

    Far as I know, the include statement is not longer used.

    import makes all classes and functions (assuming scope definitions are public) available to the flash movie.
  13. Thread: error 1120 --

    by Phix
    Replies
    6
    Views
    510

    There's a space between the . and link, not sure...

    There's a space between the . and link, not sure if that just for what you did on the forum.



    ...get. linkURL));

    /\


    How are you accessing the xml, and what is the subclick...
  14. Replies
    2
    Views
    528

    The NetStream class has a bufferTime that you can...

    The NetStream class has a bufferTime that you can set in seconds before the player starts up. How are you making the video? What AS version?
  15. Replies
    8
    Views
    613

    Those are the properties for the movieclip. ...

    Those are the properties for the movieclip.

    Movieclip and graphics are different. Find the non-symbol image (denoted by a little green picture of a tree) and right click that.
  16. Thread: XML to CMS

    by Phix
    Replies
    5
    Views
    558

    I'm with moag on this. That method works well for...

    I'm with moag on this. That method works well for most sites, and unless you have a fairly large site with a lot of users and updating needs it should do well.
  17. Replies
    2
    Views
    414

    Cool. Yea. Just makin sure.

    Cool. Yea. Just makin sure.
  18. Replies
    1
    Views
    383

    Have you tried currentTarget instead of target?

    Have you tried currentTarget instead of target?
  19. Replies
    5
    Views
    518

    http://www.iheartactionscript.com/coding-movieclip...

    http://www.iheartactionscript.com/coding-movieclips-as-buttons-in-as3/
  20. Replies
    2
    Views
    414

    Will you test this imageloader class?

    I'm having a hell of a time finding the source of my problem.

    I have a site with the whole seperate swf loaded in when called system going, and everything works fine. However, when I have this...
  21. Replies
    2
    Views
    439

    I can't even begin to guess what you're asking.

    I can't even begin to guess what you're asking.
  22. Replies
    3
    Views
    425

    Too many stages? var loaded:Number =...

    Too many stages?

    var loaded:Number = MovieClip(root).stage.stage.loaderInfo.bytesLoaded;
  23. Replies
    4
    Views
    718

    It looks like you're adding the tween event...

    It looks like you're adding the tween event listener to zoomright2, and I'm not sure what that is. I think you need to add it to tweenleft.



    button2.addEventListener(MouseEvent.MOUSE_OVER,...
  24. Replies
    3
    Views
    401

    :thumbsup:

    :thumbsup:
  25. Replies
    3
    Views
    401

    It really helps to know the error. I'm guessing...

    It really helps to know the error. I'm guessing it's something like property X not found on blah blah.

    I've used similar setups and it seems to work fine using the target or currentTarget. You...
Results 1 to 25 of 336
Page 1 of 14 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center