A Flash Developer Resource Site

Search:

Type: Posts; User: wdhall

Page 1 of 10 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    2
    Views
    643

    Yes it can be done. You already have the db...

    Yes it can be done. You already have the db access scripts so its a matter of formatting the output from them into variables that flash can use.

    The LoadVars object is what you will need to use...
  2. Replies
    1
    Views
    345

    To send it to the top use contentArea.scroll=0 ...

    To send it to the top use
    contentArea.scroll=0

    or to the bottom which is most common in a chat app use:
    contentArea.scroll=contentArea.maxscroll
  3. Replies
    1
    Views
    505

    Socket servers... Easy way...(pay)although its...

    Socket servers...
    Easy way...(pay)although its free for up to 20 users while you practice
    Electroserver

    Do it the harder way...(free) edit:free-ish
    PHP socket scripting
  4. Replies
    5
    Views
    432

    Hey percepts.. I notice you are in Devon,...

    Hey percepts..

    I notice you are in Devon, whereabouts...?
  5. Replies
    2
    Views
    496

    I'm not sure what you mean when you say 'another...

    I'm not sure what you mean when you say 'another timeline'.

    I have tried the original file and I can place the movieclip into another flash document and that works ok.

    I created a new...
  6. Thread: onion effect

    by wdhall
    Replies
    7
    Views
    769

    Use duplicateMovieClip or attachMovie to get...

    Use duplicateMovieClip or attachMovie to get several replica's of a movie and change the _alpha of each clip to suit...
  7. Replies
    1
    Views
    339

    MX2004 format.... post files in mx only format...

    MX2004 format....

    post files in mx only format and more people can help you
  8. Replies
    7
    Views
    769

    If you followed the tutorial and the width of...

    If you followed the tutorial and the width of each of your pages is 580 then it should be like this:


    onClipEvent (enterFrame) {
    _x += (endX-_x)/spd;
    _y += (endY-_y)/spd;


    ...
  9. Thread: on rollover

    by wdhall
    Replies
    3
    Views
    493

    _xscale and _yscale are percentages...you must...

    _xscale and _yscale are percentages...you must have scaled your image already, test this with a trace like this
    trace(myclip._xscale);
    trace(myclip._yscale);


    and they will be 100 if you have...
  10. Replies
    17
    Views
    876

    Works well chero...there is no index44.swf in the...

    Works well chero...there is no index44.swf in the zip though...I took the liberty of adding a random one.
  11. Thread: on rollover

    by wdhall
    Replies
    3
    Views
    493

    This: on (rollOver) { //make button increase...

    This:

    on (rollOver) {
    //make button increase by 5%
    myButton._xscale=105;
    myButton._yscale=105;
    }
  12. Thread: Talking

    by wdhall
    Replies
    3
    Views
    781

    File->Import to Library Choose your 'Hi'...

    File->Import to Library

    Choose your 'Hi' sound(s)

    Create a new layer. Call it 'Sounds'

    Go to the frame where you think you want the sound to begin and insert a keyframe on the Sounds layer
    ...
  13. Thread: PHP help

    by wdhall
    Replies
    4
    Views
    1,406

    Glad to help. myText.scroll=myText.maxscroll...

    Glad to help.

    myText.scroll=myText.maxscroll

    (should do it)

    I respect your posts too by the way...
  14. Thread: PHP help

    by wdhall
    Replies
    4
    Views
    1,406

    I think it lies in this line (second from last):...

    I think it lies in this line (second from last):

    for($i = $a; $i >= $u ;$i--){

    which reads the txt file starting with the last line first...

    try this:

    for($i = 1; $i <= $a ;$i++){
  15. Replies
    17
    Views
    876

    Cant give you a code example. You will need to...

    Cant give you a code example. You will need to use javascript to do this unless the whole page is a flash movie.
  16. Replies
    4
    Views
    566

    toddgallina.com (http://www.toddgallina.com) has...

    toddgallina.com has some good animated tutorials...
  17. Thread: life counter

    by wdhall
    Replies
    5
    Views
    1,142

    _y=-500 is 500 pixels above the top of the...

    _y=-500 is 500 pixels above the top of the screen...

    You can check the players position but if the player is centered with the background scrolling behind it wont achieve what you want...

    In...
  18. Good luck with it. For your further...

    Good luck with it.

    For your further info...There are two documents downloadable from macromedia relating to the quizzes. Search their site for 'Learning Interactions'.

    One is about...
  19. Replies
    2
    Views
    460

    This is only visible in the testing environment...

    This is only visible in the testing environment and wont be visible during normal playback.

    To stop it, create a new layer above all the others and place a large white rectangle on it, then cut...
  20. Yes it can be done. You need to make the ASP...

    Yes it can be done.

    You need to make the ASP page to access the database and return the data in a form that flash can understand.

    In Flash you will need to use the LoadVars object to hit the...
  21. Replies
    1
    Views
    413

    You use exactly the same code except you replace...

    You use exactly the same code except you replace _x with _y....

    myClip._x+=1;
    myClip._y+=1;
  22. Replies
    7
    Views
    1,299

    Import the picture to flash and make it a...

    Import the picture to flash and make it a movieclip.

    Put the movie on stage and create 2 keyframes for it. One on frame 1 the other (say) on frame 15.

    Go to the movieclip on frame 1, in the...
  23. The link doesn't work..

    The link doesn't work..
  24. If you could post the contact.fla in mx only...

    If you could post the contact.fla in mx only format, thats where I think the problem is..
  25. Replies
    4
    Views
    668

    Try this code on the first frame of the movie. ...

    Try this code on the first frame of the movie. It might need some adaption, make sure you have frame labels of 'start' and 'gallery' on the main timeline


    //Create the shared object
    visitor =...
Results 1 to 25 of 241
Page 1 of 10 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center