PDA

View Full Version : AMS4 Training


CD_MANIAC
08-16-2002, 09:05 AM
Will you guys be making a training cd for this version?
I like version 3.0, easy to use for me but love version 4 and is more complex for me. A training cd would be a delight since I would like to maximize the use of version 4.
And maybe build a site where people can exchange tutorials and templates.
Please consider all the above, it would help many users of AMS 4! Thank you!!

Brett
08-16-2002, 09:12 AM
Scott over at Click-n-Learn (http://www.clicknlearn.com) is already working on it! Keep an eye out for it in the coming months. If you have any ideas of stuff you would like to see in there, email scott@clicknlearn.com.

- Brett

zeroseven
08-16-2002, 09:45 AM
Is it just me, or does it say they're making a Training CD for version 3.0 only?? /ubbthreads/images/icons/crazy.gif /ubbthreads/images/icons/shocked.gif

Brett
08-16-2002, 09:46 AM
They have already mande one for v3.0 (quite a while ago). They are DEVELOPING the v4.0 version now I believe.

- Brett

CD_MANIAC
08-16-2002, 09:51 AM
How about the other 2 ideas? Tut's and template xchange...

Ted
08-16-2002, 10:47 AM
We're hard at work on www.autoplayzone.com!

There's a ton of new things coming down the pipe in the next few months. The new site will feature things like a a place to share templates with other users and much more.

AGRO
08-16-2002, 11:21 AM
That is way cool!! I can not wait.

First we had to wait for version 4 and now we have to wait for autoplayzone.com /ubbthreads/images/icons/laugh.gif

njlech
08-16-2002, 11:33 AM
That aussie (Scott) sure has a knack for presenting training materials! He kinda sounds like the Crocodile Hunter /ubbthreads/images/icons/smile.gif

G'day mate!

CD_MANIAC
08-16-2002, 02:03 PM
You guys are really rocking? Software domination? I Like, keep it up!!

unknown user
08-16-2002, 03:59 PM
In the words of the great contemporary scholar, Beenie Man, "This version rules the nation."

ScottG
08-16-2002, 07:56 PM
G'day!
Here at Clicknlearn we are working hard to come up with some very creative training for you. There are lot new concepts and programming hurdles to learn to get the most out of AMS4. We have a number of projects for AMS4 that I am sure will unlock your creativity and even make you go Wwoooww I didnt know it could do that.
On another note:
What would you like us to include?
What are you finding are the main hurdles?
Do you have any Ideas for a great end project that we could use for training?
Email me at scottg@clicknlearn.com

Have a good one!

AGRO
08-16-2002, 08:19 PM
I know it is to early to tell and you are probably tired of hearing this, but any idea when the projected finished date is? And about how much $ ?

As far as what we would like on there.....
1. I think the integration with flash and the scripting to control the two with autoplay.
2. More XML tutorials: what we can do with it.
3. examples and examples!!!

Derek
08-16-2002, 08:44 PM
I second that!

I'd definately like to see something on how to include macros using the SAX tool

njlech
08-16-2002, 10:58 PM
I have a project coming up within the next few months in which I have to create a multimedia guided tour for our software. This will replace the one I did with Power Point and AMS3 over a year and half ago.

In this new application, I need to include text, screen shots, and video screen captures with audio. To me, the hardest part about a project like this to come up with a good format in which to arrange the different types of media on a page. Once the structure is set, the rest eventally falls into place.

If you could give some good examples of ways to organize and present different media types for multimedia training CDs, that would help me tremendously.

This may be more up MC's alley though! /ubbthreads/images/icons/smile.gif

joey
08-18-2002, 03:56 AM
yes yes! training, demo, example and extra stuff etc.
AMS4 makes me like an idiot! I even can't figure out how to make a button to play ONE mp3 file not to say a whole list! totally different from AMS3.....

Ok, whateva, I'm a moron, I need...blah blah

Derek
08-18-2002, 04:15 AM
Joey, make sure yu load the mp3 first (mp3.Load), dont just play it:

Copy/Paste this action in a LOAD button:
<font color=blue><IR_ACTIONS_LIST>
<Action name="File Browse">
<Type>54</Type>
<Function>0</Function>
<DTIndentLevel>0</DTIndentLevel>
<Enabled>1</Enabled>
<ErrorHandling>
<UserNotificationMode>2</UserNotificationMode>
<CustomErrorMessage/>
<OnErrorAction>0</OnErrorAction>
<JumpToLabel/>
</ErrorHandling>
<DefaultDirectory>%Desktop%</DefaultDirectory>
<DefaultFileName/>
<DefaultFileExtenstion>*.MP3</DefaultFileExtenstion>
<FileFilter>MP3's (*.MP3)|*.mp3|</FileFilter>
<AllowMultipleSelect>0</AllowMultipleSelect>
<FileMustExist>1</FileMustExist>
<Variable>%FullPath%</Variable>
<DialogTitle>File Open</DialogTitle>
<DialogType>0</DialogType>
</Action>
</IR_ACTIONS_LIST></font color=blue>

Copy/Paste this in a PLAY button:
<font color=blue><IR_ACTIONS_LIST>
<Action name="Load">
<Type>105</Type>
<Function>0</Function>
<DTIndentLevel>0</DTIndentLevel>
<Enabled>1</Enabled>
<ErrorHandling>
<UserNotificationMode>2</UserNotificationMode>
<CustomErrorMessage/>
<OnErrorAction>0</OnErrorAction>
<JumpToLabel/>
</ErrorHandling>
<MP3File>%FullPath%</MP3File>
<External>1</External>
</Action>
<Action name="Play">
<Type>106</Type>
<Function>0</Function>
<DTIndentLevel>0</DTIndentLevel>
<Enabled>1</Enabled>
<ErrorHandling>
<UserNotificationMode>2</UserNotificationMode>
<CustomErrorMessage/>
<OnErrorAction>0</OnErrorAction>
<JumpToLabel/>
</ErrorHandling>
</Action>
</IR_ACTIONS_LIST></font color=blue>

joey
08-18-2002, 08:00 PM
thank u, Derek!

I will try it.....just wish this could be done in more simple way, dont' wanna copy/paste so many weird command everytime...