A Flash Developer Resource Site

Search:

Type: Posts; User: Lydecker

Page 1 of 6 1 2 3 4

Search: Search took 0.06 seconds.

  1. [FLEX] [AS3] Change ActionBar Title label size using Actionscript

    Hi there,

    I'm using Flash Builder 4.7 / Flex to build a Mobile Tabbed App.

    How do I change the font size of the title label in the ActionBar for a Mobile TabbedViewNavigatorApplication?

    I...
  2. Replies
    1
    Views
    1,362

    addChild MovieClip within MovieClip

    On my stage I have a movie clip called 'm1'.

    I also have a variable 'i' which is equal to 1.

    if I load in a bitmap (called 'bmp') and then use:

    this["m"+i].addChild(bmp)

    it attaches the...
  3. Replies
    4
    Views
    4,457

    I ended up using this to solve my problem ...

    I ended up using this to solve my problem


    function onMetaData(info:Object):void {

    if (info.cuePoints == undefined){

    _haveCuePoints = false;

    } else {
  4. Replies
    4
    Views
    4,457

    Hi there - thanks for the reply - I understand...

    Hi there - thanks for the reply - I understand how that works and how to identify if cue points exist in a trace, however I'm interested to set a variable, say:

    hasCuePoints (Boolean)

    depending...
  5. Replies
    4
    Views
    4,457

    onMetaData - check for NO cuepoints

    Hi there, using NetStream in AS3.

    With the metadata Object - how can I check to see if there are NO cue points in the video?

    Using something like info.cuePoints.length in the condition of an if...
  6. Replies
    1
    Views
    4,530

    Seek Rules for Progressive Download?

    I have a progressive NetStream set up and working fine for my f4v files.

    My question - assume I'm playing back a 2 min video of a server by progressive download.

    Is there any way to get the...
  7. Replies
    0
    Views
    483

    Flash8 Change DataGrid Header height

    Hi there - this is driving me up the wall.

    How can I please change the height of the header in a DataGrid component?

    Using Flash 8 (AS2)

    Thanks!
  8. Yea, that's similar to what I ended up doing. ...

    Yea, that's similar to what I ended up doing.

    Cheers!
  9. [F8] Using Maths Operators Stored in an Array

    I have an array with the maths operators +, -, /, * stored like so:

    symbs[0] = "+";
    symbs[1] = "-";
    symbs[2] = "*";
    symbs[3] = "/";

    I have the following two numbers stored in variables:...
  10. Replies
    2
    Views
    433

    Cheers - solution here: ...

    Cheers - solution here:

    http://board.flashkit.com/board/showthread.php?t=713027
  11. Replies
    2
    Views
    308

    You are the sly one dawsonk! Cheers chief!

    You are the sly one dawsonk!

    Cheers chief!
  12. Replies
    2
    Views
    308

    [F8] Dynamic Variables in Functions

    On my stage I have 3 movies, M1, M2 and M3 and a dynamic text box set to show the variable 'txt'.

    On my 1st frame I have the actionscript:


    for (j=1; j<=3; j++){
    ...
  13. Replies
    2
    Views
    433

    Dynamic Variables in Functions

    (am using Flash 8)

    On my stage I have 3 movies, M1, M2 and M3 and a dynamic text box set to show the variable 'txt'.

    On my 1st frame I have the actionscript:


    for (j=1; j<=3; j++){
    ...
  14. Replies
    6
    Views
    540

    That was the one I was after! couldent...

    That was the one I was after!

    couldent remember what that magical 'this' word was!

    Cheers!
  15. Replies
    6
    Views
    540

    All my Stat variables are defined like so in the...

    All my Stat variables are defined like so in the first drame:

    var Stat1=1;
    var Stat2=1;
    var Stat3=1;
    var Stat4=1;
    var Stat5=1;
    var Stat6=1;
    var Stat7=1;
    var Stat8=1;
  16. Replies
    6
    Views
    540

    Square brackets didnt work :( It just gives...

    Square brackets didnt work :(

    It just gives the error message:

    **Error** Symbol=cover_2, layer=Layer 8, frame=1:Line 13: Unexpected '=' encountered
    ["Stat" + num]=0;

    I'm happy with...
  17. Replies
    6
    Views
    540

    Dynamic Variable Name Change

    Hi, I have a varaibles called Stat0 to Stat11

    I also have a variable called num which takes a value between 0 and 11 inclusive.

    What is the actionscript I need to use to write:

    "Stat"+num =...
  18. Replies
    2
    Views
    630

    Okay thanks, How do I deturmin the width of an...

    Okay thanks,

    How do I deturmin the width of an image once it is loaded?

    The image I am loading can vary in size, therefore I need to know how much to make the ._x value.

    Thannks!!
  19. Replies
    2
    Views
    630

    loadmovie to TOP RIGHT of movie instance

    Currently if I if I place a blank movie symbole in flash and give the instance name "img" then call the following code:

    loadMovie("http://www.domain.com/mypic.jpg",img);

    it will load the image...
  20. Replies
    2
    Views
    361

    Just found solutions here: ...

    Just found solutions here:


    http://www.kirupa.com/developer/actionscript/moviecliploader2.htm



    ...
  21. Replies
    2
    Views
    361

    Determine when .jpg loaded

    Hi there,

    I have used the function LoadMovie to load an external .JPG to a target movie clip instance in my flash.

    Is there any way that I can determine when the external .jpg has finsihed...
  22. Replies
    1
    Views
    4,793

    Check loadMovie .jpg complete

    Hi there,

    I have used the function

    loadMovie("pictureA.jpg",loadimage);

    to load a .jpg in my movie - how can I check when it has finished loading (before proceeding to do something else)?
    ...
  23. Replies
    1
    Views
    303

    Simple Variables Question

    I have a dynamic text box on my stage which is assigned to display the variable 'next_node"

    In frame one on my movie I have the following action script:

    current_node=1;
    current_dir="N";...
  24. Replies
    4
    Views
    669

    Thats the one! Thanks

    Thats the one!

    Thanks
  25. Replies
    4
    Views
    669

    Not working :( If i have _root.cepisode it...

    Not working :(

    If i have _root.cepisode it returns 13
    If i have eval(_root.cepisode) it returns nothing

    _root.cepisode+1 returns 131

    ideas?

    (I want to return 14)
Results 1 to 25 of 128
Page 1 of 6 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center