A Flash Developer Resource Site

Search:

Type: Posts; User: iamba

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    1
    Views
    890

    What I'm doing for now (let me know if anyone has...

    What I'm doing for now (let me know if anyone has anything better than this)

    I put the following in some kind of accessor class


    private var _myTypedData:Object = new Object;

    public...
  2. Replies
    1
    Views
    454

    CS5, can't open. Have you tried something like...

    CS5, can't open.

    Have you tried something like a combination of stop(); commands on the parent timeline with this.parent.play() in the last frame of the child movieclips? These things are...
  3. Replies
    1
    Views
    890

    anything like an associative Vector?

    The great thing about vectors is the data typing / autoComplete.. The thing about them that I hate is the numeric index and the resource intensive retrieval methods you need to pull an element.

    ...
  4. Application Domain between two html level swfs

    I'm sure there's not an easy way to do this, but simple solutions aside, does anyone know of anyway that I could create a pipe through two application domains where I can get the swfs to behave as...
  5. Replies
    3
    Views
    544

    That's right! thanks... I had used something a...

    That's right! thanks... I had used something a month ago or so and I couldn't remember what it was. The problem I had was that was it didn't work with swfobject because ExternalInterface.objectId...
  6. Replies
    3
    Views
    544

    Containing HTML element

    Is it possible to get the id of a swf's containing element? I'm pretty familiar with DOM scripting, so any kind of reference to the swf would be fine. I need to initialize registration of the swf...
  7. Replies
    9
    Views
    2,173

    Did anyone come up with an answer to this? I...

    Did anyone come up with an answer to this? I have the same problem outlined above, but it looks like this is talking about accessing the root from the parent and I need to trigger an event down into...
  8. Yeah, that's what I started doing later that...

    Yeah, that's what I started doing later that night and it's working fine. (I finally turned up a similar answer in search) Thanks for confirming!
  9. Wanted to add that I get the same results if I...

    Wanted to add that I get the same results if I omit the numerically indexed arrays entirely, so I'm sure it's not the combination that's producing the problem.
  10. Sending associative arrays to javascript (in an object)

    I'm trying to send an object to javascript that can have an arbitrary number of elements included, including associative arrays. If I create the following object:



    eventName = "TEST_EVENT";...
  11. Thanks!

    thanks for the reply that, ended up resolving the problem!

    I would like to add one small note about the naming convention of the file being loaded that might be able to save someone else some...
  12. [RESOLVED] how do you stream audio through rtmp?

    I'm trying to stream an audio clip via rtmp in as2. I'm not particularly attached to the method, but this is the starting point I am at below:



    var s:Sound = new Sound();
    var req:String =...
  13. If anyone reads this and is working on the same...

    If anyone reads this and is working on the same problem I'm planning on the solution below for now:


    for (var i in this)
    {
    if (i.substr(0, 1) == "_")
    {
    inspParams.push(i);
    }
    }
  14. [RESOLVED] List all Inspectable properties in a class file?

    I am working on an enterprise application and creating a base class for some stage components that has knowledge of the class extending it. More specifically, I need a way to loop through the...
  15. [RESOLVED] How to make a dynamic reference to a variable name (not a question)

    This isn't a question, I've looked for a way to make a dynamic reference to a variable name many times in the past and just found a solution. Thought I'd post it here:



    var testVar:String =...
  16. Replies
    0
    Views
    473

    Loading only the FLV metadata

    Does anyone know how to load ONLY the metadata for an flv? I'm working on some playlist generation that requires me to know an flv's duration before playing the flv (different lengths of clips will...
  17. Replies
    1
    Views
    411

    I tried to reproduce the problem in another movie...

    I tried to reproduce the problem in another movie and the onRollOver event worked, so I started removing layers above the problematic MovieClips and eventually I found that the problem was a...
  18. Replies
    1
    Views
    411

    [RESOLVED]problem with onRollOver in class file

    I am working with a class object and am having a problem with the onRollOver event triggering. My code in the class file is as follows:


    class ScrollItem extends MovieClip{
    function...
  19. WOOOOOOOOT!!! Back in business... No telling...

    WOOOOOOOOT!!! Back in business...

    No telling how long that would have taken to dawn on me.

    Thanks!
  20. Problem with dates and strings in a php mySQL query

    $date = $_REQUEST['dateID'];
    $query1 = "SELECT * FROM tablex";
    $query2 = "SELECT * FROM tablex WHERE tablex.dateID = $date";
    $result = mysql_query($query1);

    I am using PHP and mySQL and I am...
  21. Replies
    2
    Views
    365

    Complex Flash

    I have also since discovered Class objects which keep me from having to store code deep in timelines. I've found that makes things a lot easier. Using the Flash "Project Manager" and class objects....
  22. I would also recomend running this script from...

    I would also recomend running this script from the main timeline to keep all your code in one place using the following example where you name your movieClip "test_mc". Obviously this name can be...
  23. it was just a capitalization problem with Key and...

    it was just a capitalization problem with Key and isDown. Case sensitivity is important, make sure your commands appear blue instead of black or something is wrong.



    onClipEvent (load) {...
  24. Replies
    3
    Views
    693

    I realized this last night that I was only...

    I realized this last night that I was only checking for the key press once when the function was run. I ended up going the listener route because I wanted to check ascii characters. Thank you for...
  25. Replies
    3
    Views
    693

    Key.isDown in class files

    Is there any odd issue with the Key.isDown event in class files? I have the following function that returns the trace "initiateControls running"


    private function intitiateControls(){...
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center