A Flash Developer Resource Site

Search:

Type: Posts; User: cultcreative

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    10
    Views
    2,274

    AS 2 what i usually do when i need to reference a...

    what i usually do when i need to reference a movie clip uniquely is I add an ID variable to it in the loop, create the function, and reference the id in the loop

    var len:Number = loc.length;
    ...
  2. Replies
    10
    Views
    2,274

    AS 2 Sorry, I guess I could have spent a little bit of...

    Sorry, I guess I could have spent a little bit of time explaining what I did in my previous post.

    There are a couple different ways to access a display objects children in flash. You can use dot...
  3. Replies
    10
    Views
    2,274

    AS 2 try using _root[boxNo]... instead of dot

    try using _root[boxNo]... instead of dot
  4. Replies
    3
    Views
    781

    that is odd.. try this: import...

    that is odd..

    try this:

    import flash.events.Event;

    var speed:Number = 100.0;
    addEventListener(Event.ENTER_FRAME, spin);

    function spin(e:Event):void {
  5. Replies
    1
    Views
    4,588

    i have had a number of different issues with...

    i have had a number of different issues with this.. it was caused by one of several things
    1) make sure you go in and manually check the box to sync the app in the app settings on the device in...
  6. have you looked into the YouTube ActionScript API...

    have you looked into the YouTube ActionScript API ? they have same code where you can load the proper player into your application and control the video.
    ...
  7. Replies
    3
    Views
    1,431

    on a very basic level, the ability to draw...

    on a very basic level, the ability to draw something in flash requires:
    an object to draw on.. i usually create a new sprite and add it as a draw layer

    next you need a loop to be able to track...
  8. Replies
    2
    Views
    751

    fyi, you could also use somthing like...

    fyi, you could also use somthing like loaderInfo.addEventListener(ProgressEvent.PROGRESS, onLoading);

    i would assume you error is in the else area.. and you would have a typo in one of the object...
  9. Replies
    3
    Views
    2,021

    try _root.getURL("URL", "_blank");

    try _root.getURL("URL", "_blank");
  10. Replies
    1
    Views
    1,984

    you can't declare something as static and try to...

    you can't declare something as static and try to set it at runtime

    use private var zombie...
  11. AS 2 like i said, check out the greensock site. they...

    like i said, check out the greensock site. they have examples and a little tool to help you through it
  12. AS 2 you could animate it by hand on the timeline add...

    you could animate it by hand on the timeline add a stop to the first frame and the end frame, and when you would like to have the animation start just add

    myButtonName.onRelease = function ():Void...
  13. not sure, but can you access a stage-based shape...

    not sure, but can you access a stage-based shape through getChildAt? I don't know that i have ever tried. try tracing awd.getChildAt(0)
  14. Replies
    6
    Views
    3,984

    what you have to do is load the XML into flash...

    what you have to do is load the XML into flash and PULL the image in.. if you take a look at the example in the tutorial i just posted you can see that the XML contains links pointing to the images...
  15. Replies
    6
    Views
    3,984

    just wrote this up the other day too ...

    just wrote this up the other day too
    http://www.cultcreative.com/tutorials/10/18/2011/flash-image-gallery-tutorial/
  16. Replies
    6
    Views
    3,984

    what do you mean load them through as3 or XML? ...

    what do you mean load them through as3 or XML? if you were to load them in you would need either just AS3 and a bunch of hardcoded paths (bad idea) or AS3 and XML with all the image names and paths...
  17. a good site to follow what is happening in the...

    a good site to follow what is happening in the world of flash is www.flashbookmarks.com
    also, Lee Brimelow's Goto and Learn - http://www.gotoandlearn.com/
  18. Replies
    1
    Views
    1,169

    took a brief look at your file, you have a...

    took a brief look at your file, you have a listener on the main timeline for the button. when you rollover the button, it expands but it is still within that clip that has the listener on it. what...
  19. Replies
    2
    Views
    1,556

    i believe that would be in the HTML that you...

    i believe that would be in the HTML that you would need to make sure that dimensions are specified as 640 x 640. check where you are embedding the swf in HTML, and make sure it isn't 100% or some...
  20. you have loaderForPics as a class, but in your...

    you have loaderForPics as a class, but in your code you are just trying to cast the string as a loaderForPics. i would do one of two things:

    1) take the code from your loaderForPics class and...
  21. Replies
    6
    Views
    1,146

    what does this do for you? ...

    what does this do for you?
    this.getChildAt(i).filters = BLUR;

    are you setting BLUR to something in code that you aren't displaying? it should be an array. I would do something like...
  22. Replies
    6
    Views
    1,146

    1) try tracing i before that little loop just to...

    1) try tracing i before that little loop just to make sure that it is a positive number
    2) this.getChildAt(i) will return a display object, not sure but you might need to cast that as a sprite or...
  23. Replies
    6
    Views
    1,843

    if you are familiar with JS you will find a lot...

    if you are familiar with JS you will find a lot of similarities with actioscript
  24. Replies
    6
    Views
    1,843

    when adding text? you could setup htmlText and...

    when adding text? you could setup htmlText and use <br> or you could just use \n in the text
  25. Replies
    4
    Views
    1,276

    if you are adding multiple directions maybe just...

    if you are adding multiple directions maybe just have if (keydown) { if (down)... }
Results 1 to 25 of 47
Page 1 of 2 1 2




Click Here to Expand Forum to Full Width

HTML5 Development Center