A Flash Developer Resource Site

Search:

Type: Posts; User: bulldog54

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    0
    Views
    1,106

    Flash MX's Media Playback Component

    Hey everyone!

    I've spent the afternoon playing with the Flash MX 2004 Pro Media Playback Component and have managed to attach an FLV with the component by filling in the relevant input boxes in...
  2. I would prefer if it does not use xml (I'm pretty...

    I would prefer if it does not use xml (I'm pretty new to this). If you could post the script that makes the thumbnails scroll - that would be great.

    Thanks
  3. Is there really no one that can help me with...

    Is there really no one that can help me with this? I'm stuck!

    Thanks.
  4. Yes, the scrolling pictures.

    Yes, the scrolling pictures.
  5. Movie Clip moves in relation to mouse position

    Hi.

    I'm a beginner using Flash MX - I found this link;

    http://www.ecosign.net/html/__de/arbeiten/arbeiten.php


    and would like to do something similar. I thought it would be fairly easy but...
  6. Replies
    10
    Views
    1,112

    Anyone out there?

    Anyone out there?
  7. Replies
    10
    Views
    1,112

    I was going to use this piece of code to allow...

    I was going to use this piece of code to allow viewers to move large-ish pics around if they cannot see the entire image because of the size of their monitor. However, the larger the image, the more...
  8. Replies
    10
    Views
    1,112

    hehe can we solve one problem at a time... lol

    hehe can we solve one problem at a time... lol
  9. Replies
    10
    Views
    1,112

    The code I started with works fine in this...

    The code I started with works fine in this respect - it eases in the direction you were dragging the object in, once you release the mouse. (I've attached the file)
  10. Replies
    10
    Views
    1,112

    Sorry dawsonk but it does not seem to work so...

    Sorry dawsonk but it does not seem to work so well.

    I've attached my file so you can see how I want it to work. You will see the problem if you try to pick up the mc from one of the corners.
    ...
  11. Replies
    10
    Views
    1,112

    Thanks dude but I need the mc to ease when I drop...

    Thanks dude but I need the mc to ease when I drop it - rather than a hard drop.
    Can anyone help me?

    Thanks
  12. Replies
    10
    Views
    1,112

    Wanted: Guardian Angel/saviour

    _root.myMC.ease = 2;
    _root.myMC.onPress = function() {
    this.drag = true;
    }
    _root.myMC.onEnterFrame = function() {
    if (this.drag == true) {
    this.targX = _root._xmouse;
    ...
  13. Replies
    4
    Views
    3,094

    Also, I noticed that the mc seems to float to the...

    Also, I noticed that the mc seems to float to the top left hand corner of the stage when i test the movie. How do I get the dragable mc to start from a specific position?

    Merci!
  14. Replies
    4
    Views
    3,094

    Thanks TurkeyMaster that was exactly what i...

    Thanks TurkeyMaster that was exactly what i needed - you're my hero! hehe

    I was wondering if there is a way to constrain the mc to a specific boundry, I just realised that it is possible to throw...
  15. Replies
    4
    Views
    3,094

    Drag with easing on drop

    I'd like to create a movie clip that can be dragged around a stage but when the user releases the mouse, I want the mc to ease out in the direction the person dragged it rather than just a hard drop!...
  16. Replies
    0
    Views
    354

    Keypress Menu

    I am trying to build a navigation that appears once you press the spacebar.

    The menu will be visible only as long as you keep the spacebar depressed. It will disappear once you let go of the...
  17. Replies
    6
    Views
    442

    Can I attach files here? Ah I think I've attached...

    Can I attach files here? Ah I think I've attached the file... lol
    Any help would be appreciated. Thanks.
  18. Replies
    6
    Views
    442

    Thanks DJay... it is working but only once......

    Thanks DJay... it is working but only once... once I press again it won't work again. I'm wondering if this could be because I'm working locally. Could that be it?
  19. Replies
    6
    Views
    442

    Thanks for trying dude... but it still is not...

    Thanks for trying dude... but it still is not working...

    Your code fades out the menu once I let go of the key and works repeatedly but it does not fade in the menu.

    It seems like such a simple...
  20. Replies
    6
    Views
    442

    Key Press Problem

    I've created a simple menu that fades in with a key press and fades out on releasing the keypress. The problem is that once I release the keypress and try to do the same thing again. It plays the...
  21. Thread: Menu problem

    by bulldog54
    Replies
    0
    Views
    329

    Menu problem

    I've created a simple menu that fades in with a key press and fades out on releasing the keypress. The problem is that once I release the keypress and try to do the same thing again. It plays the...
  22. Replies
    8
    Views
    398

    YAYYYY I DID IT! The solution is surprisingly...

    YAYYYY I DID IT! The solution is surprisingly simple.

    attached this code to the menu mc:
    onClipEvent (keyDown) {
    if (Key.isDown(32)) {
    _root.menu._visible = true;
    }
    }...
  23. Replies
    8
    Views
    398

    Sorry but it is still not working. Maybe I'm...

    Sorry but it is still not working. Maybe I'm doing something wrong?
  24. Replies
    8
    Views
    398

    I'm afraid it is still not working. The menu...

    I'm afraid it is still not working. The menu appears once I press the spacebar but the moment I release the spacebar it remains there. I wish the menu to remain there as long as the spacebar is...
  25. Replies
    8
    Views
    398

    Ok I attached the following code to an invisible...

    Ok I attached the following code to an invisible button:

    on (keyPress "<Space>") {
    if (Key.isDown(Key.SPACE)) {
    _root.menu._visible = true;
    } else {
    _root.menu._visible...
Results 1 to 25 of 49
Page 1 of 2 1 2




Click Here to Expand Forum to Full Width

HTML5 Development Center