function TicTacToeBoard() { topbottom = BlankClip(1, 768, 52, "RGB24", 1, color=$000000) left = BlankClip(1, 152, 472, "RGB24", 1, color=$000000) right = BlankClip(1, 144, 472, "RGB24", 1, color=$000000) block = BlankClip(1, 156, 156, "RGB24", 1, color=$000000) gridhor = BlankClip(1, 2, 156, "RGB24", 1, color=$FFFFFF) gridver = BlankClip(1, 472, 2, "RGB24", 1, color=$FFFFFF) block1 = StackHorizontal(block, gridhor) block2 = StackHorizontal(block1, block1) block3 = StackHorizontal(block2, block) block4 = StackVertical(block3, gridver) block5 = StackVertical(block4, block4) block6 = StackVertical(block5, block3) full1 = StackHorizontal(left, block6) full2 = StackHorizontal(full1, right) full3 = StackVertical(topbottom, full2) full4 = StackVertical(full3, topbottom) return full4 } TicTacToeBoard()