A Flash Developer Resource Site

Search:

Type: Posts; User: CharlesFK

Page 1 of 20 1 2 3 4

Search: Search took 0.09 seconds.

  1. :)... well I was wandering how to retrieve this...

    :)... well I was wandering how to retrieve this data inside the flash.

    The onComplete callback only return a reference to the file (Reference.onComplere (file:FileReference) ) and even if I rename...
  2. Replies
    1
    Views
    371

    The only place I seen this work is on...

    The only place I seen this work is on http://incomplet.gskinner.com and it's seem to be getURL call to javascript.

    But it's only managing to add anchor point to the url. From this you could build...
  3. Retrieving php output on FileReference.onComplete

    //php uploader

    $target_path = "/user/toto.jpg";

    if (move_uploaded_file($_FILES['userfile']['tmp_name'], $target_path))
    {
    $status = "1";
    }
    else
    {
  4. Changing href (or hash) in javascript from flash makes IE6 unhappy ??

    I'm trying to change the href of the page (in fact I'm just trying to change the anchor of the page) from flash in IE6 (it works just fine in FireFox).

    Made an example, using both FlashProxy (made...
  5. Thx... Going to try this.

    Thx... Going to try this.
  6. FileReference Upload limit or is it a php problem ??

    I use FileReference to upload almost every type of file (.exe, .fla. .jpg, .mp3) and it work just fine until the file is bigger than 2 megs.

    MM documentation says the limit is 100 megs, but at 1.8...
  7. Nope by itself you can't use flash to access any...

    Nope by itself you can't use flash to access any system operation (like write or execute)...

    I would need more info on what is not working in order to help you :)
  8. ok so basically you need to pass parameters to...

    ok so basically you need to pass parameters to your asp, right??

    actionscript


    var my_lv = new LoadVars();

    my_lv.monthid = new Date().getMonth();

    my_lv.onLoad = function (_bSuccess)
  9. no problem

    no problem
  10. LoadVars is the easiest way actionscript ...

    LoadVars is the easiest way

    actionscript

    _global.SetBar = function (bar1, bar2)
    {
    _root.blue._yscale = bar1 ;
    _root.orange._yscale = bar2;
    }
    var my_lv = new LoadVars();
  11. Well I managed to do it using the crossdomain.xml...

    Well I managed to do it using the crossdomain.xml policy on the root folder of the web site.
  12. Replies
    0
    Views
    343

    Code hints with custom classes ??

    Start using MX 2004 for few weeks now...


    I was wandering how do I get code hints to appear when I'm using my custom classes??
  13. Problem with loadMovie with external file (Security.allowDomain)

    I need to load swf from the in a Flash projector (executable swf).


    I'm trying to do a simple loadMovie



    my_mc.loadMovie("http://www.mysite.com/external.swf");
  14. i'm not sure what is the relationship between...

    i'm not sure what is the relationship between this code and the movie being loaded...

    but at least this is wrong



    this.createEmptyMovieClip("preloader_mc,1");

    //should be
  15. In fact, everything that is link in your library...

    In fact, everything that is link in your library (+ font + sound) load before the first frame... so your preloader won't show before all of theses are already loaded !!!
  16. Replies
    3
    Views
    431

    very simple... You use the variable name...

    very simple...

    You use the variable name (boot) of the textfield to change the data(very bad habit). Instead use the .text property of the textfield.

    In your case, you should change the...
  17. Replies
    4
    Views
    353

    without access to the .fla it's very hard to...

    without access to the .fla it's very hard to speculate why local function work while the _global didn't...

    In fact, the _global should always work!!!
  18. Replies
    4
    Views
    353

    on function declare as a global should have a...

    on function declare as a global should have a movie scope


    _global.Test = function (args0_str)
    {
    trace("Test : " + args0_str);
    }

    Test(this);
  19. Replies
    1
    Views
    528

    write this instead ...

    write this instead

    loadMovie("b.swf?&variable=" + aquiles, placeholder_b);
  20. Replies
    1
    Views
    777

    you can't do it with the internal flash cursor...

    you can't do it with the internal flash cursor (since _xmouse and _ymouse are readonly).

    but if you use a custom cursor just add


    var offset = 1;
    var xoffset = (offset / -2) + Math.random()...
  21. There is no way to convert a flash movie to any...

    There is no way to convert a flash movie to any image format since the two format are completely distinct.

    You can probably transform it using a COM object, but it a significant development time.
  22. Thread: Low values

    by CharlesFK
    Replies
    2
    Views
    532

    try this instead if (parseInt(hexvalue, 16)...

    try this instead


    if (parseInt(hexvalue, 16) < 16)
    hexvalue = "0" + hexvalue;
  23. Replies
    1
    Views
    373

    extends MovieClip ??

    How can I recreate the

    classname.prototype = new MovieClip();

    in AS2.0 ??


    Lot of people seems to do this
  24. Thread: Flash in VBA

    by CharlesFK
    Replies
    2
    Views
    429

    from vb (or vba) insert a ocx (vb component) in...

    from vb (or vba) insert a ocx (vb component) in your project.

    You can talk to the flash from vb using the method implemented in the ocx and from flash to vb thru custom fscommand.
  25. Thread: LoadMovie?

    by CharlesFK
    Replies
    2
    Views
    339

    It all depend on your level of knowledge of web...

    It all depend on your level of knowledge of web site archictecture development and also of the size of the web site you want to create. For a small site with few repeating section, it can be a pain...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center