Re: lingo-l Copypixels from one alpha-ed image to another

2002-12-19 Thread James Newton
Kurt Griffin [EMAIL PROTECTED] wrote:
 I'm copying a dupe of the image of a text member into a dupe of the
 image of a png member. Given the fact that both carry alpha images, the
 result is not surprising - the copypixels op pastes the text in, but
 also cuts a rect the size of the text image out of the background image
 (as in, the alpha is getting copied to, as well as the image).

Hi Kurt,

Try this:

on copyText(anAlphaImage, aTextMember, anOffset) -
  -- INPUT: anAlphaImage should be a 32-bit image object
  --aTextMember should be a text member
  --anOffset may be a point
  -- ACTION: Copies the text of aTextMember onto anAlphaImage.  The
  -- alpha channel is made opaque under the text.
  
  
  tTextImage = aTextMember.image
  tTextRect  = aTextMember.rect
  
  -- Use anOffset to position the text image as required
  if ilk(anOffset, #point) then
tTargetRect = tTextRect.offset(anOffset.locH, anOffset.locV)
  else
tTargetRect = tTextRect
  end if
  
  -- Take a copy of the alpha channel before any changes are made
  tAlpha = anAlphaImage.extractAlpha()
  
  -- Copy the text into the rgb channel of the target image, with
  -- anti-aliasing.  This will affect the alpha channel.
  anAlphaImage.useAlpha = FALSE
  anAlphaImage.copyPixels(tTextImage, tTargetRect, tTextRect)
  
  -- Copy a black image of the text into the alpha channel.  This
  -- overcomes a couple of quirks:
  -- * copying the text image itself into the image's alpha channel
  --   will lead to semi-transparent areas where the text is a color
  --   other than black
  -- * copying the text alpha directly into the image alpha using
  --   #darkest ink leads to banding
  
  tBlack = image(tTextRect.width, tTextRect.height, 32, 8)
  tBlack.fill(tTextRect, rgb(0, 0, 0))
  tBlack.setAlpha(tTextImage.extractAlpha())
  
  -- Copy the text alpha data into the image's original alpha channel
  tAlpha.copyPixels(tBlack, tTargetRect, tTextRect)
  
  -- Set the alpha channel of the image to the composite alpha image
  anAlphaImage.setAlpha(tAlpha)
  anAlphaImage.useAlpha = TRUE
end copyText


Cheers,

James

[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 programming Lingo.  Thanks!]



Re: lingo-l MX opinion!!

2002-12-19 Thread Fraser Campbell
I don't think everyone agreed - has it been pulled?

http://www.macromedia.com/software/director/special/trial/

Fraser


[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 programming Lingo.  Thanks!]



Re: lingo-l MX opinion!!

2002-12-19 Thread Robert Tweed
- Original Message -
From: Fraser Campbell [EMAIL PROTECTED]

 I don't think everyone agreed - has it been pulled?

 http://www.macromedia.com/software/director/special/trial/

Yes, it has been pulled. Apparently there were too many bugs in the trial
version that was released. Hopefully they'll get a new version up soon. The
full version does not have the bugs that were in the trial version (I'm sure
it has it's own bugs though ;).

- Robert

[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 programming Lingo.  Thanks!]



Re: lingo-l MX opinion!!

2002-12-19 Thread Daniel Plaenitz
At 13:02 19.12.2002 +, you wrote:


Yes, it has been pulled. Apparently there were too many bugs in the trial
version that was released. Hopefully they'll get a new version up soon. The
full version does not have the bugs that were in the trial version (I'm sure
it has it's own bugs though ;).


This astonishes me. Did you compare the full version and the trial?
I would rather have expected that the differences between the trial version 
and the full mainly relate to testing the time bomb on start-up.

Daniel Plaenitz

[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 programming Lingo.  Thanks!]


Re: lingo-l MX opinion!!

2002-12-19 Thread Mamão - Toolshed


weird, it was availiable yesterday

anyone wants me to upload it?? ;)



--
Very good colapsible menus

I liked very much the user interface improvements - the screen usage 
reduced a lot.

I tried the flash integration, seems to be very nice (not enought time to 
test it all)

The object inspector is VERY good, the new debugger lets you see all the 
variables in a categorized way, local, global and properties

The sad part is that there is NO update on the 3D engine, that in my 
opinion, needs 'little' rework:
 - Zsorting on transparent polygons needs a fix (core engine rework)
 - antialiasing improvement
- progressive antialiasing is something that could be implemented, 
like viewpoint (when you stop moving, it starts to antialias)
- switching antialiasing on/off can be slow sometimes, it takes a few 
frames before it is turned off


Luiz

[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 programming Lingo.  Thanks!]


RE: lingo-l MX opinion!!

2002-12-19 Thread Peter Witham
Hi everyone,

   Well I got my Director MX upgrade and I look forward to giving it a
good test, I have only really had a chance to load it and poke around
but upon first impression there are lots of little enhancements I like.
Have to say though that I was really looking forward to the new
interface, but upon a quick try I am a little confused and frustrated
that you can only dock certain panels and others have to be by them
selves, it does not really give that much more screen space than the old
version. In many ways you have less since the properties panel for
example has to run all the way down the right side of the screen unless
you undock it, which is fine on a large desktop but on my laptop at
1024x768 it chews through deskspace.

   I'll be trying to make it more like the old interface layout I think
(probably because I'm used to it), however I hope to have my 2nd monitor
very soon and then it's back to having all the panels on a separate
screen.ahh, how did I every live with just one screen.

Regards to all, and thanks Macromedia for a great Christmas prezzie!

Peter Witham
Internet and Multimedia Solutions
http://www.evolutiondata.com
icq: 4436851
MSN: [EMAIL PROTECTED]
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of Mayuresh
Sent: Wednesday, December 18, 2002 11:51 PM
To: [EMAIL PROTECTED]
Subject: lingo-l MX opinion!!

Hi List

Just downloaded the trial and trying it out, and I like it already.
I think the debugger and object inspectors are great.
_
Regards,
Mayuresh

[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 programming Lingo.  Thanks!]



[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 programming Lingo.  Thanks!]



Re: lingo-l MX opinion!!

2002-12-19 Thread Robert Tweed
- Original Message -
From: Daniel Plaenitz [EMAIL PROTECTED]

 Yes, it has been pulled. Apparently there were too many bugs in the trial
 version that was released. Hopefully they'll get a new version up soon.
The
 full version does not have the bugs that were in the trial version (I'm
sure
 it has it's own bugs though ;).

 This astonishes me. Did you compare the full version and the trial?
 I would rather have expected that the differences between the trial
version
 and the full mainly relate to testing the time bomb on start-up.

Not personally, I'm relaying information from another group. Seemingly a
number of bugs have been reported in the trial version that are not present
in the full version. That's all I know, except that it's definitely been
taken down, despite being available yesterday (I got my copy).

Presumably what has happened is that the trial has been built from an older
release-candidate beta version instead of the final release version. I'm
just guessing at this, but I can't think of another explanation (unless the
time-bomb code actually interferes with the main code in some way, which
seems unlikely).

- Robert

[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 programming Lingo.  Thanks!]



lingo-l property's in property lists

2002-12-19 Thread Mark van den Elzen
Hello I'm new to this list, my question might had an answer before but I
need help rather quickly.
I want to extract info from a property list using a property. I know
this sounds confusing so I will use an example: 
 
 
property pMyProperty, pMyList 
 
on new me 
pMyProperty = thisOne 
pMyList = [#notTheOne: [1,1,1], #thisOne: [2,2,2], #notThisOne:
[3,3,3]] 
end 
 
on myHandler me 
 put pMyList.pMyProperty --- this is my problem, it searches for a
string called pMyProperty instead of for my property thisOne 
end 
 
 
I hope I was clear enough, any help would be appreciated! 
Mark 
 
[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 programming Lingo.  Thanks!]



Re: lingo-l MX opinion!!

2002-12-19 Thread Phil Gross
If you really want a setup like the old version of Director, try Window  Panel Sets  
Director 8.

Panel Sets are one of the new UI improvements, if you have a grouping of windows that 
you like for a particular project, or for doing certain things like debugging, you can 
save the setup and switch between your saved panel sets.

Phil

Peter Witham wrote:

 Hi everyone,

  snip

I'll be trying to make it more like the old interface layout I think
 (probably because I'm used to it), however I hope to have my 2nd monitor
 very soon and then it's back to having all the panels on a separate
 screen.ahh, how did I every live with just one screen.

 Regards to all, and thanks Macromedia for a great Christmas prezzie!

 Peter Witham
 Internet and Multimedia Solutions
 http://www.evolutiondata.com
 icq: 4436851
 MSN: [EMAIL PROTECTED]

[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 programming Lingo.  Thanks!]



RE: lingo-l property's in property lists

2002-12-19 Thread Eric Frericks
I think this will work: assign pMyProperty a symbol instead of a string

property pMyProperty, pMyList 
 
on new me 
pMyProperty = #thisOne --assign pMyProperty a symbol instead of a string
pMyList = [#notTheOne: [1,1,1], #thisOne: [2,2,2], #notThisOne:
[3,3,3]] 
end 
 
on myHandler me 
 put pMyList.pMyProperty --- this is my problem, it searches for a
string called pMyProperty instead of for my property thisOne 
end 
 

-Original Message-
From: Mark van den Elzen [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 19, 2002 9:18 AM
To: [EMAIL PROTECTED]
Subject: lingo-l property's in property lists


Hello I'm new to this list, my question might had an answer before but I
need help rather quickly.
I want to extract info from a property list using a property. I know
this sounds confusing so I will use an example: 
 
 
property pMyProperty, pMyList 
 
on new me 
pMyProperty = thisOne 
pMyList = [#notTheOne: [1,1,1], #thisOne: [2,2,2], #notThisOne:
[3,3,3]] 
end 
 
on myHandler me 
 put pMyList.pMyProperty --- this is my problem, it searches for a
string called pMyProperty instead of for my property thisOne 
end 
 
 
I hope I was clear enough, any help would be appreciated! 
Mark 
 
[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 programming Lingo.  Thanks!]
[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 programming Lingo.  Thanks!]



Re: lingo-l property's in property lists

2002-12-19 Thread Kerry Thompson


property pMyProperty, pMyList

on new me
pMyProperty = thisOne
pMyList = [#notTheOne: [1,1,1], #thisOne: [2,2,2], #notThisOne:
[3,3,3]]
end

on myHandler me
 put pMyList.pMyProperty --- this is my problem, it searches for a
string called pMyProperty instead of for my property thisOne
end


Try this:
put pMyList.getProp(pMyProperty)

That works if pMyProperty is a string or a symbol.

Cordially,

Kerry Thompson

[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 programming Lingo.  Thanks!]



Re: lingo-l 16 channel mixer recording and playback

2002-12-19 Thread Charlie Fiskeaux II
The problem with not using repeat loops is that it ties me to the frame
speed, which at the moment is only 15 fps.  I really want the entire
recording and playback to be independent from frame events.  Also, I don't
think Joe Schmoe will mousedown without moving the slider very often, so
that's not a very big consideration.  The biggest consideration is getting
accurate data at intervals small enough so that on playback the movement
appears smooth, without maxing out the memory  processing power of the
computer.

Charlie Fiskeaux II
Media Designer
The Creative Group
www.cre8tivegroup.com
859/858-9054x29


- Original Message -
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, December 18, 2002 3:35 PM
Subject: Re: lingo-l 16 channel mixer recording and playback


I wouldn't do repeat loops when recording either, if you don't mind a
constructive criticsm. If only I could spell that.

Rather, I'd have a property like 'newValue' that would be void when the
behavior is inited.

Then on mousedown - well, I'm not sure what you're using to get your
value, so let's assume it's the mouseH for now - and there's a property
called 'recording' (I'm more the 'pRecording' type) that becomes true when
mousedown, false when mouse up

So

on enterframe me
   if recording then
if newValuethe mouseH then
  newValue = the mouseH
-- add your edit info to your edl
end if
   end if
end

that way no repeat loops, and you're only adding edit info as it's being
changed, rather than Joe Schmoe mousing down on something and not moving
it. You wouldn't want to record that.

[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 programming Lingo.  Thanks!]

[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 programming Lingo.  Thanks!]



RE: lingo-l property's in property lists

2002-12-19 Thread Mark van den Elzen
Thanks a lot, well worth looking into. Been working to hard I think, I'm
overlooking obvious things. Well almost Christmas :D 


-

I think this will work: assign pMyProperty a symbol instead of a string

property pMyProperty, pMyList 
 
on new me 
pMyProperty = #thisOne --assign pMyProperty a symbol instead of a
string
pMyList = [#notTheOne: [1,1,1], #thisOne: [2,2,2], #notThisOne:
[3,3,3]] 
end 
 
on myHandler me 
 put pMyList.pMyProperty --- this is my problem, it searches for a
string called pMyProperty instead of for my property thisOne 
end 
 
ng with programming Lingo.  Thanks!]
[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 programming Lingo.  Thanks!]



Re: lingo-l property's in property lists

2002-12-19 Thread Florian Bogeschdorfer
Am 19.12.2002 16:18 Uhr schrieb Mark van den Elzen unter
[EMAIL PROTECTED]:

 Hello I'm new to this list, my question might had an answer before but I
 need help rather quickly.
 I want to extract info from a property list using a property. I know
 this sounds confusing so I will use an example:
 
 
 property pMyProperty, pMyList
 
 on new me 
   pMyProperty = thisOne
   pMyList = [#notTheOne: [1,1,1], #thisOne: [2,2,2], #notThisOne:
 [3,3,3]] 
 end 
 
 on myHandler me 
put pMyList.pMyProperty --- this is my problem, it searches for a
 string called pMyProperty instead of for my property thisOne
 end 
Of course.

Use put pMyList[pMyProperty]

Florian

 
 
 I hope I was clear enough, any help would be appreciated!
 Mark 
 
 [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 programming Lingo.  Thanks!]

[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 programming Lingo.  Thanks!]



Re: lingo-l property's in property lists

2002-12-19 Thread Tab Julius

You can just do:

put getAt(pMyList, pMyProperty)
-- [2, 2, 2]


Be careful mixing strings and symbols - it doesn't work with special 
characters, including spaces.

If they're all symbols, use symbols (it'll be faster anyway).

If they're all strings, use strings.  Strings can be properties too, as in:

  pMyList =[not the one:[1,1,1], this one:[2, 2, 2], I love 
Lingo:[3,3,3]]

- Tab


At 10:18 AM 12/19/02, Mark van den Elzen wrote:
Hello I'm new to this list, my question might had an answer before but I
need help rather quickly.
I want to extract info from a property list using a property. I know
this sounds confusing so I will use an example:


property pMyProperty, pMyList

on new me
pMyProperty = thisOne
pMyList = [#notTheOne: [1,1,1], #thisOne: [2,2,2], #notThisOne:
[3,3,3]]
end

on myHandler me
 put pMyList.pMyProperty --- this is my problem, it searches for a
string called pMyProperty instead of for my property thisOne
end


I hope I was clear enough, any help would be appreciated!
Mark


[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 programming Lingo.  Thanks!]



Re: lingo-l property's in property lists

2002-12-19 Thread Fraser Campbell
even:

put pMyList[pMyProperty] 

will work with a symbol or a string

hth

Fraser

Try this:
put pMyList.getProp(pMyProperty)

That works if pMyProperty is a string or a symbol.

Cordially,

Kerry Thompson

[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 programming Lingo.  Thanks!]


[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 programming Lingo.  Thanks!]



Re: lingo-l MX opinion!!

2002-12-19 Thread Phil Gross
As long as you don't use any of the new stuff from DMX, like the speech assets, you 
should be able to open a DMX file in D8.5. /Warning I haven't tried this yet, but 
was told some time ago that it should be OK.

Phil

Peter Witham wrote:

 Hi Phil,

Thanks for the tip, I just tried it and it is great! I always thought
 the idea of being able to save your screen layouts was a good one and am
 glad to see it appearing in Director. The more I look around in the
 program the more I find, sometimes it is those small little tweaks that
 make you smile more than the major enhancements (Note to Macromedia,
 that don't mean you have to stop putting major enhancements in the
 program lol). I am excited to see what the new integration between lingo
 and actionscript is like, the more I can do in Director the better, it
 always was a pain having to write code in two different programs. I
 guess the problem now is do I continue my current projects in 8.5.1 or
 switch to MX, does anyone know if there is any problem with running them
 both on the same machine?

I don't know how well received the idea of shipping Flash
 Communication Server instead of Fireworks will be with people, but I'm
 happy since I got Fireworks MX with my copy of Director 8.5, just my two
 cents on that one.

And as a side note, man is that new loading screen moody :P

 Regards to all,
 Peter Witham
 Internet and Multimedia Solutions
 http://www.evolutiondata.com
 icq: 4436851
 MSN: [EMAIL PROTECTED]


[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 programming Lingo.  Thanks!]



RE: lingo-l Happy Holidays and important Lingo-L reminder!

2002-12-19 Thread Peter Witham
Thank you and a very happy holiday to you and everyone else. And
remember to enjoy the time with whom ever you spend it.

Best wishes,
Peter Witham
Internet and Multimedia Solutions
http://www.evolutiondata.com
icq: 4436851
MSN: [EMAIL PROTECTED]

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of Tab Julius
Sent: Thursday, December 19, 2002 11:53 AM
To: [EMAIL PROTECTED]
Subject: lingo-l Happy Holidays and important Lingo-L reminder!
Importance: High

snip

First, I want to wish everyone a happy holiday, no matter what you're 
celebrating (just do it safely).

PLEASE, as many of you are going on vacation - do NOT use an
autoresponder 
for your mail, OR if you do, please unsubscribe from Lingo-L until you
get 
back.

Tab Julius



[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 programming Lingo.  Thanks!]



RE: lingo-l MX opinion!!

2002-12-19 Thread Watson, Christopher
I love the re-tooled Debugger. Just being able to expand and collapse my
lists is terrific. I like to orient the Debugger pane at the bottom of the
Script window. That way, when the Script window switches over to debugging
at the breakpoint, I don't lose my place. The script doesn't shift, and I'm
right where I want to be. But, like the release notes state, the Debugger
font is downright puny and nigh-on unreadable at 1600x1200. Is there any way
to change the font for the Debugger?!

The split-pane Message window is fantastic, too. I like seeing the results
of calls I make from the Message window without having my output obliterate
my input. It's just a little thing that makes a big difference.

I'm quickly getting used to panel grouping, too. Being able to save those
arrangements, and call them back in, is wonderful.

Docking doesn't do much for me. I like to maximize my script windows as much
as possible, so I leave my essential panels undocked so as to have as much
client window space as possible.


Christopher Watson
Sr. Software Engineer
Interactive Web Media
Lightspan Acheive Now Online
Lightspan, Inc.
Tel 858.824.8457
Fax 858.824.8001



-Original Message-
From: Mayuresh [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 18, 2002 9:51 PM
To: [EMAIL PROTECTED]
Subject: lingo-l MX opinion!!


Hi List

Just downloaded the trial and trying it out, and I like it already.
I think the debugger and object inspectors are great.
_
Regards,
Mayuresh

[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 programming Lingo.  Thanks!]
[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 programming Lingo.  Thanks!]



lingo-l Happy Holidays and important Lingo-L reminder!

2002-12-19 Thread Tab Julius

First, I want to wish everyone a happy holiday, no matter what you're 
celebrating (just do it safely).

PLEASE, as many of you are going on vacation - do NOT use an autoresponder 
for your mail, OR if you do, please unsubscribe from Lingo-L until you get 
back.

Autoresponders (hi-this-is-so-and-so-I'm-on-vacation-back-in-january) 
create problems when they respond to list messages, because it just makes 
new messages, which in turn make newer messages, and so forth in a loop, 
until it makes for 50 meg mailboxes for everyone.  Then everyone's mad, and 
it takes me all day to sort out the problems.

Second, if you return from vacation and don't find any new Lingo-L messages 
daily, then you might have been temporarily disabled from the list.  What 
happens is, if your mailbox gets full (via Lingo-L or anything), then all 
new messages get bounced back to the Lingo-L server.  Eventually the server 
will determine it can't send mail to you any more and will disable you.  We 
can't warn you about this, obviously, because we can't send mail to you in 
the first place.  So if it's eerily quiet upon your return, and there 
aren't any new postings, then write us and ask (write to 
[EMAIL PROTECTED]).  Generally there's some posting activity every day 
unless it's really a major holiday.

Stay warm and enjoy your holidays!  (it's been below zero degrees 
fahrenheit up here in sunny NH lately).

Tab Julius

__
   p e n w o r k s   c o r p o r a t i o n
software architecture + multimedia engineering
  www.penworks.com

[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 programming Lingo.  Thanks!]


Re: lingo-l Copypixels from one alpha-ed image to another

2002-12-19 Thread Kurt Griffin
Thanks, Pranav, James - saved me a bit of tail chasing, there ;)

-Kurt

[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 programming Lingo.  Thanks!]



lingo-l events from browser (urgent help)

2002-12-19 Thread Mamão - Toolshed
	I have a shockwave movie that NEEDS to receive a message from a browser in 
order to change its content (in this case the content is a 3D model)
the problem is that I wasn't thinking about 'the browser issue' that says 
that it EvalScript does not work on MANY new browsers..


What do I do??
can I put a property inside the embedded tag on the html content?
how can I read anything from the HTML (periodically)?

any help would be appreciated,

Luiz

[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 programming Lingo.  Thanks!]


Re: lingo-l MX opinion!!

2002-12-19 Thread Mayuresh
I've noticed two things since installing the trial
--My 8.5 preferences are all lost...WTF!!!
--Explorer crashes like every 2 hours...and only when MX is open. Never
before has my 2k gone down like that.

:-(
_
Regards,
Mayuresh

- Original Message -
From: Phil Gross [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, December 19, 2002 9:04 PM
Subject: Re: lingo-l MX opinion!!



 If you really want a setup like the old version of Director, try Window 
Panel Sets  Director 8.

 Panel Sets are one of the new UI improvements, if you have a grouping of
windows that you like for a particular project, or for doing certain things
like debugging, you can save the setup and switch between your saved panel
sets.

 Phil

 Peter Witham wrote:

  Hi everyone,
 
   snip
 
 I'll be trying to make it more like the old interface layout I think
  (probably because I'm used to it), however I hope to have my 2nd monitor
  very soon and then it's back to having all the panels on a separate
  screen.ahh, how did I every live with just one screen.
 
  Regards to all, and thanks Macromedia for a great Christmas prezzie!
 
  Peter Witham
  Internet and Multimedia Solutions
  http://www.evolutiondata.com
  icq: 4436851
  MSN: [EMAIL PROTECTED]

 [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 programming Lingo.  Thanks!]



[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 programming Lingo.  Thanks!]



lingo-l Re: MX opinion

2002-12-19 Thread John Waller
Hi,

I was wondering whether Director MX has its own 3D Property Inspector or
whether we still need to use a 3rd party 3DPI - and if we do need to use
a 3rd party 3DPI can we use our old version (used with D8.5) or do we
need to buy a new version.

Cheers,

John
[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 programming Lingo.  Thanks!]



Re: lingo-l MX opinion!!

2002-12-19 Thread Colin Kettenacker
Peter Witham [EMAIL PROTECTED] on 12/19/02 8:10 AM wrote:

 I don't know how well received the idea of shipping Flash
 Communication Server instead of Fireworks will be with people,

I was a quite bummed about this. I have come to *really* appreciate the
power of Fireworks. It took me a while, as I used Photoshop for years and
resisted using Fireworks because I was not as familiar with it. Now that I
have finally got into using Fireworks (I find that I use it almost
exclusively now and almost never use PS anymore), it is no longer bundled in
DMX. Very disappointing. To top it off *if* I buy a Mac version and PC
version of DMX (a big if, by the way) I will be saddled with two versions
of The Flash Communication Server, neither of which will work on the Mac. At
least with previous versions of Director bundles you got a Mac version and
PC version of Fireworks, MUS and an audio editing package, which you can
install on both your Mac and PC. Very handy.

To say that I was very disappointed in this bundled package is putting it
mildly.

 but I'm
 happy since I got Fireworks MX with my copy of Director 8.5, just my two
 cents on that one.

You lucky bastard! When I purchased D8.5 I got Flash 4. #*%$#^*

ck

[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 programming Lingo.  Thanks!]



Re: lingo-l MX opinion!!

2002-12-19 Thread Colin Kettenacker
Mark R. Jonkman [EMAIL PROTECTED] on 12/19/02 11:30 PM wrote:

 Hey Colin
 
 You lucky bastard! When I purchased D8.5 I got Flash 4. #*%$#^*
 
 ck
 
 I highly doubt that Macromedia would have shipped Flash 4 with Director
 8.5.. just don't see it happening. Guess the excitement over the new flash
 features has you spitting out Flash instead of Fireworks ;-) (Dang West
 coast Canucks can never get things right!!)
 
 Sincerely
 Mark R. Jonkman
 

Yeah, well you east coast expatriate Canucks really get my knickers in a
twist... mostly 'cause your always right!

I stand corrected. I did indeed mean Fireworks 4.

Thanks Mark:)

ck 

[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 programming Lingo.  Thanks!]