Examples of placeSymbol()


Examples of com.anotherbigidea.flash.movie.Frame.placeSymbol()

                    }
                }
               
                // draw it into a new frame of SWF
                frame = movie.appendFrame();
                frame.placeSymbol(line_shape, 0, 0);
               
                // the startpoint of next step is our last point.
                point[0] = point[draw_points - 1];
            }
        }
View Full Code Here

Examples of com.anotherbigidea.flash.movie.Frame.placeSymbol()

        transe.setScaleX(scale_);
        transe.setScaleY(scale_);
        transe.setTranslateX( position_.getX() );
        transe.setTranslateY( position_.getY() );
       
        Instance instance = frame.placeSymbol( shape, transe, null );
       
        // sleep in flash...
        for (int count = 0; count < 5; count++ )
        {
            movie.appendFrame();
View Full Code Here

Examples of com.anotherbigidea.flash.movie.Frame.placeSymbol()

        shape.setLineStyle(1);
        shape.setRightFillStyle(1);
       
        shape.drawAWTPathIterator(rect_.getPathIterator(null));
       
        Instance instance = frame.placeSymbol(shape, 0, 0);
       
        // sleep in flash...
        for (int count = 0; count < 5; count++ )
        {
            movie.appendFrame();
View Full Code Here

Examples of com.anotherbigidea.flash.movie.Frame.placeSymbol()

        shape.setLineStyle(1);
        shape.setRightFillStyle(1);
       
        shape.drawAWTPathIterator(ellipse_.getPathIterator(null));

        Instance instance = frame.placeSymbol(shape, 0, 0);
       
        // sleep in flash...
        for (int count = 0; count < 5; count++ )
        {
            movie.appendFrame();
View Full Code Here

Examples of com.anotherbigidea.flash.movie.Frame.placeSymbol()

        shape.defineLineStyle((stroke_.getLineWidth()), line_color);
        shape.setLineStyle(1);
        shape.move( line_.getX1(), line_.getY1());
        shape.line( line_.getX2(), line_.getY2());
       
        Instance instance = frame.placeSymbol(shape, 0, 0);
       
        // sleep in flash...
        for (int count = 0; count < 5; count++ )
        {
            movie.appendFrame();
View Full Code Here

Examples of com.anotherbigidea.flash.movie.Frame.placeSymbol()

    Shape shape = new Shape();
    shape.defineFillStyle(fill_color);
    shape.setRightFillStyle(1);
    shape.drawAWTPathIterator(glyphs.getOutline().getPathIterator(null));

    Instance instance = frame.placeSymbol(shape, (int) position_.getX(), (int) position_.getY());

    waitMovie(movie, speed);
  }

  //----------------------------------------------------------------------------
View Full Code Here

Examples of com.anotherbigidea.flash.movie.Frame.placeSymbol()

    double width = glyphs.getLogicalBounds().getWidth() / 2.0;
    double center = position_.getX() + width;
    double scale = 2.0;

    frame = movie.appendFrame();
    instance = frame.placeSymbol(shape, new Transform(), new AlphaTransform());
    alterFrame(frame, instance, center - width * scale, position_.getY(), scale, 0.5, 0.025);

    for (int i = speed; i <= 40; i += speed)
    {
      frame = movie.appendFrame();
View Full Code Here

Examples of com.anotherbigidea.flash.movie.Frame.placeSymbol()

        double center_x = position_.getX() + width;
        double center_y = position_.getY() - height;
        double scale = 2.0;

        frame = movie.appendFrame();
        instance = frame.placeSymbol(shape, new Transform(), new AlphaTransform());
        alterFrame(frame, instance, center_x - width * scale, center_y + height * scale, scale, scale, 0.05);

        for (int i = speed; i <= 10; i += speed)
        {
          frame = movie.appendFrame();
View Full Code Here

Examples of com.anotherbigidea.flash.movie.Frame.placeSymbol()

      for (int i = 0; i < image.length; i++) {
        if (DelayTime[i] > 1000) {
          for (int j = 0; j < (DelayTime[i]) / 1000; j++) {
            Frame frame = movie.appendFrame();

            frame.placeSymbol(image[i], 0, 0);
          }
        } else {
          Frame frame = movie.appendFrame();

          frame.placeSymbol(image[i], 0, 0);
View Full Code Here

Examples of com.anotherbigidea.flash.movie.Frame.placeSymbol()

            frame.placeSymbol(image[i], 0, 0);
          }
        } else {
          Frame frame = movie.appendFrame();

          frame.placeSymbol(image[i], 0, 0);

        }
      }
      // 文件输出
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.