Slogan Generator is a simple tagline generator. All businesses need a catchy phrase to introduce its product, and having a simple and easy to remember slogan is the best way to do that. All you need to do is to enter a word, usually the name of your brand or business and it returns upto twenty custom slogans in one click, based on our database. Software Flash Editor sangat sederhana sehingga cara menggunakan software Flash Editor pun Admin kira tidak akan bermasalah. Namun kalaupun masih ada yang kebingungan kita akan bahas nanti bagaimana cara menggunakan software FlashEditor ini misalnya untuk mengganti boot logo, merubah config remote, mengganti preset dan lain lain.
- Tle (tanaka Logo Editor) App
- Tle (tanaka Logo Editor) Pro
- Tle (tanaka Logo Editor) Online
- Tle (tanaka Logo Editor) Software
- Tia (tanaka Logo Editor)
- Tle (tanaka Logo Editor) 2020
TaleBlazer games played on your smart phone take learning anywhere Learn More Make AR games easily, using the drag and drop TaleBlazer editor Learn More Step back in time at Old Sturbridge Village and learn about economics of daily life in New England. Tanaka is a brand within Koki Holdings America providing Innovative Products For Property Managers, Utility Professionals, etc. Visit Us To Learn More!
- local stats = game.Players.YOURNAMEHERE.leaderstats
- --everything in caps is something you have to change
- --replace STATYOUWANT to the name of the stat you want to change, e.g Gold
- --make sure you replace STATYOUWANT with the EXACT name
- --this is an example:
- --stats.Gold.Value = 99999
Please register and start creating your own cool programs
forward X , fd X
Example:
forward 50
back X , bk X
Example:
back 50
left X , lt X
Example:
left 90
right X , rt X
Example:
right 90
clearscreen , cs
Example:
cs
changeshape X or STR , csh X or STR
Will change the turtle to another shape accordin to the following 0 = 'turtle', 1 = 'cat', 2 = 'fish', 3 = 'dog', 4 = 'horse', 5 = 'tiger', 6 = 'crab', 7 = 'snail'
Explained in lesson:
penup , pu
Example:
penup
Explained in lesson:
pendown , pd
Example:
pendown
Explained in lesson:
wait X
Will cause the turtle to wait X ( 60ths of seconds ) time before executing the command
Explained in lesson:
setwidth X
Tle (tanaka Logo Editor) App
Example:
setwidth 4 fd 50

hideturtle , ht
Example:
hideturtle
Tle (tanaka Logo Editor) Pro
Explained in lesson:
showturtle , st
Example:
ht wait st
Explained in lesson:
home
Example:
home
setx NUM_x
Example:
setx 100
sety NUM_y
Example:
sety 200
setxy NUM_X NUM_Y
Example:
setxy 100 100
setheading , seth
Example:
sh 145
arc ANGLE RADIUS
Will create an arc distance RADIUS covering ANGLE angle

Explained in lesson:
ellipse WIDTH HEIGHT
Will craete an ellipse width Width and height Height
pos
Outputs the current turtle position as [ x y ], x or y respectively
Explained in lesson:
Tle (tanaka Logo Editor) Online
xcor
Outputs the current turtle position as [ x y ], x or y respectively
Explained in lesson:
ycor
Outputs the current turtle position as [ x y ], x or y respectively
Explained in lesson:
heading
Example:
heading
towards
Outputs the heading towards the specified [ x y ] coordinates
Explained in lesson:
repeat X [ statements ... ]
Example:
repeat 4 [ fd 50 rt 90]
repcount
Outputs the current iteration number of the current repeat or forever
for controllist [ statements ...]
Typical for loop. The controllist specifies three or four members: the local varname, start value, limit value, and optional step size
Explained in lesson:
to PROCNAME inputs ... statements ... end
Define a new named procedure with optional inputs
Explained in lesson:
make varname expr
Update a variable or define a new global variable. The variable name must be quoted
Explained in lesson:
: VARNAME
Example:
make 'foo 5 repeate :foo [fd 50 rt 360 / :foo]
list thing1 thing2 ...
Example:
make 'mylist (list 'turtle 'academy)
first listname
Example:
print first :mylist
butfirst listname
Outputs all the items of listname except for the first item
Explained in lesson:
last listname
Example:
print last :mylist
butlast listname
Outputs all the items of listname except for the last item
Explained in lesson:
item index listname
Example:
print item 1 :mylist
pick index listname
Example:
print pick :mylist
Colors
setcolor X
Will set the turtle color accroding to the following table0: black | 1: blue | 2: lime |
3: cyan | 4: red | 5: magenta |
6: yellow | 7: white | 8: brown |
9: tan | 10: green | 11: aquamarine |
12: salmon | 13: purple | 14: orange |
15: gray |
Explained in lesson:
setcolor [r,g,b]
Will set the turtle color accroding to the amount of red , green and blue
fill
Tle (tanaka Logo Editor) Software
Does a paint bucket flood fill at the turtle's position
Example:
cs repeear 4 [ fd 50 rt 90 ] pu setxy 50 50 pd fill
filled fillcolor [ statements ... ]
Execute statements without drawing but keeping track of turtle movements. When complete, fill the region traced by the turtle with fillcolor and outline the region with the current pen style

Explained in lesson:
sum X Y
Example:
print sum 2 3
minus X Y
Example:
print minus 8 2
random X
Tia (tanaka Logo Editor)
Example:
cs print sum random 10 3
modulo expr expr
Tle (tanaka Logo Editor) 2020
Outputs the remainder (modulus). For remainder and % the result has the same sign as the first input; for modulo the result has the same sign as a the second input.