Hi All,

I have a key listener set up as in this snippit:

——————-

var keyListener:Object = new Object();

this.keyListener.onKeyDown = function() {

trace(“DOWN -> Code: ” + Key.getCode() + “\tACSII: ” +
Key.getAscii() + “\tKey: ” + chr(Key.getAscii()));

trace(isPropertyEnumerable(Key)); // Output: true

};

Key.addListener(keyListener);

———————-

All works fine, but I’m wanting to perform certain actions
when the user inputs numbers and letters only. Is there an easy way
of doing this or do I have to create an array with ALL the number
and letter ASCII codes to compare against?

Kind regards

Kevin|||
create an array. it’s quick and easy if you work cleverly.

create an empty array and push your ascii keypress codes into
it. then test your project and keypress the numbers and letters in
the order you want them to be listed in your array.

when you’re finished trace your array (in order), copy the
output panel and in the authoring environment paste your ascii
array.

 

I have a datagrid, and I want to press the row or cell and
the application sends the cell or row info along to another
application. Does anyone know how to do this?

Thanks

George

 

Hello:

I have made a small movie with fade images taken from a
folder. The problem

what I have is that every time I change the image (jpg) from
folder, a flash

appear before fade image.

Can you help me to solve this, please?

thank you very much.

you can download the movie from here.

www.grinvetrading.com/ftp1/img.zip

|||
Excuse me, the Director file is:

www.grinvetrading.com/ftp1/pruebas.dir

And you can download the folder with three sample images.

“> www.grinvetrading.com/ftp1/img.zip

>

>

>

|||
Here’s a solution which works with only two sprites:
http://nonlinear.openspark.com/zips/pruebas.zip.
It uses a bitmap sprite with a Dissolve Transition behavior to
“remember” what image was shown before, and to fade out gradually.
There are some hard-coded properties that you may wish to
modify.|||
Thank you very much.

This work perfect.

Many mny thanks

“openspark” <webforumsuser@macromedia.com>
escribió en el mensaje

news:f5i5sp$bqh$1@forums.macromedia.com…

> Here’s a solution which works with only two sprites:

>
http://nonlinear.openspark.com/zips/pruebas.zip.
It uses a bitmap sprite

> with

> a Dissolve Transition behavior to “remember” what image
was shown before,

> and

> to fade out gradually. There are some hard-coded
properties that you may

> wish

> to modify.

>

|||
Hello OpenSpark:

I have seen your beautiful website is greatful.

You solved my problem in a while an I was trying during two
days .

I would like to learn to develop behaviors like this.

Do you teach courses for programmers?

Thanks again

“openspark” <webforumsuser@macromedia.com>
escribió en el mensaje

news:f5i5sp$bqh$1@forums.macromedia.com…

> Here’s a solution which works with only two sprites:

>
http://nonlinear.openspark.com/zips/pruebas.zip.
It uses a bitmap sprite

> with

> a Dissolve Transition behavior to “remember” what image
was shown before,

> and

> to fade out gradually. There are some hard-coded
properties that you may

> wish

> to modify.

>

|||
I do not currently run any courses for programmers, but
please feel free to ask questions on this forum and I will do my
best to reply.

Are there any particular subjects that you would like to see
a tutorial on?|||
Thank you very much.

Many many things. But by now I’m interested in working with
physic effects.

Do you know a good book in Lingo with this topic?

Thanks again.

“openspark” <webforumsuser@macromedia.com>
escribió en el mensaje

news:f5na8q$7lu$1@forums.macromedia.com…

>I do not currently run any courses for programmers, but
please feel free to

>ask

> questions on this forum and I will do my best to reply.

>

> Are there any particular subjects that you would like to
see a tutorial

> on?

>

|||
Check out this site for Animation Math in Lingo

http://www.jmckell.com/

hth

johnAq

 

At curveTo Function,there is an example how to create a
circle by ActionScript:

quote:



this.createEmptyMovieClip(“circle2_mc”, 2);

circle2_mc.lineStyle(0, 0×000000);

drawCircle(circle2_mc, 100, 100, 100);

