A Flash Developer Resource Site

Search:

Type: Posts; User: igorski

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    3,436

    You should write a base class for your buttons...

    You should write a base class for your buttons where the default value for the hand cursor is useHandCursor = false. All the buttons that you want to have this default behaviour should extend that...
  2. I stand corrected, as my explanation didn't...

    I stand corrected, as my explanation didn't exactly give you information why you got that exact error. Thanks to flax :)
  3. Looks like a scoping error where Flash doesn't...

    Looks like a scoping error where Flash doesn't know what you want to gotoAndStop so to speak. I'm assuming here you have a scene / movieclip that has code in the timeline:

    Try adding this on frame...
  4. ^_^ Wait a second!!

    ^_^

    Wait a second!!

    <body onLoad="window.document.POLEDANCINGJOBS.focus();">

    Dude, wtf ;)
  5. Replies
    2
    Views
    2,024

    Are you by any chance using TLFTextField instead...

    Are you by any chance using TLFTextField instead of the TextField type ? We are running into a lot of strange err... 'features' with this object, such as the one you described.

    Are you embedding a...
  6. Try writing it like this var myRandom =...

    Try writing it like this

    var myRandom = Math.random() * toShuffle.length;

    random is a function of the Math class, and without adding parantheses, the compiler will assume you are trying to...
  7. Got it up and running, download source files...

    Got it up and running, download source files packed in a handy .ZIP here:

    Pixelbreaker MouseWheel

    Pixelbreaker created the Mac mousewheel extension for use with SWFObject ( JavaScript for...
  8. I can somehow remember a JS file called...

    I can somehow remember a JS file called "macmousewheel.js". My interest is spiked, so I'd like to look into this for you. I can't promise you I can fix you up something that will help you with your...
  9. Thread: ProgressBar

    by igorski
    Replies
    7
    Views
    2,733

    If I understand correctly, you want to have the...

    If I understand correctly, you want to have the bus start a desired position and end at another, i.e. start position = x200 and end position is 200 px from the right of the stage.

    That means you...
  10. Replies
    4
    Views
    1,891

    int( text1 ) or text1 as int means...

    int( text1 )

    or

    text1 as int

    means assume the value of text1 as the integer type.

    The wrapper of
  11. Replies
    4
    Views
    1,891

    The .text property of a textfield object is a...

    The .text property of a textfield object is a String. Hence if you assign two strings to this property it will merge them into a new String, thus placing their contents one after the other.

    You...
  12. Update: I have now managed to use a service that...

    Update: I have now managed to use a service that captures UDP data coming in at a certain port and passes it through to Flash via LocalConnection, which is nicely fast and does what I wanted.
    ...
  13. Replies
    8
    Views
    1,848

    The reason it's not visible to Google is that...

    The reason it's not visible to Google is that it's not referenced in the landing page. If for instance you have an anchor as such in your index:

    <a href="bertozzi_products.html">Blahblah</a>
    ...
  14. I never noticed this process fails in Webkit...

    I never noticed this process fails in Webkit browsers, GAH! A little bit of Googling shows that IE is miracously one of the few who never fails in this aspect... which is odd. The Flash element can...
  15. Replies
    5
    Views
    2,072

    Garbage collection is a process where the Flash...

    Garbage collection is a process where the Flash player will remove all unused references to objects to clear memory. You can't "force" it to come buy ( altough there is a "trick" using...
  16. Thread: MC inside MC

    by igorski
    Replies
    11
    Views
    2,341

    That's a hard question as a solid navigation base...

    That's a hard question as a solid navigation base is built around a few objects / classes. Ideally you'd map a button to a certain behaviour / page and make your functions fit dynamically around...
  17. Replies
    1
    Views
    2,088

    In this bit: addChild(colbox);...

    In this bit:

    addChild(colbox);
    colbox.alpha=.6;
    trace(colbox.numChildren);

    You're adding colbox to the display list of the current object, however the trace is for the displaylist of the...
  18. Replies
    8
    Views
    1,848

    There are hardly any meta tags ( well, just the...

    There are hardly any meta tags ( well, just the title ) in the html page. For a proper identifier you need the keywords and description tag.

    <meta name="keywords" content="keyword1, keyword2" />...
  19. Thread: MC inside MC

    by igorski
    Replies
    11
    Views
    2,341

    Aaah my bad, I'm used to coding outside the...

    Aaah my bad, I'm used to coding outside the timeline, seems like the properties of the code in the menu MC aren't made public, the error is the exact same as the one you got by previously trying to...
  20. Thread: MC inside MC

    by igorski
    Replies
    11
    Views
    2,341

    Seeing as you already have rollover / rollout...

    Seeing as you already have rollover / rollout listeners for "party" and "casual" ( these work with the current library menu, right ? ), I would add the click listeners for these here as well,...
  21. Replies
    8
    Views
    1,848

    Can you supply the URL to both the website and...

    Can you supply the URL to both the website and the XML file, that way I can have a peek into what you could ideally do ?

    You must prevent the XML file from being indexed by adding a robots.txt...
  22. Thread: MC inside MC

    by igorski
    Replies
    11
    Views
    2,341

    how is the "menu" movieclip made ? is it built...

    how is the "menu" movieclip made ? is it built from a class, or is it an asset in your library ? the above code you posted shows that the name 'party' isn't registered within the menu movieclip....
  23. Thread: MC inside MC

    by igorski
    Replies
    11
    Views
    2,341

    This line: var party = menu will assign the...

    This line:

    var party = menu

    will assign the 'menu' movieclip to the variable party as another reference to it, thus the mouse listener is added to the entire 'menu' movieclip.

    If party is a...
  24. I would add this to the body:

    I would add this to the body:

    <body onLoad="setFlashFocus();">

    add this JavaScript:

    <script type="text/javascript">
    function setFlashFocus()
    {
  25. Replies
    11
    Views
    2,566

    If you're using the f-16.txt file you posted...

    If you're using the f-16.txt file you posted above, what is your current script ?

    Also this: words.toString().split("");
    would be: words.toString().split(",");

    if you wish to create an array...
Results 1 to 25 of 61
Page 1 of 3 1 2 3




Click Here to Expand Forum to Full Width

HTML5 Development Center