Metroid: Other M Community Center Geeks' Lounge by PCBrown … battle between Mother Brain and the bounty-huntress, Samus. Those unfamiliar with the characters may not find …traditional Metroid formula. In previous games, the appeal of Samus was that of a lone heroine: silent, deadly, …effects add gloomy touches to the already dark atmosphere. Samus’ model looks great and she is animated beautifully. Honestly… Video: Team Ninja Unveil's Their Vision for Metroid: Other M Community Center Geeks' Lounge by PCBrown …subbed by Metroid Database), Sakamoto admits his interest in Samus' human side and strives to create a psychological …, we are witness to oddly-touching moments between Samus and the embattled Metroid larvae, but he wants …what you think of the new direction for the beloved Samus Aran. [youtube]8IxtUUF-iNo[/youtube][youtube]lHZFwdApitM[/youtube]… Class issue. Programming Software Development by Astudent …game. [ICODE]def question5(): if entry5.get() in ["Samus", "samus", "Metroid", "metroid", "…"]: answerlabel5['text']= "Its the amazing Metroid game heroine Samus, good call!" else: answerlabel5['text']= "Sigh.. try… Re: Class issue. Programming Software Development by sneekula … tk def question5(event): if entry1.get().lower() in ["samus", "metroid", "prime", "metroid prime…"]: label2['text'] = "Its the amazing Metroid game heroine Samus, good call!" else: label2['text'] = "Sigh.. try again… Re: Class issue. Programming Software Development by tyincali … 0 root = Tk() x = question(root, 'Which Character is this:', ['samus', 'metriod', 'prime'], "That's Correct!", "That's… How to open, save, and close an excel spread sheet from a visual basic 5 Programme Programming Software Development by smcd I want to upgrade a program written in Visual Basic 5 on a number of clients machines. I had no difficulty creating the distribution disk from instructions in the programmers manual, but I can't see any reference to creating an upgrade disk. I can write a dos batch file to copy the upgraded files but I need to open two excel sheets, which are part … Re: How to open, save, and close an excel spread sheet from a visual basic 5 Programme Programming Software Development by smcd Hi Vb5prgmr, Thanks for replying to my question. Was "So spawn the upgrade exe from the dos batch file..." your complete answer or do I have to do something to see a more detailed answer? If that was the complete answer I'm afraid I don't understand what it means. Kind Regards Séamus Collision Detection Programming Software Development by javanoob101 … = getImage (getDocumentBase (), "Credits.jpg"); sam = getImage (getDocumentBase (), "Samus.jpg"); mon1 = getImage (getDocumentBase (), "mon1.gif"); mon2… Re: How can i get i get the button.Enabled=true; work when... Programming Software Development by Samus … the solution wasn't even described. Take me, for example. :-) -Samus Re: Bullet Animation With Keys Programming Software Development by javanoob101 … = getImage (getDocumentBase (), "Blank.jpg"); sam = getImage (getDocumentBase (), "Samus.jpg"); mon1 = getImage (getDocumentBase (), "mon1.gif"); mon2… Re: Video: Team Ninja Unveil's Their Vision for Metroid: Other M Community Center Geeks' Lounge by popin why, why wii why must you keep making me regret not buying you >.< its not my fault that my friends suck and i have no one to play with you, the xbox made scene i swear i had no choice *cries in corner* man that looks awesome I know what I'm doing with my (next next next) lump of spare cash (dahm previous commitments). Re: Class issue. Programming Software Development by ZZucker I don't see a class in your code. Re: Class issue. Programming Software Development by Astudent Eh yah, sorry wasn't thinking straight when I made this post last night. What I meant was: The procedure question 5 is one of 5(obviously) that checks for a right answer. I was trying to make a procedure that would dynamically check based on what entry box I was entering into. How would I get that to work with the procedure, or is it even … Re: Class issue. Programming Software Development by Astudent While I look stupid with the wrong title for this thread(mod help with edit button please?), I still have the issue with procedure condensing. Anyone have any ideas? Re: How to open, save, and close an excel spread sheet from a visual basic 5 Programme Programming Software Development by vb5prgrmr So spawn the upgrade exe from the dos batch file... Good Luck Re: How to open, save, and close an excel spread sheet from a visual basic 5 Programme Programming Software Development by vb5prgrmr Okay, you want to upgrade a program and you know how to do it from a dos batch file but you don't want to use the dos batch file because it can only do so much... So then create an upgrade program that can do what you want with those excel workbooks/sheets. Now, however you do it, strait program, new install, dos batch + program... your goal is to … Re: Collision Detection Programming Software Development by Ezzaral You need to create a small class for your monsters that keeps track of their coordinates and bounding areas. A start would be something similar to this[CODE]class Monster { int x; int y; int width; int height; // of course, a Rectangle could be stored instead and it would save you the math // in contains() Image image; … Re: Collision Detection Programming Software Development by javanoob101 I'm sorry... I don't understand.... a list? don't forget I have no idea how to even code any of this "collision" I have to do. Re: Collision Detection Programming Software Development by JamesCherrill Are your monsters etc rectangles? If not, this is quite hard. Are they Java Shapes (instances of the Shape class) - if so there's a method in Shape that does that. For rectangles you can easily see if they touch/overlap by comparing their top/bottom coordinates to see if they overlap, then their left/right coordinates ditto. If they overlap both … Re: Collision Detection Programming Software Development by javanoob101 Unfortunatly, no.... The monters are bothe .jpg and .gif pictures... Re: Collision Detection Programming Software Development by JamesCherrill Yes, but the pictures are rectangles aren't they? If the monsters occupy just part of the picture, and you want to test for collisions between the actual monsters, rather than the whole pictures, then that's a pretty difficult, and slow, thing to do. Re: Collision Detection Programming Software Development by javanoob101 if by rectangle you mean the background too then no.. I removed the backgrounds to reduce the white rectangles on by space like background Re: Collision Detection Programming Software Development by javanoob101 Hi! Ezzaral, I don't understand what you mean by "bounding"? also will I have to make multiple "monster" classes for each monster? and for the "move" part? what do you mean by that (I suppose you mean the monster moving right?) if so, how will the collision detection stop drawing the "dead" monster? If … Re: Collision Detection Programming Software Development by bibiki hey javanoob101, you have one "monster" class. since you want more than one monster showing on your screen, you instantiate multiple instances of monster class. so, there is one single class, but multiple instances of it. now, when you do the instantiation, you store all instances on an array. and, inside your class, you could have some… Re: Collision Detection Programming Software Development by javanoob101 Oh! It suddenly makes more sense now! ok I see... so I make one "monster class" but multiples of it right (with different class names eg. class monster 1, class monster2 etc.?) then an array of "int's" for the x and y coords of each monster? then a boolean that starts out as a true stament then if my bullet x and y coords match … Re: Collision Detection Programming Software Development by Akill10 I don't think you fully understand objects. An object is an instance of a class. So, say you have a class named Monster, as stated above. You only ever have that 1 class, but you can create infinite number of objects(instances) of that class. [CODE]Monster mon1 = new Monster(); //mon1 is an object(instance) of the Monster class //you can create any… Re: Collision Detection Programming Software Development by javanoob101 So this would work? and also, I read before that I'll need an array-- what kind of array? 1D,2D? (My class only learned about 1D arrays). and still, what is the "bounding" supposed to mean? (is this the edges of the picture the "boundries"?) *I modified the following code from before to what I am understanding right now* … Re: Collision Detection Programming Software Development by JamesCherrill 1. call the class Monster. Java class names normally start with a capital and describe the kind of thing the class represents. Each instance of this class is a Monster. Please don't call it mon1 - that will confuse everybody. 2. yes, x,y,width,height are the position and size of each Monster. In your case, right now, the widths/heights may all be … Re: Collision Detection Programming Software Development by bibiki the best way to know if you are getting it right is to implement it, and along the way you'll see what you are doing wrong. what I tried to say is not exactly what you said last, but that does not mean your idea won't work. try it, see if it works, and if does not, come back and tell us what you did, and someone will help. Re: Collision Detection Programming Software Development by JamesCherrill I agree with bibiki, at least as far as learning the basics of the language and debugging are concerned. The danger is that a beginner will find some program architecture that he can get to work for one particular exercise, but which actually represents a bad practice/habit that will be hard to get out of. For example [QUOTE]so I make one "…