A Flash Developer Resource Site

Search:

Type: Posts; User: if6were9

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    0
    Views
    367

    [as2] variable for a class name?

    I'm trying to make an instance of a class based on a variable name, like so:

    var cn:String = 'Foo';
    var c = new cn(); // i didn't think this would work...

    Where c would create an instance of...
  2. There's no 'server' to send the mail in your...

    There's no 'server' to send the mail in your projector. The user would have to have an internet connection open when they open your projector file, and you'd have to send the data to the url of the...
  3. Replies
    16
    Views
    7,318

    Remoting?

    Has anyone had problems with flash remoting or equivalents since installing the patch? I'm using phpObject (http://ghostwire.com) and ever since I installed the patch, phpObject won't fly...

    **...
  4. Replies
    1
    Views
    386

    corrupted .fla???? NOOOOOOO!!!!!!!!

    I'm running windows2000, my machine crashed in the middle of working on a .fla file that I have a lot of time invested in... I went to open it up today, (created in and using mx04) and when I open...
  5. Replies
    0
    Views
    711

    corrupted .fla

    whoops, wrong forum... move along, there's nothing to see here...
  6. Replies
    8
    Views
    919

    Sorry it took so long to get back... Your query...

    Sorry it took so long to get back... Your query looks wrong, what about just "select * from ROI_Data" ??

    Just because you don't get an error, doesn't mean it grabbed anything...

    Try running...
  7. Replies
    8
    Views
    919

    The include files will be included inside the...

    The include files will be included inside the movie when you publish it, so there's no need to put them on the server. You will need the Gateway.php on your server though.

    You can pass as much as...
  8. Replies
    8
    Views
    919

    Also, if you use the debugObject function, make...

    Also, if you use the debugObject function, make sure you comment it out before testing in flash. It will confuse the movie!
  9. Replies
    8
    Views
    919

    Try using the onInit function when you initialize...

    Try using the onInit function when you initialize the phpObject:

    In my AS I have the following code


    // make sure the three files are in the right folder! ('PHPObject.as', 'PHPSerializer.as',...
  10. Replies
    12
    Views
    1,644

    on (release,keyPress(""){ trace("foo");...

    on (release,keyPress("<enter>"){
    trace("foo");
    }


    I didn't try this, but you're missing an end parenthesis:


    on (release,keyPress("<enter>")){
    trace("foo");
  11. Replies
    2
    Views
    389

    Thanks again for solving another one!

    Thanks again for solving another one!
  12. Replies
    2
    Views
    389

    Help me draw a dashed border?

    Here's my latest attempt at rendering a dynamic rectange (w/ width, height, border_width, border_color & background_color) I'm trying to render a dashed border, and can't seem to get the code...
  13. Replies
    8
    Views
    1,911

    Thanks, I guess I've gotta do what I've gotta...

    Thanks, I guess I've gotta do what I've gotta do...

    I found this code from another post, I'm going to try it now.


    this.lineStyle(2);
    for (var i = 0; i <= 8; i++) {
    if (i % 2 == 0) {...
  14. Replies
    8
    Views
    1,911

    Is there a way to change the line style...

    Is there a way to change the line style dynamically? I'd like to be able to create a dashed line on the fly... is that even possible? I've searched and can't seem to find anything.

    Thanks!
  15. Replies
    0
    Views
    640

    set stage dimensions on the fly?

    I'm doing a popup flash image viewer and was wondering what the easiest way to do this would be. (using mx04)

    I'm passing the image width and height to the swf as well as the html that renders it,...
  16. Replies
    5
    Views
    351

    Thanks, I'll check that out.

    Thanks, I'll check that out.
  17. Replies
    5
    Views
    351

    sort of... a movie on someone elses server that...

    sort of... a movie on someone elses server that requests data specific to that ip. I just want to prevent the data from getting there if they decide to put it up on another server (or if someone else...
  18. Replies
    5
    Views
    351

    xml policy file?

    I've set up an xml policy file, and it's working nicely. However, if the request is coming from an invalid domain or IP, how can I display some sort of error? (popup or something...)

    How can I...
  19. Replies
    9
    Views
    1,041

    look at PHPObject (http://ghostwire.com) . ...

    look at PHPObject .

    Opensource flash remoting, pretty cool.
  20. Replies
    6
    Views
    478

    Here's the actionscript, in case the file didn't...

    Here's the actionscript, in case the file didn't work

    /*Module Object Class Constructor/Methods*/
    function myModule(xPos, yPos, col){
    this._width = 10;
    this._height = 200;
    //initialization...
  21. Replies
    6
    Views
    478

    sorry, I posted it in mx04 format, try this: ...

    sorry, I posted it in mx04 format, try this:

    Let me know how it worked.
  22. Replies
    6
    Views
    478

    here yago... I renamed your class from...

    here yago...

    I renamed your class from "Module" to "myModule" (thinking there may be a reserved word, maybe not...)

    You need to call methods by using the classname first, in your loop:
    ...
  23. echo " some text\n";...

    echo "<font face=\"verdana\">some text</font>\n";

    or:

    echo "<font face='verdana'>some text</font>\n";

    Is that what you meant?
  24. Replies
    0
    Views
    427

    duping dynamically loaded jpg inside mc?

    I have a rather large image (120k) that I'm loading dynamically into an empty mc, is there a way that I can dupe the mc (or even better, dupe the jpg) so that I don't have to load the image twice? In...
  25. Thread: P H P

    by if6were9
    Replies
    2
    Views
    431

    Lookie here...

    Lookie here

    This will handle getting the data to and fro your flash app, you'll just have to build some sweet PHP classes to manage it all... I'm sure for a newsboard there's already a bunch out...
Results 1 to 25 of 30
Page 1 of 2 1 2




Click Here to Expand Forum to Full Width

HTML5 Development Center