A Flash Developer Resource Site

Search:

Type: Posts; User: MarcD

Page 1 of 8 1 2 3 4

Search: Search took 0.07 seconds.

  1. Sending multipart/alternative e-mail through PHP

    Hello,

    I am writing a newsletter module in PHP.
    Because it's unclear wether subscribers can receive html e-mail, i want to send it in a multipart/alternative format.

    However, i can't seem to...
  2. Replies
    1
    Views
    816

    [AS2] Preloading multiple external images

    Hello,

    I am currently building an mp3 player with a little screen which displays some images in a certain order. Everything is loaded in through XML.

    I would like to preload those images...
  3. Replies
    1
    Views
    472

    Anyone? It's pretty urgent and i'm pulling my...

    Anyone? It's pretty urgent and i'm pulling my hair out over this one :yikes:


    Thanks in advance
  4. Replies
    2
    Views
    1,509

    You can make it an AIR application. The AIR...

    You can make it an AIR application.

    The AIR runtime has methods for online / offline synchronisation.
    There was an example of an AIR application a while back, created for EBAY, which synchonised...
  5. Replies
    1
    Views
    472

    Mosaic transition problem

    Hello everyone,

    I found a tutorial for making a mosaic transition (see this link), however i'm having trouble getting it to work in my project (works fine in a new file).

    The problem is as...
  6. Replies
    4
    Views
    593

    The fla cannot be downloaded. I get prompted for...

    The fla cannot be downloaded. I get prompted for a username / pw and save target as doesn't work either.

    Could you reupload it to another directory/server?
  7. Replies
    4
    Views
    593

    Hey, I think it will be very difficult for...

    Hey,

    I think it will be very difficult for anyone to help you out without seeing the fla. Couldn't you zip it up and upload it to a server or something?
  8. Thread: E-Flyers

    by MarcD
    Replies
    1
    Views
    670

    Please elaborate, what do you mean by "e-flyer"?

    Please elaborate, what do you mean by "e-flyer"?
  9. Hey, Thanks for your reply. I resolved the...

    Hey,

    Thanks for your reply.
    I resolved the issue another way though.

    The reason i wanted it changed is that i used css to make both the body and container div 100% height.
    This however caused...
  10. IE7 only taking overflow value from stylesheet

    Hello,

    I am in the process of building a site that requires the overflow = 'auto' value on screen heights smaller then 790px.
    On screen heights above 790px, the value will be 'hidden'.

    The...
  11. You could use a Clip eventhandler to determine if...

    You could use a Clip eventhandler to determine if a movieclip has been clicked.



    onClipEvent(mousedown){
    trace("I have been clicked!!");
    }
  12. Replies
    2
    Views
    789

    You can rotate movieclips using the _rotation...

    You can rotate movieclips using the _rotation property.

    Positive numbers for clockwise:


    on(press){
    this.testmovieclip._rotation += 15;
    }
  13. Replies
    2
    Views
    1,078

    My apologies for my extremely late reply. I have...

    My apologies for my extremely late reply.
    I have been very busy and was unable to reply until now.

    Thank you very much for your input, it worked like a charm.
  14. Replies
    2
    Views
    1,078

    Upload image and create a thumbnail copy

    Hello,

    I'm trying to create a form where a user add can upload a photo (450x675 px), the other form information gets stored in a database and a thumbnail is created from the photo (100x150 px) and...
  15. Replies
    1
    Views
    418

    You get these errors because functions, methods...

    You get these errors because functions, methods and operators where used that are not availible in Actionscript 1.0 (the Import function for example).
  16. Replies
    3
    Views
    453

    Well i have been using Flash since version 4 and...

    Well i have been using Flash since version 4 and as far as i know, the programming was always a requirement to make a button do anything.
    Because it needs an event to act on (click, release,...
  17. To find the screen width and height, use...

    To find the screen width and height, use screen.width and screen.height.



    <script language="javaScript" type="text/javascript">
    resizeTo(screen.width,screen.height);
    </script>


    This will...
  18. Replies
    4
    Views
    517

    Sorry, my mistake, i forgot to include the...

    Sorry, my mistake, i forgot to include the Loadvars code.
    In Frame 3 of your Flash file put:


    var languagereceive:LoadVars = new LoadVars;

    languagereceive.onLoad = function(){ ...
  19. Replies
    1
    Views
    360

    There a number of programs for photo/image...

    There a number of programs for photo/image editing.
    For example Adobe Photoshop.

    Remove the background, save the image as a PNG in Photoshop and import it into Flash.
    The PNG file format...
  20. Replies
    3
    Views
    453

    A question is only stupid when it aint being...

    A question is only stupid when it aint being asked :p
    Anyway, you select your button, then in actions you put in:


    on(release){
    getURL("http://www.domain.com/page.html","_self");
    }
  21. Yes, window.open will be blocked by pop-up...

    Yes, window.open will be blocked by pop-up blockers if it isn't called by a user click.
    So opening a popup when a page loads will block it, while clicking a link to open a pop-up will let it pass.
    ...
  22. Replies
    4
    Views
    517

    My advice would be to set a GET variable holding...

    My advice would be to set a GET variable holding the language with the textlink.
    For example:


    <a href="' . $_SERVER['PHP_SELF'] . '?lang=nl" title="Set the language to Dutch">Dutch</a>
    <a...
  23. Replies
    4
    Views
    692

    Thank you very much, it works perfectly ...

    Thank you very much, it works perfectly :thumbsup: .



    I did consider it, however in this particular case i think it would be easier with fopen because there's no need to do anything other then...
  24. Replies
    4
    Views
    692

    Hi, Thank you for your reply. This sorta...

    Hi,

    Thank you for your reply.
    This sorta works, however it repeats the whole file.

    The output i am getting is like this:


    <?xml version="1.0" encoding="UTF-8" ?>
    <urlset...
  25. Replies
    4
    Views
    692

    Adding / Replace from an Xml file using PHP

    Hello,

    I am currently trying to deal with the following issue:

    I am a teammember of a website wich lists WWII Movies.

    Recently, i created an account on google.com and linked to a basic xml...
Results 1 to 25 of 191
Page 1 of 8 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center