Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by Axolotl Hydra

  1. Axolotl Hydra

    JavaScript JS - For Loop Question

    Heya, So from a quicker overview, it just looks like you've given a little bit of a typo; rather than spelling courses, you've written it as course (missing the extra 's'). With that mentioned, there are a couple of other things I'd like to mention/point out in your code. 1. I'm a little bit...
  2. Axolotl Hydra

    Python Can anyone help me with this?

    I'd recommend doing more reading into it just to solidify your understanding. The way it knows what "You must save" is because this is known as a string. Strings are used when we simply want to display text to the user. You can often identify a string by looking at the text and seeing if it has...
  3. Axolotl Hydra

    Python Can anyone help me with this?

    No problem at all! Be sure to mark it as solved! I'd really appreciate it! ;)
  4. Axolotl Hydra

    Python Can anyone help me with this?

    Section 1: For the math section trinket seems to output exactly what we're looking for mathematically, remember if we're following the rules of BODMAS (Brackets of division, multiplication, addition and subtraction) we know that anything in brackets should be calculated first, followed by...
  5. Axolotl Hydra

    Python Can anyone help me with this?

    As mentioned above, the result should and always will be 22, so, strangely, your output would be 17. My biggest thought is that you might be running the incorrect Python file with a formula that would result in 17. So just double-check that you are running the correct file. Also, just as a...
  6. Axolotl Hydra

    JavaScript Transfer of control problem

    Glad I could help! Don't forget to mark the thread as solved when you get the time ;)
  7. Axolotl Hydra

    Python I make a global variable and then it says it isn't defined, wtf? (Python / Pygame)

    Without a doubt, Python has never been a language I've been fond of, specifically when it comes to how it tries to be unique. Whenever I teach people about Python and how to use it, I'll always slide in the joke that "This is completely different to other languages because Python wants to be...
  8. Axolotl Hydra

    Python I make a global variable and then it says it isn't defined, wtf? (Python / Pygame)

    If you're getting the missing positional arguments error, it means that you've also changed the actual ball_animation() function to now accept two parameters. This error is a good indicator that you're taking steps towards removing your use of globals (woop woop!) You just need to remember that...
  9. Axolotl Hydra

    JavaScript How can I hide the hand cursor when hovering a link?

    So this will cause things to be a little bit more confusing as we need to know what the elements' class name/id is so that we can manually manipulate it using CSS. Alternatively, if they by default use <a> tags then we can simply do this. a:hover { cursor: none; }
  10. Axolotl Hydra

    JavaScript How can I hide the hand cursor when hovering a link?

    I'm going to shoot blind here, but I'm going to assume that the below is your CSS for the button/link. #myCustomCursor.myCursorHoverState { cursor: none; width: 90px; height: 90px; background: pink; } All we need to do here is add another section but for our hover state...
  11. Axolotl Hydra

    JavaScript Transfer of control problem

    Hey @WTB32141 So overall, you've done some outstanding work on this project and have a lot of solid things going for it; I think your most considerable confusion is coming in when you think of how the code works. Logically as humans, we think, "okay, if the page changes, the JS code will stop...
  12. Axolotl Hydra

    HTML & CSS HTML&CSS FOR BEGINNERS

    Heya, So as cbreemer mentioned above, it's not a great idea to use YouTube tutorials for learning, especially programming. One thing that I always recommend to new developers is to avoid these as they will often get stuck into something known as "tutorial hell", where you're able to create...
  13. Axolotl Hydra

    JavaScript How can I hide the hand cursor when hovering a link?

    Heya man, You haven't entirely specified that this needs to be done using only Javascript, so we can do this quite easily by just using our CSS. To achieve the goal, you are looking to get by specifying a specific element/class/id that you want to apply this effect to. In this case, I'm just...
Back
Top Bottom