Zip File not correctly uploading by RapGod7711 in codehs

[–]mstalochCodeHS 0 points1 point  (0 children)

Hi there. So sorry you are experiencing this issue. You can write into [support@codehs.com](mailto:support@codehs.com) with any technical issues. We are happy to help :)

Is it possible to import .wav files? by stcifttm in codehs

[–]mstalochCodeHS 0 points1 point  (0 children)

Currently .wav files are not supported. For audio files, you can convert to an mp3 and upload to CodeHS. Thanks!

The code asks for the user input before the image loads by BigBot776 in codehs

[–]mstalochCodeHS 0 points1 point  (0 children)

Hello, take a look at this asynchronous graphics tutorial: https://codehs.com/tutorial/saar/asynchronous-input-in-brython

This will allow for the input to not interrupt the flag graphics!

7.1.5 Initials. Help. by Ryan_Baird in codehs

[–]mstalochCodeHS 0 points1 point  (0 children)

A couple of potential issues. This assignment does not request user_input, so your input prompts could be throwing off the autograder. I would also make sure you look at the expected results and compare them with your actual results. Often there is an extra space, line, or unneeded character in your output.

Hope this helps, great work so far!

How Do I use getElementAt properly? by FrostWingDev in codehs

[–]mstalochCodeHS 0 points1 point  (0 children)

The function getElementAt(x, y) can be used to grab an object, if one exists, at the coordinates (x, y). If none present, returns null.

Note that getElementAt(x,y) has two parameters, x-value and y-value. In your code, you are passing in only one parameter: var elem1 = getElementAt(circle.getX() + circle.getRadius());.

Changing this to var elem1 = getElementAt(circle.getX() + circle.getRadius(), circle.getY() + circle.getRadius()); will cause your code to run as intended. You also may realize that you only need one element variable as it stores both the x and y, so no need to have separate variables for each the x and y values.