Hi reteset,
Thanks.
Dear reteset if you want create a project for yourself we can help you on its PE or if you want create a project for AMS we can do it together (We & You), anyway AMSWaves is ready for help because sometimes you can help us.
Professional Software Development Tools
Hi reteset,
Thanks.
Dear reteset if you want create a project for yourself we can help you on its PE or if you want create a project for AMS we can do it together (We & You), anyway AMSWaves is ready for help because sometimes you can help us.
i was wondering if it is possible to add a javascript code to a html page between "<head> </head> " on runtime with this plugin ???
This Code:
Code:<script language="JavaScript"> document.body.style.zoom="150%"; </script>
I have just finished testing AMS 7.5.1008.0 on the final release version of Windows 7 and I am having a problem with this plugin.
I first do a web exe build and it starts up fine, but when I close it, it still shows under Task Manager\Proccess as running and will eventually time out and give an error.
Below is the Windows 7 error log contents for the error.
<?xml version="1.0" encoding="UTF-16"?>
<DATABASE>
<EXE NAME="autorun.exe" FILTER="CMI_FILTER_PRIVACY">
<MATCHING_FILE NAME="autorun.exe" SIZE="2830336" CHECKSUM="0x330BB283" BIN_FILE_VERSION="7.5.1008.0"
BIN_PRODUCT_VERSION="7.5.1008.0" PRODUCT_VERSION="7.5.1008.0" FILE_DESCRIPTION="AutoPlay Application"
COMPANY_NAME="" PRODUCT_NAME="AutoPlay Media Studio Runtime" FILE_VERSION="7.5.1008.0"
ORIGINAL_FILENAME="ams_runtime.exe" INTERNAL_NAME="ams_runtime" LEGAL_COPYRIGHT="Runtime Engine Copyright © 2009
Indigo Rose Corporation (www.indigorose.com)" VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1"
MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.5.1008.0"
UPTO_BIN_PRODUCT_VERSION="7.5.1008.0" LINK_DATE="10/09/2009 12:21:22" UPTO_LINK_DATE="10/09/2009 12:21:22"
VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" />
</EXE>
<EXE NAME="ntdll.dll" FILTER="CMI_FILTER_THISFILEONLY">
<MATCHING_FILE NAME="ntdll.dll" SIZE="1286144" CHECKSUM="0x1220566E" BIN_FILE_VERSION="6.1.7600.16385"
BIN_PRODUCT_VERSION="6.1.7600.16385" PRODUCT_VERSION="6.1.7600.16385" FILE_DESCRIPTION="NT Layer DLL"
COMPANY_NAME="Microsoft Corporation" PRODUCT_NAME="Microsoft® Windows® Operating System"
FILE_VERSION="6.1.7600.16385 (win7_rtm.090713-1255)" ORIGINAL_FILENAME="ntdll.dll.mui" INTERNAL_NAME="ntdll.dll"
LEGAL_COPYRIGHT="© Microsoft Corporation. All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x40004"
VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x14033F" LINKER_VERSION="0x60001"
UPTO_BIN_FILE_VERSION="6.1.7600.16385" UPTO_BIN_PRODUCT_VERSION="6.1.7600.16385" LINK_DATE="07/14/2009 01:09:47"
UPTO_LINK_DATE="07/14/2009 01:09:47" EXPORT_NAME="ntdll.dll" VER_LANGUAGE="English (United States) [0x409]"
EXE_WRAPPER="0x0" FILE_ID="00009d56bf20851f26960c4c33dd4bde84730c8d4 83f"
PROGRAM_ID="0000f519feec486de87ed73cb92d3cac802400 000000" />
</EXE>
<EXE NAME="kernel32.dll" FILTER="CMI_FILTER_THISFILEONLY">
<MATCHING_FILE NAME="kernel32.dll" SIZE="857088" CHECKSUM="0x22F48E19" BIN_FILE_VERSION="6.1.7600.16385"
BIN_PRODUCT_VERSION="6.1.7600.16385" PRODUCT_VERSION="6.1.7600.16385" FILE_DESCRIPTION="Windows NT BASE API Client
DLL" COMPANY_NAME="Microsoft Corporation" PRODUCT_NAME="Microsoft® Windows® Operating System"
FILE_VERSION="6.1.7600.16385 (win7_rtm.090713-1255)" ORIGINAL_FILENAME="kernel32" INTERNAL_NAME="kernel32"
LEGAL_COPYRIGHT="© Microsoft Corporation. All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x40004"
VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xD5597" LINKER_VERSION="0x60001"
UPTO_BIN_FILE_VERSION="6.1.7600.16385" UPTO_BIN_PRODUCT_VERSION="6.1.7600.16385" LINK_DATE="07/14/2009 01:09:01"
UPTO_LINK_DATE="07/14/2009 01:09:01" EXPORT_NAME="KERNEL32.dll" VER_LANGUAGE="English (United States) [0x409]"
EXE_WRAPPER="0x0" FILE_ID="00004f0b455c60c4292a488291d8c29f48aeec7a1 7e7"
PROGRAM_ID="0000f519feec486de87ed73cb92d3cac802400 000000" />
</EXE>
</DATABASE>
I really use this plugin a LOT so if you have some spare time could you please look at this to see if it would be possible to correct the issue.
It loosk like a possible stack overflow from reading another log file that is created. I didn't include that file since it is full of mostly compiled code so it is unreadable.
Thanks for the GREAT plugin.
Last edited by mwreyf1; 10-20-2009 at 09:09 AM.
I'm having trouble getting strings variables to pass to VBScript. I setup a test app to pass the value of an input box to a VBScript and pass the value back, but it will only pass numerical input and not strings.
Here's the sample test code I'm using:
If I enter 1234 into the input box and press the button then the dialog box displays '1234', but if I type in ABCD then the dialog box displays nothing.arg1 = Input.GetText("Input1");
code =[[
result = ]]..arg1..[[
]]
Script.SetLanguage(Script_VBScript);
Script.AddCode(code, Script_InternalCode);
result = Script.GetResultAsString("result");
Dialog.Message("", result)
The script I want to use requires strings and I need the data from input boxes to pass to the script.
Any ideas?
Last edited by mach170; 12-09-2009 at 03:06 PM.
Nevermind...
I figured it out. I did some more testing and just realized that the Script plugin must replace the variable with the actual data during runtime, so I needed to add some quotes to encase the string like this:
result = "]]..arg1..[["
Without the quotes VBScript would think the variable data was actually a variable since there was no quotes around it. Which makes sense as to why no value display in the dialog box when non-numerical data was entered.
Now strings work properly.
The plugin is great. Just need to brush up on my programming skills.
Last edited by mach170; 12-09-2009 at 03:19 PM.
thank you verry much
merci beacoup
choukrane sahbi
"kamgo"