Results 1 to 4 of 4

Thread: Program or Script to Move text around circle

  1. #1
    Join Date
    May 2008
    Posts
    2,012

    Program or Script to Move text around circle

    Hi friends, I want a Program or Script which will Move text around circle. You can give it in any language. I will convert it to which I want. I want to know just logic of it. If you have please give me or if you don't have just try to do it. I have tried it but not able to move it around. Please help me. I want to do it as when it possible. Please help me.

  2. #2
    Join Date
    Jan 2008
    Posts
    1,521

    Re: Program or Script to Move text around circle

    Hi, I don't think that this would be possible with the help of any language except flash or something as far as I have knowledge about programming. I have searched on internet regarding this but not able to get anything about it. I think you need to ask it to one who make programming for the software company or firm. If you find it post on this forum, so I can check it for improving my knowledge.

  3. #3
    Join Date
    May 2008
    Posts
    2,389

    Re: Program or Script to Move text around circle

    Hi, you can add this to your code to move text around circle.

    Code:
    onClipEvent (load) 
    {
    radius = 10;
    degrees = 0;
    }
    onClipEvent (enterFrame) {
    angle = degress*(Math.PI/180);
    degrees += 2;
    xposition = radius*Math.cos(angle);
    yposition = radius*Math.sin(angle);
    this._x = xposition+_root.cross._x+1;
    this._y = yposition+_root.cross._y+1;
    }
    I think this would work fine.

  4. #4
    Join Date
    Oct 2005
    Posts
    2,393

    Re: Program or Script to Move text around circle

    Hi, I have tried it much but can't find any solution about it. I think you can solve it by making to move that text around the circle coordinates. I don't have that much programming knowledge, so I am not able to do it. If you have that much strong programming knowledge then just do it. If you implement this then just post on this forum, so I can get it. You do one thing. First try to draw the circle and then by taking the coordinates of that circles border move the text on those coordinates.

Similar Threads

  1. How to get circle around a Text in Microsoft Excel
    By M.N.S in forum MS Office Support
    Replies: 2
    Last Post: 21-02-2012, 12:57 PM
  2. MS word 2010: not able to shape text in arch or circle
    By Turquose in forum Windows Software
    Replies: 5
    Last Post: 31-08-2011, 07:26 AM
  3. Replies: 3
    Last Post: 17-08-2010, 09:06 PM
  4. Script to move computers to another OU
    By Antonio00 in forum Active Directory
    Replies: 2
    Last Post: 20-02-2009, 04:23 PM
  5. Batch script to move users to different OUs
    By Serrix in forum Active Directory
    Replies: 5
    Last Post: 23-12-2008, 06:45 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,750,518,387.71977 seconds with 16 queries