Xlphos 16 Veteran Poster

This is my fisrt time posting. But my computer was infected with frmwrk 32 and i need help getting rid of it.

How do you know you are infected with it?
Do you have an anti-virus installed? -It just I would expect the anti-virus to remove it for you.

Xlphos 16 Veteran Poster

It maybe worthwhile trying to dual boot your system. I would shrink the partition with vista on and make another partition and put xp on that one. This way you can use both, if you use easyBCD you can choose to go back to XP, Vista or stick with both.

I have a HP laptop and have Vista preinstalled. I got XP and put that on as well, I suggest contacting HP support on their website. They gave me some drivers that are compatable with my laptop. Use your serial number to find drivers for your product on the HP website, they sometimes have XP drivers there.

The above assumes your new computer is from HP, if it isn't contact whoever you bought it off for XP advice.

Xlphos 16 Veteran Poster

Thanks for the info, I am cautiously going ahead with the install.

Xlphos 16 Veteran Poster

Do you login to msn through internet explorer?

What firewall program if any, are you using?

Xlphos 16 Veteran Poster

Yes Both my laptop and desktop have AMD processors. Why doesn't SP3 like it?

Xlphos 16 Veteran Poster

Hi I have just reinstalled windows XP on my deskytop computer and I'am wondering if it is worthwhile putting XP SP3 on it.

I have put SP3 on my laptop and it is now really slow, I have done this twice on my laptop, is it SP3 or is it something else?

Does any one else have similar issues?

Xlphos 16 Veteran Poster

Hi just lettin you know you can try CS4 adobe photoshop for free(and legal) from adobe themselves, all you need to do is create an account I have done this myself for one of my assignments.

Just lettin you know for when you get the problem solved.

Does Ctrl+Alt+Del work? if it comes up try going to file -> run(new task) and type in explorer.exe and press enter.

Xlphos 16 Veteran Poster

Can you tell us what the error message was.

Xlphos 16 Veteran Poster

Here is the code I have so far:

from visual import*
import time

side= 1
thk= 0.02
dt= 0.005

'------------------------------Box------------------------------'
'------------------------Back-Of-Box---------------------------)'
L=box(pos=((0.5*side)-.25,side-0.125,-0.25),length=1,height=thk,width=thk)          
R=box(pos=((0.5*side)-.25,0.125,-0.25),length=1,height=thk,width=thk)             
T=box(pos=((0)-.25,0.5*side,-0.25),length=thk,height=0.75+thk,width=thk)         
F=box(pos=(side-.25,.5*side,-0.25),length=thk,height=0.75+thk,width=thk)

'------------------------Front-Of-Box---------------------------)'
Lz=box(pos=((.5*side)-.25,side-0.125,1.25),length=1,height=thk,width=thk)
Rz=box(pos=((.5*side)-.25,0.125,1.25),length=1,height=thk,width=thk)
Tz=box(pos=((0)-.25,.5*side,1.25),length=thk,height=0.75+thk,width=thk)
Fz=box(pos=(side-.25,.5*side,1.25),length=thk,height=0.75+thk,width=thk)

'------------------------Middle-Of-Box---------------------------)'
Ls=box(pos=(0-.25,side-0.125,.5*side),length=thk,height=thk,width=1.5+thk)
Rs=box(pos=(side-.25,0.125,.5*side),length=thk,height=thk,width=1.5+thk)
Ts=box(pos=(side-.25,side-0.125,.5*side),length=thk,height=thk,width=1.5+thk)
Fs=box(pos=(0-.25,0.125,.5*side),length=thk,height=thk,width=1.5+thk)
'------------------------------Box------------------------------'



'-------------------------Ball-loop-----------------------------'



ball=sphere(pos=(.5,.5,.5),radius= .025)
ball.velocity = vector(0.35,0.25,0.15)

while(1==1):
    rate(1000)
    ball.pos = ball.pos + ball.velocity*dt
    if ball.x+.05>Rs.x:
        ball.velocity.x= -ball.velocity.x
    if ball.x-.05<Ls.x:
        ball.velocity.x= -ball.velocity.x
    if ball.y+.05>Ts.y:
        ball.velocity.y= -ball.velocity.y
    if ball.y-.05<Fs.y:
        ball.velocity.y= -ball.velocity.y
    if ball.z+.05>Tz.z:
        ball.velocity.z= -ball.velocity.z
    if ball.z-.05<F.z:
        ball.velocity.z= -ball.velocity.z
    time.sleep(.01)

    


'--------------------------Drag-loop----------------------------'


nodes = []
for t in arange(1):
    Bat = box(pos=(0,0.6,0),length=0.2,height=0.125,width=0.02)
    Bat.color = Bat.icolor =(0.5,0.5,1)
    
    nodes.append(Bat)



drag = None
while 1:
  if scene.mouse.events:
    c = scene.mouse.getevent()
    if drag and (c.drop or c.click):   # drop the selected object
      dp = c.project(normal=scene.up)
      if dp: drag.pos = dp
      drag.color = drag.icolor
      drag = None
    elif c.pick and hasattr(c.pick,"icolor"):   # pick up the object
      drag = c.pick
      drag.color = color.white
  if drag:
   dp = scene.mouse.project(normal=scene.up)
   if dp: drag.pos = dp
Xlphos 16 Veteran Poster

I am trying to create a 3d blasterball like game. So far I have a box with a ball and bat inside. The ball bounces around in the box and you click and drag the bat were you want it inside the box. I cant get them running at the same time.

Xlphos 16 Veteran Poster

Hi I was wondering if anyone can help me. I am trying to create a game in visual python and have come to a complete stop. I need to be able to run many while loops at the same time, i have looked into threading but can't get my head around it. Any help would be appreciated, thank you.