function drawCircle(mc:MovieClip, x:Number, y:Number,
r:Number):Void {

mc.moveTo(x+r, y);

mc.curveTo(r+x, Math.tan(Math.PI/8)*r+y,
Math.sin(Math.PI/4)*r+x, Math.sin(Math.PI/4)*r+y);

mc.curveTo(Math.tan(Math.PI/8)*r+x, r+y, x, r+y);

mc.curveTo(-Math.tan(Math.PI/8)*r+x, r+y,
-Math.sin(Math.PI/4)*r+x, Math.sin(Math.PI/4)*r+y);

mc.curveTo(-r+x, Math.tan(Math.PI/8)*r+y, -r+x, y);

mc.curveTo(-r+x, -Math.tan(Math.PI/8)*r+y,
-Math.sin(Math.PI/4)*r+x, -Math.sin(Math.PI/4)*r+y);

mc.curveTo(-Math.tan(Math.PI/8)*r+x, -r+y, x, -r+y);

mc.curveTo(Math.tan(Math.PI/8)*r+x, -r+y,
Math.sin(Math.PI/4)*r+x, -Math.sin(Math.PI/4)*r+y);

mc.curveTo(r+x, -Math.tan(Math.PI/8)*r+y, r+x, y);

}


should be changed:

this.createEmptyMovieClip(“circle2_mc”, 2);

circle2_mc.lineStyle(0, 0×000000);

drawCircle(circle2_mc, 100, 100, 100);

function drawCircle(mc:MovieClip, x:Number, y:Number,
r:Number):Void {

mc.moveTo(x+r, y);

mc.curveTo(r+x, Math.tan(Math.PI/8)*r+y, Math.
cos(Math.PI/4)*r+x,
Math.sin(Math.PI/4)*r+y);

mc.curveTo(Math.tan(Math.PI/8)*r+x, r+y, x, r+y);

mc.curveTo(-Math.tan(Math.PI/8)*r+x, r+y, -Math.
cos(Math.PI/4)*r+x,
Math.sin(Math.PI/4)*r+y);

mc.curveTo(-r+x, Math.tan(Math.PI/8)*r+y, -r+x, y);

mc.curveTo(-r+x, -Math.tan(Math.PI/8)*r+y, -Math.
cos(Math.PI/4)*r+x,
-Math.sin(Math.PI/4)*r+y);

mc.curveTo(-Math.tan(Math.PI/8)*r+x, -r+y, x, -r+y);

mc.curveTo(Math.tan(Math.PI/8)*r+x, -r+y, Math.
cos(Math.PI/4)*r+x,
-Math.sin(Math.PI/4)*r+y);

mc.curveTo(r+x, -Math.tan(Math.PI/8)*r+y, r+x, y);

}

Related Photo:
http://www.mzwu.com/pic/20070618/001.gif

 

Hi! I’m using Captivate 2.

I noticed that I cannot edit video (NOT static screens)
captured during the recording. Let me clarify – when I capture
scrolling of the screen, I cannot edit video (i.e. delete sensitive
information from each slide in that video). I’m fine editing static
screens using MS Paint. Is there a way to efficiently edit video as
well? If yes, what software can I use (free or other)?

I also noticed that when editing using Snagit, when I save
and close Snagit, the screen that I edited does NOT show as edited
in Captivate (it works fine with Paint – it looks that Paint
is integrated with Captivate and Snagit is not). Is there a way
that I can integrate Snagit with Captivate, so when I edit screens
with Snagit it looks edited in Captivate (I guess, I can import
Snagit-edited screens, but this creates unnecessary step).

Many thanks!|||
Hi ShareO and welcome to our community

As far as I know, there is no “integration” between Captivate
and Paint or SnagIt. I regularly edit things in Captivate using
SnagIt and it seems to work fine for me. Perhaps it would help if
you could outline the exact process you are using?

As for the video editing, all I can say is “good luck”.
Captivate records as .AVI during the capture process, but once the
capture process is complete, the .AVI is converted to .SWF. There
is no way I’m aware of to capture the .AVI before it gets
converted. I’ve tried on many occasions. There is an ability to
insert other objects on a slide containing video. Perhaps you could
insert a highlight box or an image object to cover the sensitive
information at the time it appears. You would certainly need to
remove any transition, because a fade in or fade out would probably
reveal the sensitive information ever so briefly.

Cheers… Rick
|||
Thanks, Rick.

How do I make SnagIt to be my default editor in Captivate
(not MS Paint)? Do you import edited screen shots to
Captivate?|||
Hi again ShareO

How exactly are you editing? Here’s the deal. Captivate 2
introduced the ability to click objects in the new Library panel
and make edits. Normally, image and sound files. So I regularly
right-click images in the Library and edit them. When I
right-click, I see “Edit with…” on the context menu. Upon doing
this for the very first time, I believe Edit with… is the only
option, as you have never selected an editor. After you make that
first selection, it is then locked in as the default editor. But
you should still be able to select the “Edit with…” whenever you
need to.

Personally, I like to use multiple editors with images. I
might use SnagIt one moment and Microsoft Paint the next. Then
Photoshop possibly after that. So here’s a little trick you can
employ. Create Windows shortcuts that point to all the assorted
.EXE files of each editor. Copy the multiple shortcuts and place
copies in the folder where each of the .EXE files are found. This
allows you a super easy avenue to switch editors kind of “on the
fly”.

