AW: lingo-l create a mask of an image

2003-01-21 Thread Michael von Aichberger
'Massage' the 24-bit image first, thinking out loud: Make another image object the same size that is some appropriate shade of grey Copy the second image onto the first using an appropriate ink (probably blend, lighten or darken) Copy the resulting image into a 1-bit image Hi Carl, thanks

Re: AW: lingo-l create a mask of an image

2003-01-21 Thread Cole Tierney
At 2:49 PM +0100 1/21/03, Michael von Aichberger wrote: 'Massage' the 24-bit image first, thinking out loud: Make another image object the same size that is some appropriate shade of grey Copy the second image onto the first using an appropriate ink (probably blend, lighten or darken)

AW: AW: lingo-l create a mask of an image

2003-01-21 Thread Michael von Aichberger
If you could preprocess the images no, I have to create a mask of an image that I create from scratch with Imaging Lingo you could probably use set/getpixel to tickle each pixel set/getpixel would certainly work, but it is far too slow I still have hope that it might work with copyPixels. In

Re: lingo-l associating my application with a filetype

2003-01-21 Thread Charlie Fiskeaux II
Thanks, that's the kind of stuff I was looking for. Charlie Fiskeaux II Media Designer The Creative Group www.cre8tivegroup.com 859/858-9054x29 - Original Message - From: Tim MacDonald [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, January 20, 2003 3:25 PM Subject: RE: lingo-l

Re: lingo-l install quicktime OSX

2003-01-21 Thread Howdy-Tzi
On Monday, January 20, 2003, at 07:05 PM, Luke wrote: Hi Warren, just wondering - would /users/username/library/application support/app name/ be the appropriate directory to save configuration information (etc)? Probably, that or ~/library/preferences/ . That's where the plists go. Current

Re: AW: lingo-l create a mask of an image

2003-01-21 Thread Carl West
Michael von Aichberger wrote: 'Massage' the 24-bit image first, thinking out loud: Make another image object the same size that is some appropriate shade of grey Copy the second image onto the first using an appropriate ink (probably blend, lighten or darken) Copy the resulting image

Re: lingo-l create a mask of an image

2003-01-21 Thread James Newton
Michael von Aichberger [EMAIL PROTECTED] wrote: Imagine a 24-bit color image. If I copyPixel this image into a 1-bit image, then I get kind of a mask, some pixels are white, others are black. It seems that all pixels above a threshold have been turned to white and below that threshold they

Re: AW: lingo-l create a mask of an image

2003-01-21 Thread Andreas Gaunitz
At 14.49 +0100 03-01-21, Michael von Aichberger wrote: 'Massage' the 24-bit image first, thinking out loud: Make another image object the same size that is some appropriate shade of grey Copy the second image onto the first using an appropriate ink (probably blend, lighten or darken) Copy

lingo-l center stage in projector

2003-01-21 Thread H.F. Duijndam
Hi all, I made an movie, and the PC has an resolution of 1280 x 1024. The movie is made with this resolution when using director. When i play the movie on an pc at 800 x 600 resolution it is not centered anymore. How do you solve this, the movie is for using at 800 x 600 resolution the

Re: lingo-l center stage in projector

2003-01-21 Thread Howdy-Tzi
On Monday, January 20, 2003, at 05:56 PM, H.F. Duijndam wrote: I made an movie, and the PC has an resolution of 1280 x 1024. The movie is made with this resolution when using director. Don't. Resize your stage to meet your playback requirements -- change the movie settings to 640 by 480, as

Re: AW: lingo-l create a mask of an image

2003-01-21 Thread Carl West
I had some fun with it at http://lumpymuffins.home.attbi.com/masking It's a little bit rude, it's on a tight repeat loop, but it listens at the end of a cycle. -- Carl West [EMAIL PROTECTED] http://eisen.home.attbi.com I have no superfluous leisure; my stay must be stolen out of other

AW: AW: lingo-l create a mask of an image

