A Flash Developer Resource Site

Search:

Type: Posts; User: 1stMoogwai

Page 1 of 18 1 2 3 4

Search: Search took 0.11 seconds.

  1. Replies
    4
    Views
    544

    Resolved!!!

    Here's what I found:

    My nav btns wmode were set to transparent. I removed the wmode param altogether and... voila, they don't lose focus when scrolling in FireFox.

    If you need transparency...
  2. Replies
    4
    Views
    544

    tried js

    problem I've encountered is 2 fold: when to call the func (when releasing the firefox scrollbar, not sure how to do that) and there's mulitple btns to focus on...

    Another nuance with the issue is...
  3. Replies
    4
    Views
    544

    Flash btns vs HTML pg vs Firefox

    Hi, thanks for looking. I have an HTML based page with Flash btns.

    http://www.digitalonestop.com/clients/gogo/locations.php

    Problem is in Firefox, the buttons disable when you use the...
  4. Replies
    3
    Views
    565

    they can be...

    quite frustrating. All the more reason to hand create. Although, once you've nailed down the nuances, they can be a time saver... if you haven't been commited prior to reaching that point.

    Good...
  5. Replies
    3
    Views
    565

    loadMovie

    Isn't contentPath reserved for FLVs and XML files. Have you tried using mc_instance.loadMovie("XXX.jpg"); ?

    I didn't look at your file... sorry to shoot in the dark...

    1M.
  6. kill the attachSound

    I switched my code to call the sound external and it now works.

    if (!firstTime) {
    _root.introMusic = new Sound();
    _root.introMusic.onLoad = function(success:Boolean) {
    if (success) {...
  7. indeed, I did. I'm attempting to load the MP3...

    indeed, I did. I'm attempting to load the MP3 externally and forgo the 'attachSound' function.
    ... The "_root.introMusic = new Sound(this);" didn't fix the issue at present....

    Thanks,
    1M.
  8. still no love

    I tried that and even switched "this" to "_root" and it still didn't work. The "music off" btn still mutes all FLVs.

    Help!
    Thanks,
    1M.
  9. HELP! sound object stop kills flv sound too

    if (!firstTime) {
    _root.introMusic = new Sound();
    _root.introMusic.attachSound("music");
    _root.introMusic.setVolume(50);
    _root.introMusic.start(0, 1);
    firstTime = true;
    }
    ...
  10. Replies
    6
    Views
    1,354

    click under??

    So I'm diving in to these expandable banners as well. It looks alright but I can not click on text or btns underneath the flash area (div). So you can see through the transparent Flash area but can...
  11. Replies
    7
    Views
    720

    I have found that when using text files, this...

    I have found that when using text files, this format works best:

    &var1=100&
    &var2=200&

    Close each line with a "&". Otherwise an invisible return character is passed as well. The...
  12. Replies
    3
    Views
    547

    my hero

    Thanks for the solution. Works like a 4 leaf clover.

    As Always,
    1M.
  13. order

    Switch up your increment script with the load script, ie:


    onEnterFrame = function () {
    if ((swfPlayer._currentFrame == swfPlayer._totalframes) and (swfPlayer._totalframes>0) and...
  14. Replies
    3
    Views
    547

    nudge

    Still can't summit this mountain...
  15. Replies
    3
    Views
    547

    onEnterFrame (nude)

    Hi everybody.

    I am attempting to place an "onEnterFrame" script on an MC that I am loading ext. swfs into. Once something is loaded into the MC, I can not get it to work. Any hints?? Here is...
  16. ...

    Simon, loco.

    Bueno,
    1M.
  17. sure...

    once you've added the var at the end of your embed tag (<param name=movie value="Flash/test.swf?x=1.xml">) The variable is now known on the _root of your movie. That is to say, your Flash movie can...
  18. Replies
    5
    Views
    906

    float precission

    Is there no floatPrecission function in Flash?
  19. Thread: syntax help

    by 1stMoogwai
    Replies
    1
    Views
    434

    got it

    _root.myxml["stateItems"+_root.stateNum][(i-1)]
  20. JS v. SharedObject

    Both Javascript and the SharedObject will work locally and online. If your files are working in one place and not in the other, make sure all your pathnames are correct.

    Here's a sample of how to...
  21. variable

    Hi.

    change this:

    myxml.load("file1.xml");

    to this:

    myxml.load(xmlFile);
  22. Thread: syntax help

    by 1stMoogwai
    Replies
    1
    Views
    434

    syntax help

    I am attempting to dynamically write this

    _root.myxml.stateItems1[2];

    now this works but is viewed as a string still:

    eval("_root.myxml.stateItems"+_root.stateNum+"["+(i-2)+"]");


    How...
  23. Replies
    1
    Views
    479

    got it

    trace(this.firstChild.childNodes[0].firstChild.attributes.cost);
  24. Replies
    1
    Views
    479

    accessing XML node attributes

    I'm at ends with accessing my XML attribute data. Here is my xml:
    <bundles>
    <AZ>
    <Product_1 type="bundle" cost="50.00" />
    <Product_2 type="bundle" cost="75.00" />
    <Product_3...
  25. Replies
    3
    Views
    382

    ...

    can you post the fla?
Results 1 to 25 of 440
Page 1 of 18 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center