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.
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.
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.
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.