A Flash Developer Resource Site

Search:

Type: Posts; User: mikeo1313

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    577

    Good Stuff! All I had to do was take the array...

    Good Stuff!

    All I had to do was take the array & loader out of the function and all worked well, even integrated a resizer very easily. Thanks!
  2. Replies
    3
    Views
    577

    I found this and doubt it will work for me since...

    I found this and doubt it will work for me since I have 5 mc instances on stage I'm using separate loaders for, so the stage wouldnt be a good reference point.

    movieclipname._y = Stage.height / 2...
  3. Replies
    3
    Views
    577

    load in center

    I'm using this AS to load multiple external images into mc instances on a stage.

    //1
    function loadImage1 ( value : String ) : void
    {
    loader1 = new Loader();
    loader1.load(new...
  4. Replies
    4
    Views
    496

    yeah I tried even doing an array of loaders and...

    yeah I tried even doing an array of loaders and its not working. Bulk container seems would do the trick but I have no time to learn how to use that now.

    Thanks for the code.

    All I ever did...
  5. Replies
    4
    Views
    496

    thanks for the response! when you initialize...

    thanks for the response!

    when you initialize the loader of image can you send in variables


    or


    would replacing loadimage ( '2kro.jpg'); with:
  6. Replies
    4
    Views
    496

    resize contrain

    Heres my code

    //from circlecube blog
    function resizeMe(mj:MovieClip, maxW:Number, maxH:Number=0, constrainProportions:Boolean=true):void
    {
    maxH = maxH == 0 ? maxW : maxH;
    mj.width =...
  7. Replies
    4
    Views
    590

    I got the image loading to work with this code,...

    I got the image loading to work with this code, passing the querystring as flashvars instead.


    function loaderComplete(myEvent:Event)
    {
    var flashvars=this.root.loaderInfo.parameters;
    ...
  8. Replies
    4
    Views
    590

    that contains the value of the parameter. For...

    that contains the value of the parameter. For example.

    if querystring is index.htm?im=test.jpg

    this.myparams.im would equal "test.jpg"
  9. Replies
    4
    Views
    590

    almost load image w params

    I'm able to get javascript parameters into swf with this code:



    // Example from:
    // www.permadi.com
    function loaderComplete(myEvent:Event)
    {
    this.myParams=this.loaderInfo.parameters;...
  10. Replies
    1
    Views
    688

    using the javascript in the noscope link above. ...

    using the javascript in the noscope link above.

    the resizeme function in this link...
  11. Replies
    1
    Views
    688

    querystring image load

    I want to have an swf load an image file in an image container within the swf from the querystring.

    1. In the query string I'd like the extension of the image file to not show:...
  12. Replies
    3
    Views
    570

    this code supposedly plays 2 vids simultaneously...

    this code supposedly plays 2 vids simultaneously


    import gs.*;
    import flash.utils.*;


    var video:Video = new Video();
    stage.addChildAt(video, 0);
  13. Replies
    3
    Views
    570

    uber video whip

    I have 1 flv with only 12 seconds of audio.
    another flv that is 10 seconds with only video
    another flv that is 2 seconds with only video


    Lets assume both video files are as long as my audio...
  14. Replies
    0
    Views
    263

    loading external video content

    Can I use addchild & cuepoints in a streamed video to

    1. play an external moviclip/swf on top layer with a transparent background?
    (without affecting original timeline & background video...
  15. Replies
    1
    Views
    843

    tracking & stats

    I intend on adding a single page to a website with a shared host. This page will simply have a video playlist with comments for authenticated users.

    I imagine the log files have a plethora of...
  16. Replies
    0
    Views
    362

    dynamic personalized video

    1. *rendering*
    What's the best suggestion/method for taking a stock video with both audio & video and putting placeholders for dynamic insert of visitor specific elements as visitors name (mp3) &...
  17. Replies
    2
    Views
    618

    great input, will be giving it a try. I wonder...

    great input, will be giving it a try.

    I wonder if the free/personal version of flash ownerguard can pull of similar cache download protections as secure swf & its actual encryption prevents...
  18. Replies
    2
    Views
    618

    securing flash site

    Flash OwnerGuard
    http://www.armjisoft.com/?page=flashownerguard
    Support wide range of limitations for data users including Machine-Dependency, Windows-Dependency, OLE Drag&Drops, Printing,...
Results 1 to 18 of 18




Click Here to Expand Forum to Full Width

HTML5 Development Center