2003-01-21 Thread Michael von Aichberger
Thanks Carl, James, Andreas! Works great! Michael [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with

lingo-l Email/Mailto from Scrollable text.

2003-01-21 Thread marcus brooke
Email from Scrollable text. I'm trying to create hyperlinks from within a scrollable text box that link to the default email program. I've placed the script 'mailto:[EMAIL PROTECTED]' without the quotation marks on the Text Inspector. I've also placed an on hyperlinkClicked event handler as a

lingo-l bringing a window to the front

2003-01-21 Thread Charlie Fiskeaux II
I'm using Buddy API to make sure a window stays on top of other windows, and have tried this code, without success: gBUDAPI=xtra(BudAPI).new() lwinHandle=baWinHandle() baWindowToFront(lwinHandle) I've also tried baStageHandle() to get the handle of the current window, but to no avail. I've

Re: lingo-l Email/Mailto from Scrollable text.

2003-01-21 Thread Sean Wilson
I've placed the script 'mailto:[EMAIL PROTECTED]' without the quotation marks on the Text Inspector. I've also placed an on hyperlinkClicked event handler as a movie script: When I create a projector it works fine, but on the hyperlinks it opens an unfound html page, before going to the

Re: AW: lingo-l create a mask of an image

2003-01-21 Thread Andreas Gaunitz
http://lumpymuffins.home.attbi.com/masking It's a little bit rude, it's on a tight repeat loop, but it listens at the end of a cycle. -- Carl West [EMAIL PROTECTED] http://eisen.home.attbi.com Looks nice! It closed it's own window immediately and then froze explorer. My comp crashed. :-/

Re: lingo-l bringing a window to the front

2003-01-21 Thread Sean Wilson
I'm using Buddy API to make sure a window stays on top of other windows, and have tried this code, without success: gBUDAPI=xtra(BudAPI).new() lwinHandle=baWinHandle() baWindowToFront(lwinHandle) I've also tried baStageHandle() to get the handle of the current window, but to no avail. I've

RE: lingo-l bringing a window to the front

2003-01-21 Thread Brad Hile
Charlie Fiskeaux II wrote: I'm using Buddy API to make sure a window stays on top of other windows, and have tried this code, without success: gBUDAPI=xtra(BudAPI).new() lwinHandle=baWinHandle() baWindowToFront(lwinHandle) I had a similiar issue and had to use

RE: lingo-l Email/Mailto from Scrollable text.

2003-01-21 Thread Brad Hile
Marcus wrote: When I create a projector it works fine, but on the hyperlinks it opens an unfound html page, before going to the default email program. Any ideas what I'm doing wrong?? Do I need an extra, or can this be done from within Director? I'm working on D8, PC Windows 98. Please

lingo-l QT xtras in Shockwave

2003-01-21 Thread Alan Neilsen
Hi list I am building some video editing simulations in Shockwave for delivery over the Web. To have a look, go to http://cowan.ls.deakin.edu.au/Media_Arts_Sims/index.htm and select one of the simulation from the menu. These work fine when I access them from a network computer, but when I

lingo-l Create text field - I can't find info about it

2003-01-21 Thread universal2001
Hi, I'm trying to make a list of words with the equal translation next to those words. i.e. makan : to eat tidur: to sleep duduk : to sit etc... Because I have about 100 words, I guess it is not very effective if I have to type every single words... So, I was thinking about

Re: lingo-l QT xtras in Shockwave

2003-01-21 Thread Jeremy Aker
Hi Alan, The videos play from my computer (400MHz G4 Mac, Mac OS 10.2, QT 6.1, cable modem, Internet Explorer 5.2.2 and Safari beta 1.0 (v51)). No audio though. Either the video doesn't have any or you need to set the SoundDevice = QT3Mix. You did the right thing by setting the QuickTime

RE: lingo-l QT xtras in Shockwave

2003-01-21 Thread Brad Hile
Alan wrote: Can any body tell me what xtra this is referring to. I made sure each movie's xtras in Director included QuickTime Agent.x32 and QT3Asset.x32. But still got this error message. I then made sure Download if needed was selected for QT3Asste.x32, which seems to have stopped this