PDA

View Full Version : Creating multimedia DVD - 4 problems


Arash
10-18-2009, 06:36 AM
hello,
First of all i must say i can't use English well if there is some problems,i'm sorry for them.
I want to build two multimedia DVDs but in one subject.
I have 4 problems with it,I've already read some discussions about my issue but i couldn't exactly find how to resolve them,so i ask them here.If there is any answer to which can be use in action script in flash files that will be good too;if there was this solution please tell me whether i can use a flash object in an AMS project which contains that script code and run it.
I think i should build my project in Web/Email executable for more protection and privacy,i will say more about it in my problem 2.
My Problems:

1. This is my most important issue: This multimedia is an original autorun multimedia and because of many pictures and movies i must split them into two DVDs.I want when user click something that is not in DVD1(or 2) it ask user to change DVD but autorun screen don't go away and remains and when DVD 2(or 1) put into DVD-ROM it continues.How can i do this in AMS or in flash Action Script?

2. I have many pictures and movies that when i build DVDs i don't want anybody can access to them,I mean not in the autorun multimedia.I tried web/email executable and chose encrypt data segment.It won't open in winrar or other programs but it still copy videos and pictures in temp directory.I want complete protection.How can i have?

3. When you open exe file it will take too time if have many pictures and videos.I think this probably for my problem 2 and because exe file is copying files to temp directory.

4. I want to run my autorun multimedia full screen in any computer with any resolution.I tried kiosk mode but i want my background image have a unique size in any resolution.I think if i can understand which is user resolution and attempt to change it to my size and when program finished,screen resolution return to it's original size.

thanks for cooperating

IdeasVacuum
10-18-2009, 08:23 AM
1) Write a separate app that your main app stores on the PC and is run by the main app when the need to swap DVDs is detected. The User will click an OK button on the separate (tiny) app to confirm that the other DVD has been inserted - this would mean though that your main app is on both DVDs.

2) Basically, you can't protect image media any better than you already are. Your app is going to display them and they can be easily captured when it does so. It's just something we have to live with.

3) Try to have your app preload media before it needs to display it (before displaying the AMS Object that displays the media).

4) From the AMS help: "If you desire to have a project that makes use of the user's entire screen, no matter what their resolution, the easiest way is to design a separate project for each resolution. Also create one 'master' project that determines the user's resolution (System.GetDisplayInfo), and have it launch the appropriate sized application.

If both of these options are unacceptable, AutoPlay does include actions to resize and reposition objects on your page. Likewise, as of version 7, the application window and objects can be resizable, and whenever the window is resized the On Size project event is fired."

Arash
10-19-2009, 01:26 PM
1) Write a separate app that your main app stores on the PC and is run by the main app when the need to swap DVDs is detected. The User will click an OK button on the separate (tiny) app to confirm that the other DVD has been inserted - this would mean though that your main app is on both DVDs.

2) Basically, you can't protect image media any better than you already are. Your app is going to display them and they can be easily captured when it does so. It's just something we have to live with.

3) Try to have your app preload media before it needs to display it (before displaying the AMS Object that displays the media).

4) From the AMS help: "If you desire to have a project that makes use of the user's entire screen, no matter what their resolution, the easiest way is to design a separate project for each resolution. Also create one 'master' project that determines the user's resolution (System.GetDisplayInfo), and have it launch the appropriate sized application.

If both of these options are unacceptable, AutoPlay does include actions to resize and reposition objects on your page. Likewise, as of version 7, the application window and objects can be resizable, and whenever the window is resized the On Size project event is fired."

Thank you for your solutions but could you please tell me more about your first answer?i can't understand what should i dohttp://indigorose.com/forums/images/smilies/icon_redface.gif
about your second answer is it true!??!can't i have more protection?i only want my exe file don't copy sources in temp directory.
3rd answer you mean that progress bar that i can enable it when i build my project?or something that i don't know what is it!how can i have my preload media?
4th i already read it but the first help is very hard because i have a big project so if i want to make it for every resolution,it will take me much time.
Second help i exactly want to know this actions.I know it must have an action for detecting user resolution and change it.

jassing
10-19-2009, 07:09 PM
1. This is my most important issue: This multimedia is an original autorun multimedia and because of many pictures and movies i must split them into two DVDs.I want when user click something that is not in DVD1(or 2) it ask user to change DVD but autorun screen don't go away and remains and when DVD 2(or 1) put into DVD-ROM it continues.How can i do this in AMS or in flash Action Script?

use Dialog.Message() to tell the user to swap dvd's.
Once you detect the other cd is swapped, use File.Run() to launch the autorun.exe and exit the one you're currently in -- the result will be a momentary flash; but the app will pop back up.

2. I have many pictures and movies that when i build DVDs i don't want anybody can access to them,I mean not in the autorun multimedia.I tried web/email executable and chose encrypt data segment.It won't open in winrar or other programs but it still copy videos and pictures in temp directory.I want complete protection.How can i have?

Have a look at molebox (the cheap version works fine) or "the enigma protector" -- however, I find molebox much easier to use.

3. When you open exe file it will take too time if have many pictures and videos.I think this probably for my problem 2 and because exe file is copying files to temp directory.

What's your question?

4. I want to run my autorun multimedia full screen in any computer with any resolution.I tried kiosk mode but i want my background image have a unique size in any resolution.I think if i can understand which is user resolution and attempt to change it to my size and when program finished,screen resolution return to it's original size.

You can detect the screen's size & resize your image as needed.

thanks for cooperating[/QUOTE]