A Flash Developer Resource Site

Search:

Type: Posts; User: pumpkin2006

Page 1 of 6 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    1,778

    AS 2 I've uploaded a simplified swf here to...

    I've uploaded a simplified swf here to demonstrate the game...
    http://in-production.co.uk/erfGame3/game3.swf
  2. Replies
    1
    Views
    1,778

    AS 2 Touchscreen AS2

    I've built a series of games that run in a visitors centre on a touchscreen.
    It's running on a windows 7 pc with a monitor which is touch sensitive.
    Everything works fine except for one game where...
  3. Replies
    8
    Views
    2,695

    AS 2 Thanks Nig! I see what you mean about the...

    Thanks Nig!
    I see what you mean about the bugs... this is basically what i was after though yeah!


    Cheers :)
  4. Replies
    8
    Views
    2,695

    AS 2 You're right of course, I was thinking of...

    You're right of course,
    I was thinking of simulating easing by slowing down the speed at which the ball moves once you release the button until its speed = 0.
    Although this too is proving...
  5. Replies
    8
    Views
    2,695

    AS 2 Thanks for that, that's a bit advanced for me...

    Thanks for that,

    that's a bit advanced for me tbh!
    I settled on a simpler solution which seems to work, although i need to figure out the easing.

    (I've attached the .fla for anyone who might...
  6. Replies
    8
    Views
    2,695

    AS 2 Hi Fruitbeard! thanks for that, really...

    Hi Fruitbeard!

    thanks for that, really appreciate the help!
    Unfortunately its not quite what i'm after, the script you wrote uses key presses, i'd managed to get that working, the trouble is...
  7. Replies
    8
    Views
    2,695

    AS 2 [RESOLVED] Easing with buttons

    Hello!

    I've written some basic code to move a ball to the mouses _x and _y position with easing.



    onClipEvent (enterFrame) {
    xp = _xmouse/10;
    yp = _ymouse/10;
    _x = _x+xp;
  8. Replies
    2
    Views
    2,971

    AS 2 Thanks Fruitbeard, i'll take a look at that...

    Thanks Fruitbeard,

    i'll take a look at that link!
  9. Replies
    2
    Views
    2,971

    AS 2 Parallax Scrolling

    The answer is probably a resounding 'NO', but worth a shot...

    i'm using



    _root.bannerwith = getProperty(_root.rear, _width);
    _root.bannerheight = getProperty(_root.rear, _height);...
  10. Replies
    1
    Views
    1,709

    you cant, you'll either need to apply some...

    you cant, you'll either need to apply some compression to your avi or, if you're animation is timeline based, export it as a swf and then import that into after effects and then re-export that...
  11. AS 2 call your button my_btn then on a frame action...

    call your button my_btn then on a frame action use:

    my_btn.onPress = function(){loadMovie("myswf.swf", 10);}

    the bit between the "" is the path to the external swf, so in this case the other...
  12. Replies
    2
    Views
    1,270

    Flash8 right click on the image in your library, select...

    right click on the image in your library, select properties, tick the 'allow smoothing' tick box and change the compression to png.
    As long as the image isn't being resized in flash it should be...
  13. Replies
    0
    Views
    830

    java in chrome

    hello,

    so ive got a java image slider running on my website and its all lovely except it breaks in chrome...
    works fine in safari, ff, ie...




    $(document).ready(function() {
    //Display...
  14. Replies
    3
    Views
    1,428

    that's worked! thanks a lot!

    that's worked!

    thanks a lot!
  15. Replies
    3
    Views
    1,428

    EDIT: something like this: ...

    EDIT:

    something like this:

    nav_but_1.enabled=false;
    nav_but_2.enabled=false;

    if(myVid.bytesLoaded==10000000){
    nav_but_1.enabled=true;
    }
  16. Replies
    3
    Views
    1,428

    [RESOLVED] enable button

    ahoy,

    i'd like to enable buttons when my video has progressively downloaded certain amounts...

    eg:




    nav_but_1.enabled=false;
  17. Thread: flv seek

    by pumpkin2006
    Replies
    2
    Views
    1,160

    thanks! had a read through, unfortunately i dont...

    thanks!
    had a read through, unfortunately i dont have access to the server side... and also not using jwplayer...
    and im guessing there is no alternative short of cutting up the flvs into multiple...
  18. Thread: flv seek

    by pumpkin2006
    Replies
    2
    Views
    1,160

    flv seek

    Hello!

    so im loading an flv into an flvplayback component on my stage using:



    import mx.video.*;
    myVid.autoPlay = true;
    myVid.contentPath = "swf/video/myvideo.flv";
    myVid.skin =...
  19. Replies
    2
    Views
    980

    thanks, yea did consider an exe but the client...

    thanks, yea did consider an exe but the client spec is flash running in html...
    never mind! cheers
  20. Replies
    2
    Views
    980

    [RESOLVED] getURL

    hello people!

    would i be right in thinking getURL wont work if the swf is running locally or from a CD?
    And if this is the case is there a work around?

    just to make sure i'm not being a big...
  21. Replies
    2
    Views
    903

    AS 2 thanks! myVid.volume = 50; worked.

    thanks!

    myVid.volume = 50; worked.
  22. Replies
    2
    Views
    903

    AS 2 [RESOLVED] flv volume slider

    hello!

    was wondering if it's possible to target the volume slider on an flv skin so i can set it to 50% instead of 100%...

    i was hoping 'setVolume' might do it but that doesn't affect the...
  23. Replies
    6
    Views
    2,432

    AS 2 hey, thanks a lot! will give it a try later :)

    hey, thanks a lot!

    will give it a try later :)
  24. Replies
    6
    Views
    2,432

    AS 2 Thanks, but i'm looking for a way to apply the...

    Thanks,

    but i'm looking for a way to apply the rounding to everything that has xy coordinates, including points in splines as well as MCs and graphics
    without having to reference everything...
  25. Replies
    6
    Views
    2,432

    AS 2 x, y integers

    Hello,

    I have a feeling the answer to this is probably 'no' but worth a shot...
    using actionscript I want to round up the xy position of everything on my stage to the nearest integer,
    i.e. if...
Results 1 to 25 of 139
Page 1 of 6 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center