Work with MovieClip in flash professional?



  • We need to make a flashing professional drawing that will be used in the code (written in FlashDevelop). I mean, there are classes that I can use. As I understand it, separate symbols are being created, of which a common picture is already being created. What do you want me to do?



  • The Flash Pro targets for loading in ActionScript 3 are listed in MovieClip (or Sprite, Shape, Bitmap, whichever is converted)

      var _object:MovieClip = _swf.getChildAt(i) as MovieClip;
    

    They then participate in the software flow, move, activate/discharge, etc. The necessary flour can be searched, for example, by name of class (Flash Pro)

      var s:String = getQualifiedClassName(_object);
      if ( s.indexOf("PLACE_CELL") != -1 )
          {
                var mc:MovieClip = (_object as MovieClip);                  
                mc.buttonMode = true;
                mc.blendMode = BlendMode.ADD;
                mc.alpha = 0.5;
          }
    

    The project itself does not usually see the types from the loaded flash drive, (only string names), although access to types is available in Flash Builder 4.5 - Flash Professional Project.




Suggested Topics

  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2