disable movie

2001-01-16 Thread Yo Gomi
Hello, Lingo-Ls How are you everyone? First, I would like to thank you all of you who helped me last couple of months. Today I handed in my lingo coursework at university and all my classmates were impressed with my work. (Well I hope they didn't fake it.) I couldn't have done this without Lingo-L

open a browser

2001-01-12 Thread Yo Gomi
Hello Lingo-Ls Its probably very simple question but I cannot work it out! I want to open a browser with the URL from Director but when I click the button, nothing happens. What did I do wrong? --Behaviour attached to a button on mouseUp goToNetPage ("http://www.adobe.com/products/photoshop/mai

history list

2001-01-11 Thread Yo Gomi
Hello Lingo-Ls, Could anyone help me? I have a scroll field, which shows the visited marker names. (value x, which is the frameLabel.) I want to be able to click the names in the field and go to that same name marker. I know how to do hyperlink when there are already words inside a field but that

script too long

2001-01-07 Thread Yo Gomi
Hello lingo friends Thank you so much for your help. I have yet another question. Could anyone tell me how to shorten this script below? How do I create a handler that can be used in a,b, and c? if a<1 then put "You have not visited here yet" into field "visitedBasic_concept" else if a =1 t

counting in list

2001-01-06 Thread Yo Gomi
Hello, Lingo-Ls Does anybody know how to count members in a list? For example: MyList=[#d,#a,#b,#c,#b,#a] I want the lingo to find out that within myList, there are 2 of #a, 2 of #b, 1 of #c and 1 of #d. If I do myList.count it only gives me the total of 6. Any suggestion greatly appreciated. Than

back button

2001-01-03 Thread Yo Gomi
Hello list, I'm trying to create a back button which takes back to the last visited marker. Does anyone know how to return the name of the marker as a value in a list? Hmm it's difficult to explain so here's my script so far... --this script is attached on a back button on mouseUp backButton end

finger

2000-12-22 Thread Yo Gomi
Hello list, I hope this mail is the last question for Year 2000! I have a button that changes the cursor to the finger pointer mouseWithin the sprite. But how on earth can I set it that will go back to the arrow cursor even after clicked?? I have tried this but it's not perfect...it works okay whe

timeout

2000-12-18 Thread Yo Gomi
Hello Lingo-Ls, Does anyone know how to create timeout even when the animation is being played? I have an animated company logo on the movie and I want it to go back to the splash screen if idle for 36 second (60*60). (field "timer" as shown below shows how many seconds left to 0). Because of the

MIAW

2000-12-16 Thread Yo Gomi
Hello Lingo-Ls, I have a help MIAW which I want it to forget when closed with "close box". (that cross one on the corner) Does anyone know how to do that? I have a button to close and forget within a help window and that works fine. But closing with "close box" the movie is still running somewhere

slider and change image

2000-12-15 Thread Yo Gomi
Hello Lingo-Ls, Can anyone help me? I have a slider that changes the images (from sprite 3 to 9). All the images are put outside the stage until called up. This is attached on the slider pointer global pointer on beginSprite me pointer=sprite(me.spriteNum) end on mouseDown changeImage rep

moving sprite

2000-12-01 Thread Yo Gomi
Hello Lingo-Ls Can anybody tell me how to loop tweening of particular sprites while the movie is played? I have a sprite with tween motion running between frame 1 to 15 and I want it to go back to 1 while the rest of sprites stay frame 15 (which has go the frame frameScript). This is what I tried

fileSize management

2000-11-29 Thread Yo Gomi
Hello Lingo-Ls I had a very spooky experience. I created a splash screen for the uni coursework. I was told the file size (not a projector but .dir file) was around 2.8 MB and should have fit in a floppy. So I deleted the background image (was 60k in Photoshop but it says 1.2 MB in director Proper

RE: Lingo-L Digest V1 #1717

2000-11-21 Thread Yo Gomi
Hello, Lingo-Ls Thank you for helping me out (especially Colin and Steven, thank you) every time I'm thrown into confusion. I'm in trouble again. Hopefully someone can sort me out here. I'm trying to create a field to show a history - how many times you have visited the markers. I scripted the fo

RE: Lingo-L Digest V1 #1715

2000-11-19 Thread Yo Gomi
Hello, guys I am trying to use a list but haven't really cracked it yet. Does anyone know how to create a sprite that click-changes the images within a list? I've done it like below but it only displays the 11th image of the list. First, movie script on startMovie global myList,i set myList=[#

RE: Lingo-L Digest V1 #1715

2000-11-19 Thread Yo Gomi
Hello, I am trying to use a list but haven't really cracked it yet. Does anyone know how to create a sprite that click-changes the images within a list? on clickImage global myList,i repeat with i=1 to 11 sprite(1).memberNum=myList[i] if i<12 then i=i+1 else if i=13 then

RE: Lingo-L Digest V1 #1713

2000-11-19 Thread Yo Gomi
Hello lingo-Ls I have a sprite that image randomly changes while the movie is played. Is there any way I can slow down the flicking image? I hope to show then half a second per image. Any help, gratefully appreciated. On exitFrame sprite(12).memberNum=random(4)+85 end exitFrame [To remove yo

fadeOut

2000-11-15 Thread Yo Gomi
Hi all, I created sound fadeout. But because (I think) after the fade out is executed the volume remains 0 so when I play the movie again the sound won't play. Please let me know how to solve this. on keyDown sound (1).fadeOut(3000) end keyDown [To remove yourself from this list, or to cha