A Flash Developer Resource Site

Search:

Type: Posts; User: kumba

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    1,241

    Flash8 AS2 - Loop crashing flash player

    I'm loading an XML that has grown quite large and putting the contents into one textbox. There were no issues when the XML was small but after it grew in size I noticed it started hanging FLASH and...
  2. Replies
    10
    Views
    2,463

    AS 2 Thanks anyway but I figured out a way to do it: ...

    Thanks anyway but I figured out a way to do it:



    function editClick(edit_btn){
    edit_btn.onRelease = function(){
    var editnum:String = targetPath(edit_btn);
    var actnum:String =...
  3. Replies
    10
    Views
    2,463

    AS 2 I'm able to get the object path returned (via...

    I'm able to get the object path returned (via trace) but the problem I have is how do I convert it to a string or variable?

    What I initially thought was I could grab the mc number (["mc"+i]) via...
  4. Replies
    10
    Views
    2,463

    AS 2 One more quick question...

    So now that I have the clips duplicated, how would I access individual instances of buttons within each clip?

    So if I have a button called "edit_btn" in each duplicate. I can access the object...
  5. Replies
    10
    Views
    2,463

    AS 2 Sweet!!!!! You made my day! It works perfectly ...

    Sweet!!!!! You made my day! It works perfectly

    Thanks soooooooo much for your help and especially for the explanation...I'm on a lifelong journey to get my mind from 'street smarts' to analytical!...
  6. Replies
    10
    Views
    2,463

    AS 2 Hi again Nig 13, Fantastic!.....except it only...

    Hi again Nig 13,

    Fantastic!.....except it only works for one duplicated move. The xml will be dynamically updated with nodes so there may be as many as four or five movies I need to duplicate. Add...
  7. Replies
    10
    Views
    2,463

    AS 2 Here is the fla and the xml. Also, I noticed I...

    Here is the fla and the xml.

    Also, I noticed I had the for loop set wrong and changed it back to this: for (i=0; i<total; ++i).

    Thanks for taking a minute to look at this Nig 13!
  8. Replies
    10
    Views
    2,463

    AS 2 Duplicate movie based on array data

    Hello flash enthusiasts,

    I am currently building a (mock up) to view subscriber information by duplicating a movie clip based on an array. I'm grabbing the data from an xml and trying to pass the...
  9. Replies
    3
    Views
    1,677

    AS 2 Hi Nig 13, What you wrote gave me enough...

    Hi Nig 13,

    What you wrote gave me enough foundation to accomplish what I needed, thank you very much! I greatly appreciate it.

    Also, I have tried multiple times to delete my first post using...
  10. Replies
    3
    Views
    1,677

    AS 2 [RESOLVED] AS2 - Arrays to textbox

    I need to pull data from an xml array, then have it alternate listing the data in the same text box.

    Here is the how I'm loading the XML:



    // LOAD XML
    loadXML = function (loaded) {
    if...
  11. AS 2 Here is how the xml is loading: loadXML =...

    Here is how the xml is loading:



    loadXML = function (loaded) {
    if (loaded) {
    xmlNode = this.firstChild;
    contentBorder = Number(xmlNode.childNodes[0].attributes.Border);...
  12. AS 2 AS2: Alternate data from array into one text box

    I need to pull data from an xml array, then have it alternate listing the data in the same text box.

    Here is the concept I've tried but can't quite get it right:



    for (i=0; i<total; i++) {
    ...
  13. Replies
    0
    Views
    728

    Flash8 xpath query multiple attributes

    I have 3 radio buttons (2 that work) that establish what attribute in my xml to query. What I would like to do is have the 3rd radio button query "both" attributes.



    if...
  14. Replies
    0
    Views
    381

    Flash8 Can't access external loaded clip

    No matter what I try to access this swf..._root, _parent, _level0, etc...I can't get to it. I did a targetPath and it returned "level0"...so I'm not sure what I'm missing.

    Any ideas?



    var...
  15. Replies
    2
    Views
    599

    Flash8 As2

    I'm a novice on AS2 and wanted to stick with it until I'm comfortable enough to migrate to AS3.

    Thanks for taking a second to look at this, I have been trying to fix it for the last 6 months...no...
  16. Replies
    0
    Views
    322

    Flash8 Seperating components question

    Ok, I need advice on the smartest way to approach a problem of having 2 components in the same movie that both load percentages (individually) of mp3 files that are loaded in each component...
  17. Replies
    2
    Views
    599

    Flash8 Multiple componenets question

    Basic Question: How do I "separate" different components?

    I have 5 different mp3 player components. Each with their own instance names and vars (all in the same movie/stage).

    Problem: If I...
  18. Replies
    0
    Views
    532

    Flash8 Need help getBytesLoaded()

    Scenario: I have 5 separate components (mp3 players) each with their own instance name. Each one has a progress bar that calculates the percentage of the mp3 progress during load.

    Problem: When...
  19. Replies
    0
    Views
    406

    Please Help!!! Seperating components

    I need multiple components (mp3 players) to be independent of each other. Here is a summary of the problem:

    If I load the first player it shows "getBytesLoaded" in a progress bar. If I attempt to...
  20. Replies
    0
    Views
    450

    [F8] Seperating Components

    I need multiple components (mp3 players) to be independent of each other. Here is a summary of the problem:

    If I load the first player it shows "getBytesLoaded" in a progress bar. If I attempt to...
  21. Pre Load Code

    The only thing I'm preloading is a combo box (ComboListCart2.swf) that populates a datagrid with mp3's from different xml's. I dragged the individual players onto the stage and use 10 different...
  22. [F8] Need advice on multiple (similar) components

    I need multiple components (mp3 players) to be independent of each other. Here is a summary of the problem:

    If I load the first player it shows "getBytesLoaded" in a progress bar. If I attempt to...
  23. Replies
    1
    Views
    529

    [F8] Question on scrolling

    Is it possible to use AS to scroll down a datagrid or listbox via the middle scroll wheel that is on most computer mice? Or is there a setting in the component itself?

    thanks,
    Kumba
  24. AS2 - Accessing a variable within a function

    Need a hand figuring this out. I'm passing data with a "localConnection" but can't access the data outside of the "receiving" function. I tried making the vars global but that didn't work.

    Any and...
  25. Replies
    0
    Views
    545

    [F8] Accessing a var within a function

    Need a hand figuring this out. I'm passing data with a "localConnection" but can't access the data outside of the "receiving" function. I tried making the vars global but that didn't work.

    Any and...
Results 1 to 25 of 72
Page 1 of 3 1 2 3




Click Here to Expand Forum to Full Width

HTML5 Development Center