A Flash Developer Resource Site

Search:

Type: Posts; User: MarvynDT

Page 1 of 13 1 2 3 4

Search: Search took 0.14 seconds.

  1. Replies
    0
    Views
    433

    [F8] Embed Fonts and Bold/Italic

    Can't seem to figure out how to create dynamic text fields and apply font styling inline.

    Let's say I want to have the following output:
    Today is my last day here!

    I have a non-bold and bold...
  2. Replies
    1
    Views
    456

    The simplest way I could suggest would be to...

    The simplest way I could suggest would be to label your thumbnails in sequential order, eg thumb1, thumb2, ..., thumbN, so that you could easily iterate through them.

    Then use something like:

    ...
  3. Replies
    2
    Views
    506

    _lockroot is to lock any references to _root...

    _lockroot is to lock any references to _root within the external SWF to the _root of the external SWF, not the _root of the containing SWF.

    Once you have loaded the external SWF, you should be...
  4. Replies
    1
    Views
    411

    Your variable will change, but the value assigned...

    Your variable will change, but the value assigned to the interval will not. That should be expected. If you want to define a more flexible interval, try something like:



    // Set the interval...
  5. Replies
    1
    Views
    426

    Lookin into setVariable to pass values into...

    Lookin into setVariable to pass values into Flash. If memory serves me correctly, setVariable is not available on Mac IE.
  6. Replies
    1
    Views
    490

    You could use some condition statements like: ...

    You could use some condition statements like:



    // Pseudo code
    if(this._xmouse > 100 and this._xmouse < 200)
    {
    line.lineTo(this._xmouse, this._ymouse);
    }
  7. Replies
    2
    Views
    1,039

    Pseudo code... function foo() { ...

    Pseudo code...



    function foo()
    {
    if(someCondition)
    {
    return;
    }
  8. Replies
    6
    Views
    848

    SetInterval is still limited by the amount of...

    SetInterval is still limited by the amount of time it takes to run the run the function called. So if the interval is set at 10ms and it takes 20ms to process the code attached to the function, then...
  9. Replies
    2
    Views
    420

    Don't tween the container through frames. Use...

    Don't tween the container through frames. Use actionscript to tween the container. That should solve your problem.
  10. Replies
    0
    Views
    302

    Singleton: Instance variables or Static?

    If I create a singleton instance, would it be wiser to use static or instance variables?

    For example...


    class Foo
    {
    private var myValueA:String;
    private static var myValueB:String;...
  11. Nevermind, found the answer with static vars and...

    Nevermind, found the answer with static vars and AS2's handling of arrays/objects.
  12. [RESOLVED] AS2 Class: Such a thing as a shared variable?

    Let's say I have this class...



    class foo
    {
    var myCount:Number = 0;

    // Constructor
    function foo()
  13. Replies
    9
    Views
    3,094

    It's a much more mature approach from their...

    It's a much more mature approach from their previous version. But it still has the same undertone to it. WA007 seems to use this type of style quite frequently, but I was hoping for something a bit...
  14. Thread: flash lessons

    by MarvynDT
    Replies
    2
    Views
    456

    Hi Diane, A lot of the items that you listed...

    Hi Diane,

    A lot of the items that you listed above appear to be HTML/javascript based, but you are requesting Flash lessons. I am not sure which one you are really looking to accomplish. I could...
  15. Replies
    3
    Views
    2,563

    Managing Projects

    How are you tracking projects?

    Currently I am keeping track of all my projects in a Word document and I'm not entirely happy about it. It's a bit messy, but because my company has only been in...
  16. Replies
    1
    Views
    1,019

    Overdue Invoice Fee

    I was told that the max amount you can legally charge is 1.5% of the total invoice per month. Can anybody confirm this? I can't find this online.
  17. Replies
    0
    Views
    381

    Component Help: Labels

    Learning as I go along here...

    I need to create a solid color background behind a label, but I can't figure it out. I tried using styles, but I don't know the property name. I tried...
  18. Replies
    5
    Views
    3,550

    Similar Myriad Pro Font for Flash?

    Is there a font that looks similar to Myriad Pro or Helvetica and actually resembles what it looks like in Photoshop when it is embedded into a Flash movie? I'm trying to find a nice smooth antialias...
  19. Replies
    1
    Views
    1,083

    Quicktime chapters

    Certain events must occur based on certain sections of a quicktime movie. My coworker said he can embed chapters or time markers into the video. But before he does this, can Flash recognize these...
  20. Replies
    15
    Views
    2,950

    This is definitely one of the best atmoshperic...

    This is definitely one of the best atmoshperic sites I've seen in a very long time. :thumbsup:
  21. Replies
    2
    Views
    991

    The layout appears to be pretty cool, but the...

    The layout appears to be pretty cool, but the screenshots of their work is just hideous.
  22. Replies
    1
    Views
    493

    found my a solution here:...

    found my a solution here: http://www.bit-101.com/blog/archives/000052.html
  23. Replies
    1
    Views
    493

    AS2: Classes and instances

    Trying to write a new class that makes parsing XML easier. What I have is:



    class XMLHandler extends XML{
    public rootNode:Object;

    public function XMLHandler(fileLocation:String){
    ...
  24. Replies
    2
    Views
    625

    AS2: How to add function to Math object?

    I use to have the following function in AS1:

    Math.maxmin = function(){...}

    But this doesn't compile properly in AS2. It says there is no property with that name. What is the proper way to do...
  25. Replies
    7
    Views
    1,563

    Damn, how many different versions are there?

    Damn, how many different versions are there?
Results 1 to 25 of 320
Page 1 of 13 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center