A Flash Developer Resource Site

Search:

Type: Posts; User: Robb@exo

Page 1 of 20 1 2 3 4

Search: Search took 0.32 seconds.

  1. Maybe try posting a link to the mentioned...

    Maybe try posting a link to the mentioned files... just a thought.
  2. The code you were provided looks correct it just...

    The code you were provided looks correct it just needs to be modified... try something like this.



    on(release) {
    if(input_instance_name.text == "shell") {
    ...
  3. Just a thought, but check the registration point...

    Just a thought, but check the registration point of the mc, that could be the issue.
  4. Try something like this, var radiance:Number...

    Try something like this,


    var radiance:Number = 180/Math.PI;

    // tr is the instance name of the object
    this.onEnterFrame = function() {
    tr._rotation = (-(Math.atan2(_xmouse - tr._x, _ymouse...
  5. Replies
    2
    Views
    1,179

    You're on the right track, var arr:Array =...

    You're on the right track,


    var arr:Array = new Array();

    for(i = 0; i <= 5; i++) {
    _root.attachMovie("fielder", "fielder"+i, this.getNextHighestDepth());
    arr.push("fielder"+i);...
  6. Replies
    3
    Views
    1,151

    Is this along the lines of what you were looking...

    Is this along the lines of what you were looking for?



    var Text_1:String = "Identifier";

    __root.PostedNotes_.Notes_.text = Text_1;
  7. Replies
    1
    Views
    973

    The code below will do what you want, but with...

    The code below will do what you want, but with the use of a recurring function by way of set Interval.


    var arr:Array = new Array();
    var interval = setInterval(update, 1000);
    var i:Number = 0;...
  8. Thread: Tabbing

    by Robb@exo
    Replies
    1
    Views
    1,220

    Try using the tabIndex property of the textfield...

    Try using the tabIndex property of the textfield class.
    eg.

    instanceNameOfTextfield1.tabIndex = 1;
    instanceNameOfTextfield2.tabIndex = 2;
    etc.
  9. Replies
    20
    Views
    9,661

    CS3 Odd now it doesn't work.

    Odd now it doesn't work.
  10. Replies
    11
    Views
    3,629

    Try adding the video path to the xml file as a...

    Try adding the video path to the xml file as a new node, just as if adding a new image. My guess is the gallery is built dynamically and will build according to the total number of nodes found in the...
  11. Replies
    20
    Views
    9,661

    CS3 Correct. With a preloader all ready in place,...

    Correct.

    With a preloader all ready in place, there's no need for another just for the background, IMHO.
  12. Replies
    20
    Views
    9,661

    CS3 Tried viewing it in a browser... the input text...

    Tried viewing it in a browser... the input text field did work, but the intro was a bit laggy at the end.
  13. Replies
    20
    Views
    9,661

    CS3 Quite the conundrum. If viewing through a...

    Quite the conundrum. If viewing through a browser, try deleting cache and refreshing.
  14. Replies
    20
    Views
    9,661

    CS3 Try this, saved it down to CS3. HTH.

    Try this, saved it down to CS3. HTH.
  15. Replies
    11
    Views
    3,629

    If you need to delete, then yes, the library or...

    If you need to delete, then yes, the library or the XML. XML will just hold the content and the library will hold the object that displays the content. Take caution when deleting... I didn't get a...
  16. Replies
    11
    Views
    3,629

    For the first issue (3052), font size, color etc,...

    For the first issue (3052), font size, color etc, open up the library object "btnMenu" in the main.fla, here there are 2 layers each with a separate text field that will need to be handled similarly....
  17. Replies
    20
    Views
    9,661

    CS3 I saved it down to a CS4 file version, which...

    I saved it down to a CS4 file version, which makes me think you have an older version of Flash.
  18. Replies
    11
    Views
    3,629

    Try uploading the files and I'll have a look.

    Try uploading the files and I'll have a look.
  19. Replies
    20
    Views
    9,661

    CS3 Have a look at this and see if it works for you.

    Have a look at this and see if it works for you.
  20. Replies
    11
    Views
    3,629

    Select the text field and look at the Properties...

    Select the text field and look at the Properties panel.
  21. Replies
    20
    Views
    9,661

    CS3 Works for me, the input text fields work fine.

    Works for me, the input text fields work fine.
  22. Replies
    11
    Views
    3,629

    Chances are the text fields have the font, size...

    Chances are the text fields have the font, size and color all ready defined, or at least that's where I would start looking. Doubtful that information is contained inside the xml. HTH.
  23. Replies
    20
    Views
    9,661

    CS3 If you go into the library object "Tween 30", and...

    If you go into the library object "Tween 30", and select one of the input text fields, then click on Properties, then click the Embed... button, you should notice that the text field does not have...
  24. Replies
    20
    Views
    9,661

    CS3 It could be, were the fonts embedded into the...

    It could be, were the fonts embedded into the input textfield? That could be something to look into. You may want to try posting some code... might make it easier to decipher what's wrong.
  25. If you give the _loader variable an x & y coord...

    If you give the _loader variable an x & y coord after defining it, then it should work,


    var _loader:Loader = new Loader();
    _loader.x = number;
    _loader.y = number;


    HTH.
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center