Here’s another issue to consider. If I have imported an image
into Captivate, then later wish to edit it. Be careful when
editing. Captivate does open the desired editor and loads up the
image. But when you click the Save button? Not only is the image
inside Captivate changed, but the original on your hard drive
changes too! Personally, I dislike that behavior, but you needed to
be aware of it.

Cheers… Rick
|||
Thanks!!!

 

If I were to purchase Flex Buider 2 now does it include Flex
Builder 3? When it comes out?|||
Flex Builder 2 won’t include Flex Builder 3. I think they’re
planning a final release of Flex Builder 3 towards the end of the
year.

I’m pretty sure they are also offering an upgrade rate from 2
to 3. AND, I believe you can use your serial number with FB3 beta
to make it last longer.

I have both 2 and 3 beta installed on my machine and they do
not conflict at all.|||
Thanks for the info.

So we don’t know what the upgrade price will be yet?

Did you install full version of eclipse for both 2 & 3 or
just the plugins?

Thanks

 

I recently got a new computer with Vista Ultimate. I
downloaded all the patches and installed the latest versions of
Firefox (2.0.0.4) & Flash Player (9.0.45.0). I have the
following add-ons loaded in Firefox: Firebug 1.05, Greasemonkey
0.7.20070607.0), Tab Mix Plus (0.3.6), Talkback (2.0.0.4), DOM
Inspector (1.8.1.4). This is the process that happens.

1) Connect to the computer in questoin using RDP

2) Launch Firefox and go to a site like Youtube or MySpace.
It works great. Everything plays that I click on.

3) Disconnect from RDP and reconnect.

4) The Flash plays never work again. They will typically
start a show for 2-10 seconds and then just “halt”. This is every
movie I view off of either YouTube or MySpace. Even if I close the
Myspace & YouTube tabs and open them in a new clean tab.

If I close Firefox and reopen it everything starts working
again. Again this appears to work until I disconnect from RDP
again.

What is going wrong here? What can I do to fix this or upload
data dumps so this can get fixed?

Feb 292012
 

Hola a todos:

¿Alguien sabe si se puede crear un autorun con un pps?

Muchas gracias

|||
“nain” <dgrafico@esteka.com> escribió en el
mensaje

news:f63c57$b1v$1@forums.macromedia.com…

> Hola a todos:

>

> ¿Alguien sabe si se puede crear un autorun con un
pps?

>

> Muchas gracias

http://www.desarrolloweb.com/faq/223.php

Saludos,



Sr Peabody

 

WE are having trouble installing the windows installer
version of Flex 3 builder. We tried several machines.

We keep getting this screen no matter what we click.

! Please select another location to extract the installer to:

This message comes with two buttons. Choose and Cancel.

If you select choose you can pick a location on your machine.
but selecting anything does nothing, just brings you back to the
original screen above. It does not display any location or any
location selected. The cancel does as it says. So how do I get past
this problem?

|||
This seems like an incomplete download. try downloading again

-Arul

“Krollar” <webforumsuser@macromedia.com> wrote in
message

news:f5ef5m$rpt$1@forums.macromedia.com…

> WE are having trouble installing the windows installer
version of Flex 3

> builder. We tried several machines.

> We keep getting this screen no matter what we click.

>

> ! Please select another location to extract the
installer to:

>

> This message comes with two buttons. Choose and Cancel.

> If you select choose you can pick a location on your
machine. but

> selecting

> anything does nothing, just brings you back to the
original screen above.

> It

> does not display any location or any location selected.
The cancel does

> as it

> says. So how do I get past this problem?

>

>

>

>

>

|||
On reading some other posting, I had read the same thing
regarding incomplete download. I forgot to mention that I had
alreqady done as you suggested and downloaded again. Two times,
different machines. All still giving me the same error. Will try
downloading the install one more time via another site we have that
contains less traffic. I don’t see how that could cause the
incomplete download but should help eliminate this as the
cause.|||
This problem was indeed caused by an incomplete download. The
problem I had was due to Checkpoint killing the last bit of the
download. After downloading the file outside of our firewalls the
file was fine. Mystery solved.

 

Although all the help books are loaded and i can view their
content, I am unable to use the search facility.

I type in a word, hit the search button but whatever content
is currently in the right hand panel stays there and doesn’t
refresh. Could anyone tell me what the problem is?

|||
it will load the new topics on the right, then you find what
you are looking for and click the topic, then it displays on the
right

© 2012 free icons download Suffusion theme by Sayontan Sinha

Featuring Recent Posts WordPress Widget development by YD