A Flash Developer Resource Site

Search:

Type: Posts; User: waynenort

Page 1 of 14 1 2 3 4

Search: Search took 0.15 seconds.

  1. Replies
    2
    Views
    2,816

    Worked it out finally... Had my sound set to...

    Worked it out finally...
    Had my sound set to 'speech' in the publish settings - trying to get the a better voice over quality. Which turns out it kept throwing the voice out of sync with the...
  2. Replies
    21
    Views
    37,650

    Here you go

    Here you go
  3. Replies
    2
    Views
    2,816

    This is the script style I'm using on the forward...

    This is the script style I'm using on the forward button at given points in the animation. on (release)
    {
    stopAllSounds();
    nav_paused = 0;
    gotoAndPlay(187);
    } What seems to happen...
  4. Replies
    2
    Views
    2,816

    animation syncing with sound

    Hi Guys,

    Have a cartoon animation along the timeline with sound and also a simple play fw and rw setup.
    When the movie plays from the start the sound syncs perfectly with the animation all the...
  5. Replies
    2
    Views
    864

    thanks

    thanks
  6. thanks

    thanks
  7. Export sound to actionscript with preloader

    Hi Guys,

    To get sound working I'll set up the sound 'Linkage' in the 'Library', check the box that says 'Export to Actionscript', and check 'Export to first frame'.
    Then in the AS frame use the...
  8. Replies
    2
    Views
    864

    loadVariables

    I'm loading words from a .txt file to a Flash crossword puzzle. It works perfect locally, but has trouble when uploaded to the web. Sometimes it works, but usualy has trouble loading the words. Is...
  9. Replies
    2
    Views
    707

    If it is a HTML issue then: Open your html in...

    If it is a HTML issue then:

    Open your html in dreamweaver and alter your Flash movie's 'width' and 'height' in the 'properties box': w = 100% h =100%. If it's to be scale proportionally then make...
  10. Replies
    1
    Views
    817

    This enables a pause of 2000 miliseconds before...

    This enables a pause of 2000 miliseconds before it continues to frame 12
    yourButton.onPress = function ()
    {
    timer = setInterval (pause, 2000);
    };
    function pause ()
    {
    clearInterval (timer);...
  11. Replies
    2
    Views
    891

    no need to import it into the library. Just put...

    no need to import it into the library. Just put the Flash game into the same folder that your published Flash file is in and load it as an exteral swf into an MC.
    yourMC.loadMovie("yourGame.swf");
  12. Replies
    2
    Views
    1,331

    if you want the static picture to vanish, either...

    if you want the static picture to vanish, either assign 'visible' or 'alpha' to the picture. But it'll need to be turned into an MC for it to work.

    yourMC._visible = false;

    or

    yourMC._alpha...
  13. Thread: function

    by waynenort
    Replies
    2
    Views
    657

    do you mean something like this. mc1.onRelease =...

    do you mean something like this.
    mc1.onRelease = function ()
    {
    yourStuff ();
    };
    mc2.onRelease = function ()
    {
    yourStuff ();
    };
    yourStuff = function ()
  14. Open your html in dreamweaver and alter your...

    Open your html in dreamweaver and alter your Flash movie's 'width' and 'height' in the 'properties box': w = 100% h =100%. If it's to be scale proportionally then make sure 'scale' in the...
  15. Post your html link with the problem

    Post your html link with the problem
  16. How I understand your .swf is enlarging when the...

    How I understand your .swf is enlarging when the movie is say enlarged to the monitor width.
    If you want the .swf content remain the same size use Stage.scaleMode = "noScale"
  17. Replies
    5
    Views
    554

    Be easier doing as a powerpoint presentation....

    Be easier doing as a powerpoint presentation. Especially stepping back and forth through the frames manually.
  18. Replies
    2
    Views
    711

    CS3 One of three things - your hyperlink name is...

    One of three things - your hyperlink name is spelled wrong, refering to the wrong area / folder or the file with the hyperlink is uploaded into the wrong area on the server.
  19. CS3 Hey Humbuged - It has centered it, but the...

    Hey Humbuged - It has centered it, but the starting point of your dynamic text is cented to the stage. You need to get the width of the text box(297pixels), halve it and minus it from your original...
  20. Select the frames on you timeline that apply to...

    Select the frames on you timeline that apply to the objects that need to be centered. Right click on the frames and select 'cut frames' from the pop up dialogue box.
    Goto 'insert' on the top menu...
  21. your_mc._x = Stage.width / 2 your_mc._y =...

    your_mc._x = Stage.width / 2
    your_mc._y = Stage.height / 2
  22. Replies
    1
    Views
    472

    Flash8 This ease will launch a movieclip from just below...

    This ease will launch a movieclip from just below the bottom of the stage to the destination (Ypos) no matter what size the stage is. Just enter the destination point (Ypos = ) and your_mc will home...
  23. Replies
    1
    Views
    834

    post the .fla file

    post the .fla file
  24. Replies
    0
    Views
    440

    textbox lines

    Is there a way to dynamically count the text lines that fit into a textbox on stage?

    Thanks Wayne
  25. yes thanks

    yes thanks
Results 1 to 25 of 334
Page 1 of 14 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center