A Flash Developer Resource Site

Search:

Type: Posts; User: ellings

Page 1 of 7 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    630

    Importing from Illustrator

    Hi

    I have this really big map from Illustrator. Most countrys are defined as shapes with outlines as their border. When I import this .ai file to flash (8 professional) everything starts to run...
  2. Replies
    13
    Views
    479

    Ok, I feel a little stupid right now.. I had...

    Ok, I feel a little stupid right now.. I had actually programmed some of the buttons to move slower.
    I guess I have to apologise for taking up your time.. :)

    Thanks for all your tips though. Like...
  3. Replies
    13
    Views
    479

    Fair enough, allthough I don't think it's the...

    Fair enough, allthough I don't think it's the dynamic textfields that causes the problem. It's when I add the static textfield inside the movieclip the movie starts to play slower.

    Thank you so...
  4. Replies
    13
    Views
    479

    Sorry about that. The attachment didn't work for...

    Sorry about that. The attachment didn't work for some reason..
    Here's the fla

    http://193.213.18.66/xml/atwMap.fla
  5. Replies
    13
    Views
    479

    The fla is to big to upload so I'll trim it down...

    The fla is to big to upload so I'll trim it down and try again, but for now here's the swf.
    The problem is the bottom menu. If you click the buttons in the menu you'll see the text it contains. If...
  6. Replies
    13
    Views
    479

    Static textfields

    I have 9 movieclips on my stage, each one having an onEnterFrame function that moves the clip to a new _x. They all move at the same time and it runs nice and smooth - until I add a static textfield...
  7. Thread: Flash to PHP

    by ellings
    Replies
    3
    Views
    410

    Is there a reason for as this security stuff in...

    Is there a reason for as this security stuff in flash? I really dont understand why you for example need the crossdomain.xml file in order to read a xml/rss file on another server. You never have any...
  8. Thread: Flash to PHP

    by ellings
    Replies
    3
    Views
    410

    Flash to PHP

    Is it possible to use LoadVars to POST to a php-file on another server?
    The php-file is supposed to write the posted variables to a file if that matters.
    For example


    var my_lv:LoadVars = new...
  9. What about "\r \n" ? /Per-Henrik

    What about "\r \n" ?

    /Per-Henrik
  10. You should find everything you need here + more....

    You should find everything you need here + more.
    http://www.kprotutorials.com/flash/fullscreen/index.html

    /Per-Henrik
  11. Replies
    6
    Views
    368

    Which version of flash are you using? ...

    Which version of flash are you using?

    /Per-Henrik
  12. Is it possible to create a .swf from a .swf?? ...

    Is it possible to create a .swf from a .swf??

    /Per-Henrik
  13. Replies
    2
    Views
    320

    http://www.iparigrafika.hu/pageflip/ ...

    http://www.iparigrafika.hu/pageflip/

    /Per-Henrik
  14. Actionscript alone cannot create files on the...

    Actionscript alone cannot create files on the server so you'd have to use php, asp or some other kindo of script to do that. Do a search for "actionscript write to file with php" or something either...
  15. Replies
    6
    Views
    368

    _root.output1 = length(_root.input1); will not...

    _root.output1 = length(_root.input1); will not work

    _root.output1 = length(_root.input1.text);or
    _root.output1 = _root.input1.text.length; will

    /Per-Henrik
  16. In case you didnt see what was wrong, the only...

    In case you didnt see what was wrong, the only thing that happened in the first click was the declaration of the function this.button.onRelease.

    On the first click the button does not have any...
  17. Replies
    4
    Views
    342

    That's correct. /Per-Henrik

    That's correct.

    /Per-Henrik
  18. Replies
    2
    Views
    366

    What is the actual problem? Is the "-" removed...

    What is the actual problem?
    Is the "-" removed from text when you read it or do you want to add a "-" somewhere in the text?

    /Per-Henrik
  19. If you have flash 8 professional, check out the...

    If you have flash 8 professional, check out the easing and tweening classes in the livedocs
    Ithink it's exactly what your looking for. Unfortnuatly I can't help you since I've never done any easing...
  20. Replies
    5
    Views
    478

    All you need to know about setInterval and...

    All you need to know about setInterval and duplicateMovie here
    http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/js/html/wwhelp.htm?href=Part4_ASLR2.html

    Just search for the two words
    ...
  21. Replies
    3
    Views
    466

    Youd have to remember where inside the array the...

    Youd have to remember where inside the array the object is put.
    You can get the property with cartArray[n].price, where "n" is a number.

    /Per-henrik
  22. Replies
    8
    Views
    568

    You will need to use a combination of flash and...

    You will need to use a combination of flash and php to get something like that working. Flash has a very limited capability when it comes to file management. Google after it and you'll find lots of...
  23. Replies
    3
    Views
    458

    1. Just use javascript to open a new window ...

    1. Just use javascript to open a new window


    on(release){
    getURL("javascript:window.open('http://url.here','windowname','width=648,height=400,
    ...
  24. Replies
    5
    Views
    721

    You dont have to use my_FLVPlybk.skin =...

    You dont have to use
    my_FLVPlybk.skin = "file:///install_drive|/Program Files/Macromedia/Flash 8/en/Configuration/Skins/ClearOverPlaySeekMute.swf"
    You can change the skin in the parameters in the...
  25. Replies
    8
    Views
    568

    These two lines does the job for me with the...

    These two lines does the job for me with the images img1.jpg, img2.jpg and img3.jpg


    i = Math.ceil(Math.random()*3);
    mc_img.loadMovie("/folder/" + i + ".jpg",1);

    Of course if you want to have...
Results 1 to 25 of 157
Page 1 of 7 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center