OT: London based company wanted

2001-05-17 Thread Martin Sandberg
ally at: [EMAIL PROTECTED] Thank you, //Martin Sandberg ----- Martin Sandberg, multimediaproducent [EMAIL PROTECTED] Xtractor Interactive AB Brännkyrkagatan 70 118 23 STOCKHOLM Tel +46 8 668 18 20 Fax +46 8 668 18 26 Mob +46 70 672 22 10 www.xtracto

OT: Looking for Londonbased company

2001-05-15 Thread Martin Sandberg
done in Director/Lingo, quite a few ASP-projects as well and some flash. Please answer me personally at: [EMAIL PROTECTED] Thank you, //Martin Sandberg - Martin Sandberg, multimediaproducent [EMAIL PROTECTED] Xtractor Interactive AB Brännkyrkagatan 70 118

SV: Dynamic jigsaw puzzle builder, but a ink problem on some machines

2001-04-24 Thread Martin Sandberg
Hi John, No transparency here. WinME IE 5.5 Shockwave 3d prewiev Matrox G450 [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/LUJ/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]) Lingo-L is for

OT: Embedded font problems

2001-03-08 Thread Martin Sandberg
www.xtractor.se Martin Sandberg [EMAIL PROTECTED] Tel. 08-6681820 [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/LUJ/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]) Lingo

SV: movie crashes

2001-03-02 Thread Martin Sandberg
Hi Ellen, The problem is that the MIAW issues a forget command on itself. There is a technote on macromedia explaining this, it is number 14069. Basically, you need to let the stage issue the forget command. You can for example use a global that you set to true in your Miaw mouseup script. Then

SV: transparant miaw

2001-02-04 Thread Martin Sandberg
Hi Daniel, Here is a little script that you can attach to a sprite in your MIAW. Clicking and dragging on that sprite will let you move the MIAW around. I am not sure about the minmizing of a MIAW, but check out appMinimize in the Director help. It might be what you are looking for. //Martin --

SV: Make the background of a miaw partially transparent

2001-02-01 Thread Martin Sandberg
You can use a 1-bit graphic as windowType, maybee that is what you are looking for. something like: lWindow = window "Your window" set the filename of lWindow to "your miaw file" set the title of lWindow to "Course menu" set the windowType of lWindow to member "your window 1 bit graphic"

SV: the blend of a sprite?

2001-01-22 Thread Martin Sandberg
Hi Eel Attach this behaviour to the 100 pixel high sprite that will affect the other: on enterFrame me if the (mouseLoc).inside(Sprite(the currentSpriteNum).rect) then sprite("your blendsprite").blend = (the mouseV - Sprite(the currentSpriteNum).top) else sprite("your blendsprite").blend = 0 e

SV: script too long

2001-01-08 Thread Martin Sandberg
How about a handler like this: on visitedTimes nr, fieldNm if nr<1 then put "You have not visited here yet" into field fieldNm else if nr =1 then put "You have visited here once" into field fieldNm else if nr>=1 then put "You have visited here"&&a&&"times" into field fiel