Open-Beta Sketch

nope.

1 Like

Can you log in and try again?

I tried million times but no use

1 Like

Hmmm wil contact Github then.
Thanks

@super-coder Github says they are seeing a loading screen and that there is nothing wrong.
Can you confirm you are seeing this?

2 Likes

I can confirm that loading screen is visible.

After the loading screen the console shows this error

image

Hope this helps.

1 Like

Thanks @muneer !
So everything works.
It only shows the loading screen for now.
Home page is not Done yet.

1 Like

Yes, I confirm the same.

3 Likes

Hi everyone.
I’m sorry i keep forgetting to make one.

Do you guys still want one?
Please let me know.

Thanks

sure

sure it’s quite simple actually.

add these links to your html body:

<script src="https://unpkg.com/blockly/blockly.min.js"></script>

<script src="blockly_compressed.js"></script>
<script src="blocks_compressed.js"></script>

<script src="msg/js/en.js"></script>

Then go to [Blockly Demo: Blockly Developer Tools](https://google their own dev tools)

You’ll be greeted with a screen looking like this:

Now deisgn your block(s).
After that copy this :
Screenshot 2022-02-24 7.30.26 PM
to your definitions js file.

Then copy this:


to your generator file.

NOTE: you have to write the generator yourself.

after that go to “Workspace factory”
Here you can design your workspace, add your blocks, create categories etc

After doing that.
click “export” then download “toolbox”

copy “toolbox.xml” or whatever you name it to your html file and put var workspace = Blockly.inject('blocklyDiv', { toolbox: document.getElementById('toolbox'), trashcan: true });
in your js file this will inject the workspace.

Then add: <div id="blocklyDiv" style="height: 480px; width: 800px;"></div>

This will determine the size of the workspace.

The result would look like this:


If ya’ll have any questions feel free to ask

cc: @manyone, @muneer , @vishruth-ram , @codeswept

3 Likes

Thanks. Luke! I will actually attemp to understand this - im still dreaming of my block based cobol program generator!

3 Likes

No problem !!!
Looking forward to what you’ll make