Jump to content
Hash, Inc. Forums

robcat2075

Hash Fellow
  • Posts

    27,704
  • Joined

  • Last visited

  • Days Won

    335

Everything posted by robcat2075

  1. It just occured to me that Filezilla may not be available on Mac, but I'm sure there is some ftp client for the Mac.
  2. Welcome to the forum. Q#1... is it a crash (program exits) or a freeze (program becomes unresponsive)? I don't have a Mac so I don't have a way to test an old A:M version on it. Wild idea... since you have a license for v18 you should also be able to install and run previous versions, back to v15. Install v17 and see if you have any more success with v17 NetRender. You can get the installer from the Hash ftp site To access the ftp you will need to get, install and use an ftp client. Filezilla is free. No username or password is needed for a download from the Hash ftp. After you have installed v17 on your mac, copy the master0.lic file from your v18 folder to the new v17 folder to transfer your license to that older version.
  3. For trouble with the Hash Store you will want to send a PM to @Jason Simonds Go to the envelope icon at the upper right of the forum ("Messages") and send a message explaining your problem to "Jason Simonds"
  4. I'm not sure I understand the problem. You're having trouble logging in to your account, but... here you are, logged in, making a post under your account.
  5. Lesson 18 While Loops Finally, we can make a program repeat steps! Project idea: John Purcell suggests a program that uses a while loop to do something a number of times. But that's lame, that's what For loops are for. How about... implement the "Price Is Right" guessing game, where the user enters a guess at a secret number, then the computer answers "High" or "Low" or "Correct". Repeat that while the user has not yet guessed the secret number. Lesson 19 Do While Loops Do While is ideal for situation where some condition isn't tested or step isn't done until you are in the loop and that step or test needs to be repeated until it meets some condition. How about a password checker? Just to be clever, make it ask for and check two passwords and require they both be correct.
  6. An experiment from Live Answer Time several weeks ago... Example PRJ: LetterTransform.zip Live Answer Time session:
  7. Lesson 16 Comparing Floats Turns out... floating point numbers are never quite what they seem. Program idea: write a program to test if a float variable set to 1.1 will be evaluated as equal to, greater than or less than 1.1 When that is known, add tests to the program to see how little needs to be added (or subtracted) to the explicit value to make the evaluation with the variable come out differently from before. Program idea: A bit of code like this will show that a floating point variable set to 1.1 will evaluate as greater than a literal 1.1 float myVariable; myVariable = 1.1; if (myVariable > 1.1) { cout>> "myVariable is greater than 1.1"<< endl; } Write a program to test how little the literal 1.1 needs to be increased by to change the above outcome. Lesson 17 C++ Conditions Conditions allow you combine multiple small decisions into one big decision. Program idea: Think of a job that has several qualifying factors. For example, an astronaut has to be in certain height and weight ranges Write a program that prompts the user to enter their values for the factors and then tells them if they get the job. If they don't qualify, tell them which category(s) they missed on. Extra credit if your program has a use for both && and || @Roger @Shelton @Rodney
  8. I can confirm the problem, which seems to have originated a few betas ago. I'll make a report. Thanks! Note to me: the last version this works correctly in was the one I downloaded on 10/31/2022
  9. v18 handled the missing images more elegantly, so I did this render in that. Yes, I think turning "Transparent AO" ON will get you the result you are looking for.
  10. I wasn't able to load the PRJ because it is calling for several image maps. Images are always external to the PRJ file. However... first... do you have Transparent AO turned ON? If you already had that ON, can you make a version that needs no images, or otherwise, attach the images here?
  11. How's it going, @MJL? Progress? Bring it to Live Answer Time on Saturday and we can look at it if you still have questions!
  12. They just found out their subscription expired.
  13. You don't want Animate Mode OFF. And you don't want that Red Border. It's a warning that Animate Mode is OFF. I never touched that. Leave that "not set" Animate Mode isn't about rendering. It's about keyframes you make before you render. Try my sample project and do what i do in the video starting at 21:04 MyronTitle001b.prj
  14. Very old Greek pottery in the late 7th and 6th centuries B.C.E practiced something called "black figure", where they painted imagery with black glaze or "slip" on the red clay. A couple centuries later they reversed that to do "red figure" where they used the black to cover the negative space around the image they were making. After seeing examples of this work at a museum I wanted to try to recreate some of that look, including the numerous fractures they tended to have after being buried in a dump for 2000+ years. Thom is a cylinder wrapped decal. The break lines are a combiner material.
  15. I like all of Rodney's solutions, especially using Groups on one model instead of making separate models. Rodney should visit the forum more often!
  16. You have the "Animate Mode" button turned OFF. That's stopping you from making new keyframes. Turn it ON. The red border on the view window warns you that it is off. It's at the far end of the interface. Either stretch your A:M window out or move your button panels to reach it.
  17. @Rodney on the popup "DataTips"... are you sure you're in full Visual Studio and not "Visual Studio Code" (as Roger had been a couple weeks ago and not getting popups)?
  18. Lesson 12 Bools and Chars This completes our set of classic Data types everyone should know. Idea for project: Declare a couple of Boolean variables. Set one equal to true and the other equal to false. Print out the values of both. Label your output. Declare a char variable and set it equal to a value. Print out both its character value and its integer value. Label your output. Declare a second char variable and prompt the user to give a value for it. Print out both versions of the char value. Label your output. Lesson 13 If "If" is our first "decision structure." We can start getting the computer to make choices. Idea for project: Prompt the user to guess something that is one of a set (e.g. month of the year) and use only "if" statements to tell him if he is correct, close to, or wrong with his guess.
  19. Myron, today at Live Answer Time I did a run-through of the effect you are asking about. The demonstration begins at 6:52 in the video... @MJL
  20. I reported that problem in v19 and have now added your post to the record https://reports.hash.com/view.php?id=6915 thanks!
  21. The easiest way is to make each letter a separate model, then key them in the Chor using their "Active" ON/OFF property. If you want to bring that to Live Answer Time today we could look at that.
  22. I think it's in the .MAC file. I don't know if it can be transplanted. If it's not in the .MAC it might be registry data.
×
×
  • Create New...