A Flash Developer Resource Site

Search:

Type: Posts; User: Ex-Ess

Page 1 of 20 1 2 3 4

Search: Search took 0.03 seconds.

  1. Just in case anyone else is trying to do this I...

    Just in case anyone else is trying to do this I figured out that you can use:



    function myObject(){}
    var obj:Object = new myObject();
    dwm.fnct.call(obj);
  2. [RESOLVED] Can Objects/MovieClips hold functions?

    Hello all!
    I have the following code:


    var dwm:mc_dwm = new mc_dwm();
    dwm.mapName = myMap2;
    dwm.xtile = 5;
    dwm.ytile = 1;
    dwm.wdth = 18;
    dwm.hght = 17;
  3. Replies
    1
    Views
    423

    bump

    bump
  4. Replies
    1
    Views
    423

    Dynamic Object With Own Tween

    Hi all,
    I'm creating a list of news items you can click on to open the news item.
    Each "open button" is created dynamically.
    I want it so when you roll over it runs a tween that changes the colour...
  5. Splendid good sirs :)

    Splendid good sirs :)
  6. Any help?

    Any help?
  7. I mean what is generated looks fine and like XML...

    I mean what is generated looks fine and like XML should. URL is fine and in the same place as the swf.
  8. Like I said if I copy and paste the source code...

    Like I said if I copy and paste the source code of the asp page into an xml file it works fine.

    And if I look at the page the xml looks fine.



    <%
    Response.ContentType = "text/xml"...
  9. Yes they are in different places....different...

    Yes they are in different places....different frames and sizeVideo is on the stage timeline....the code to stop it is in a movieclip attached to another movieclip on the main time line.

    How would...
  10. [RESOLVED] CS4 AS3 - RemoveEventListener Error

    Hey,

    I have this code:



    stage.addEventListener(Event.RESIZE,sizeVideo, false, 0, true);
    backVideo.width = stage.stageWidth;
    backVideo.scaleY = backVideo.scaleX;
  11. [RESOLVED] CS4 AS3 - Loading ASP generated XML

    Keep getting this error when trying to load some asp generated xml into flash:

    Error #2044: Unhandled ioError:. text=Error #2032: Stream Error. URL: http://evildesign/gallery.asp
    at...
  12. Legend! Can't believe something so small makes a...

    Legend! Can't believe something so small makes a problem like that!
  13. Here is the function that builds the form: ...

    Here is the function that builds the form:


    function newBooking(e:Event){
    var form:MovieClip = new MovieClip();
    form.y = 20;
    addChild(form);

    var formBG:MovieClip = new MovieClip();...
  14. [RESOLVED] AS3 CS4 Input Textfield Bug Any Ideas?

    Hello all,
    I have created some input text boxes using AS3.

    For starters, unless I set the text in the code to = " " you can't type in them.

    Secondly if I click on each box individually I can...
  15. Sorted it myself! :) Used a custom listener to...

    Sorted it myself! :)

    Used a custom listener to dispatch a stopped event.
  16. [RESOLVED] How to tell if a movie has stopped playing

    Hi again! Spend most of my life on here at the moment! :(

    I have a movie in my library which I've assigned a class so I can attach it to the stage in my code. This movie has stop() markers along...
  17. Replies
    1
    Views
    489

    OOP Good Technique Advice

    Hey all,
    I'm currently building a Flickr slideshow style gallery with thumbnails at the bottom and main images fading in and out. I've got all this working fine but I need some advice on a few...
  18. Replies
    6
    Views
    1,868

    Any help? :(

    Any help? :(
  19. Replies
    6
    Views
    1,868

    Sorry I don't know what you mean "in that event"...

    Sorry I don't know what you mean "in that event" .... still trying to get my head around as3 :(

    I tried:


    private function onLoading(e:ProgressEvent) {
    var loaded = e.bytesLoaded;
    var...
  20. Replies
    6
    Views
    1,868

    yeah I've been trying to do that :( ...

    yeah I've been trying to do that :(



    imageLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onLoading);

    private function onLoading(e:ProgressEvent) {...
  21. Replies
    6
    Views
    1,868

    Passing bytesLoaded using dispatchEvent

    Hi all,
    I'm struggling to get the bytesLoaded in a class back to the main timeline. This is my class:



    package com {
    import flash.events.*;
    import flash.display.*;
    import flash.net.*;...
  22. Replies
    4
    Views
    613

    Genius! I figured I had most of the code right...

    Genius!

    I figured I had most of the code right but it was calling the trace before it finished loading....this is a very nice solution :)

    Many thanks
  23. Replies
    4
    Views
    613

    Return Variables After External Load

    Hey hey again I'm hitting a brick wall. I have a class to load some XML and build the data into an array but I can't get the timeline to see the array. Please help!

    My Class:


    package com {...
  24. Replies
    0
    Views
    427

    Loading Multiple Images

    Hello all,
    Please look at the following class for loading images:



    package com {
    import flash.events.*;
    import flash.display.*;
    import flash.net.*;
  25. Replies
    4
    Views
    629

    Doh! Thank you very much. I was getting...

    Doh!

    Thank you very much. I was getting confused thinking the addChild in the class was the problem as it can't see the stage.....obviously it doesn't need to. It's taking some getting used to use...
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