53 threads found!
Thread | Author | Replies | Views | Last Reply |
---|---|---|---|---|
nightfir | 1 | 90 | ||
nightfir | 3 | 53 | ||
nightfir | 7 | 111 | ||
nightfir | 0 | 62 |
(none)
|
|
nightfir | 3 | 67 | ||
nightfir | 0 | 35 |
(none)
|
|
nightfir | 1 | 15 | ||
nightfir | 2 | 18 | ||
nightfir | 1 | 9 | ||
nightfir | 2 | 110 | ||
nightfir | 4 | 102 | ||
nightfir | 2 | 63 | ||
nightfir | 2 | 72 | ||
nightfir | 39 | 3854 | ||
nightfir | 4 | 100 |
228 comments found!
Thread: Poser sighting -- CBS 60 minutes | Forum: Poser - OFFICIAL
lol radioactive boogers. but then jessie would have that nice green glow to her nostrils.
Thread: PoserPro...Fall? Nope, fall is now winter. $499 and they bought Body Studio | Forum: Poser - OFFICIAL
I would not bother to buy Poserpro with the features so close to Poser 7. About the ability to import into Autodesk 3D Studio Max, etc. Hell I can do that now with Digimation's GestureMax.
Why do I need a 500.00 program.
Thread: Question: Can I auto install Daz3D.com exe files using a bat.file. | Forum: Poser - OFFICIAL
**More info:
Chapter 20**
Automating Installer VISE
This chapter describes ways to automate the processes of building and controlling Installer
VISE installers. The information is divided into two main topics:
■
“Automating Installer Builds” on page 20-1■
“Automating Installers” on page 20-2Automating Installer
Builds
You can automate the process of building installers by using combinations of the features
listed below.
Build Targets and
Batch Build
Build Targets allow you to set up different kinds of installs and easily switch between them
when building. While the default behavior is to build one Build Target at a time, build
automation can be achieved by using Installer VISE's Batch Build feature. Batch Build
enables multiple Build Targets to be built at once. For details, see:
■
“Build Targets” on page 15-5■
“Batch Build” on page 15-9Batch Files
in the archive and build your installer:
There are two command line switches that can be used with Installer VISE to update filesCommand
Line Switch
Function
- u Causes Installer VISE to update a file in the specified archive.
Example:
D:MyProductBuilderReleaseMyApp.exe
- b Causes Installer VISE to build an installer from the specified archive
and save it at a specified location. This command line switch can
specify the Build Target for the installer.
F:tempfile.vct -b F:tempsetup.exe target1
InstVise.exe F:tempMyProduct.VCT -u MyApp.exeExample: InstVise.exe****Table 20-1: Command line switches for building installers
20–2 Automating Installers
Chapter 20 Automating Installer VISE Installer VISE for Windows
Through a command available in its File menu, Installer VISE can generate a batch file for
you that updates specific files and builds an installer at the location you specify. You can
use this file in conjunction with other batch files to automate your build process.
For details, see
**“Generating a Batch File” on page 6-46.**Automating
Installers
Installer VISE installers can be controlled through the following command line switches,
which for convenience and automation purposes will typically be used in batch files:
Command
Line Switch
Function
-s Causes the installer to silently process any items in its Silent Setup
package. The purpose is to provide an install that can be used with a
batch file; no customer intervention is required and no dialogs are
displayed.
See
page 6-7
-t Causes the installer to use the specified path as the default target
directory.
****Example: setup.exe -s“Creating Packages, Sub-Packages and List Packages” on.****Example:
See
-v Causes the installer to use any runtime variable values present in the
specified INI file.
**setup.exe -t:"C:Program FilesMy Application"“Externally Setting %TargetDir%” on page 19-9.**Example:
See
-r Causes the installer to use the specified INI file to record the
settings made by the user during the install. The recorded install can
then be played back with the -p command line switch.
**setup.exe -v: varsettings.ini“Externally Setting Variables” on page 19-8.**Example:
See
-p Causes the installer to silently play back a previously recorded install
using the user settings stored in the specified INI file. (User settings
are recorded using the -r command line switch.)
**setup.exe -r: recsettings.ini“Recording and Playing Back Installs” on page 20-3.**Example:
See
-l (lowercase L) For use by an application, this command line switch causes the
installer to send progress notification messages to the specified
window.
**setup.exe -p: recsettings.ini“Recording and Playing Back Installs” on page 20-3.**Example:
See
-n For use by an application, this command line switch can optionally
be used in conjunction with the -l switch to identify the installer that
is sending progress notification messages.
**setup.exe -l listener“Monitoring Installer Progress” on page 20-4.**Example:
See
**setup.exe -l listener -n reporter“Monitoring Installer Progress” on page 20-4.**Table 20-2: Command line switches for controlling installers
Recording and Playing Back Installs 20–3
Installer VISE for Windows Chapter 20 Automating Installer VISE
Recording and Playing
Back Installs
This feature enables customers who use your installer to automate the installation process.
For example:
■
your software on multiple computers in a network.
Systems administrators could use record and playback to control installation of■
for inclusion with their products.
Although you might not use this feature as a developer, you might want to provide the
following information to select customers who have a need to control the installation of
your software.
Third-party developers could use the feature to automate your installer as neededHow it Works
and playback does not require the user to repackage the installer with Installer VISE.
Instead, customers can simply run your installer once using a special command line switch
that records all user settings, such as package selection and text input. The installer can
then be launched on another machine and run silently without user intervention.
In contrast to the Snapshot Wizard (see Chapter 14-Using the Snapshot Wizard), recordTo record an install:
1.
setup.exe -r: recsettings.ini
The user settings will be recorded to the INI file specified here.
**Launch the installer with a command line that follows this format:**2.
record for automation purposes.
The resulting INI file can be manually revised to preset runtime variable
values, using the format described in
page 19-8
Password verification (when entry is prompted by the Verify Password
installer screen) is skipped over during playback.
Once an install is recorded, different variations can be created by making
copies of the INI file and modifying the contents as needed.
**Complete the installation process using the selections and input you would like to“Externally Setting Variables” on.**To play back an install:
Launch the installer with a command line that follows this format:
setup.exe -p: recsettings.ini
Be sure to reference the INI file that has the desired user settings.
20–4 Monitoring Installer Progress
Chapter 20 Automating Installer VISE Installer VISE for Windows
Monitoring Installer
Progress
The following information describes how applications can launch one or more installers
and monitor their progress through messages sent by the installers. This feature can be
used in conjunction with the installer playback functionality.
To monitor an installer’s progress, the application source code must:
1.
**Create a message handler.**2.
from the installer.
Associate the handler with a (possibly hidden) window for receiving progress messages3.
setup.exe -l listener -n reporter -p settings.ini
The -l (lowercase L) switch, and the name that follows, signals the request for
progress notification. The name should be the name of a (probably hidden) window
that the application opens for the purpose of receiving and handling notification
messages sent by the installer.
The -n switch, and the name that follows, is optional. If present, the installer will
use the name provided to identify itself in notification messages it sends. Thus, by
naming at command line launch, one application could be monitoring multiple
installers (or multiple applications monitoring multiple launches of the same
installer) simultaneously, without confusion or collision.
The -p switch, and the name that follows, is also optional. It simply illustrates how
the notification feature might be used in conjunction with the playback feature.
**Launch the installer with a command line that follows this format:**Events Reported by
Installers
The events an installer will report are as follows:
■
Begin install■
Successful completion of install■
Cancel or abort install■
**Update of the progress bar (whether hidden or not)**Finding More
Information
For more information on this feature, see the Vise Monitor folder that’s available as part
of the Installer VISE installation. This folder includes the following valuable reference
items:
■
Read Me file■
Sample application■
Sample application project
Thread: Question: Can I auto install Daz3D.com exe files using a bat.file. | Forum: Poser - OFFICIAL
I did look at mindvision.com and the installer vise program that daz3D uses.
Did a look thru of the docs of the program itself as to how to set up a installer etc.
There is suppose to be a command that allows one to record the setup info that the
user types in and then another one to reenter that info ie auto install requiring no user input.
However I have not got it to work yet.. I got the docs from here: http://www.mindvision.com/downloads.asp
The commands are as follows:
setup.exe -r: recsettings.ini (to record info)
setup.exe -p: recsettings.ini (to play back info)
You are suppose to be able to take the recsettings.ini file and edit it to your liking.
I tried the first command in the dos window and could not get the file recsettings.ini
to be created. What i did was take the file that installed The Freak and put it on my C:
drive as: freak.exe and then entered dos window and entered: freak.exe -r recsettings.ini.
It ran ok and I went thru the motions of installing everything on my C: drive. Just for the
heck of it I went and entered freak.exe -p: recsettings.ini. It ran but I had to type in all the
info over again. If the file recsettings.ini was created windows could not find it etc.
I'll have to play around and see what i can do there are a lot of different command switches
one can use when installing anything using the installer vise program.
Brad.
Thread: Question: Can I auto install Daz3D.com exe files using a bat.file. | Forum: Poser - OFFICIAL
Yes. If It can be done with out a lot of hair pulling, wailing, grinding of teeth, swearing, and milinging peoples parentage.
Brad.
Thread: need info on how to change ytran of a figure in python having strange probs hel | Forum: Poser Python Scripting
Nruddock :
Hmmm that's weird. Everything else except for x, y, and z tran the values come out ok. I am using inches as working units inside Poser instead of native Poser Units. I was just about to post a new topic about a possible bug in Poser SR3 and a fix. Here is the post:
Hi:
I think I found a possible bug in Poser 6 SR3. It involves using python to set yTran of a figure, etc. In a previous post I asked how you would go about writing a python script that would allow one to change the value of yTran for a figure as I was getting strange values in yTran, plus xTran, and zTran. No probs with xRotate, yRotate, zRotate. This is the script from the previous post in the python scripting forum:
scene = poser.Scene()
fig = scene.Figure("tshirt2")
act = fig.Actor("Body")
act.SetParameter("yTran",10.0)
Well I was not getting yTran set to 10. I was getting the value 1032.000003. I found out after a bit of work that Poser was taking the value 10.0 and dividing it by .00968992244452 which of course equals 1032.000003. Say what!!!!!!! Anyways I came up with a new script to fix the problem. It's as follows:
scene = poser.Scene()
fig = scene.Figure("tshirt2")
act = fig.Actor("Body")
adjust = .00968992244452
a = 10.0
b = adjust * a
act.SetParameterByCode(poser.kParmCodeYTRAN).SetValue(b)
Now could someone test both scripts with their own figure, and of course changing "tshirt2" to the name of that figure, with the versions of Poser they have. Like 4, 5, 6 with whatever service release they may have. Then get back to me, and the rest of us via this post with the results. I have no idea if it's Poser SR3, my machine, or what.
I have not yet removed Poser 6 SR3 and reinstalled Poser 6 SR2. I have to dig up my original Poser 6 cd, and then find what disk I put the Poser 6 SR2 update on. Which I'm not doing except as a last resort. I have no idea where the needed disks are. It's what I get for being disorganized. Me and my other half remodeled my computer room, and while moving stuff out, tossed stuff into boxes, etc and then just put stuff back any old place after we were done. LOL. It's what I get for being lazy.
.
.
I'll switch over to Poser units and try running the original script again and see what happens.
Thread: COME ON ENGLAND!!! A Footy Freebie | Forum: Poser - OFFICIAL
Here is a little something I found for all you world cup fans.
http://www.weebls-stuff.com/flash/footy.swf
Footy! Footy! Footy!
Thread: New store opening. Hopefully by the end of the week. | Forum: MarketPlace Showcase
Yep it looks that way I'm helping bert out with some coding issues as if he should go with ejunkie or a seperate esd script in either perl or php. that way he can save 15 to 20.00 a month.
Thread: URGENT Message to all Merchants re this site's New look | Forum: Poser - OFFICIAL
Hmmm. I liked the old look of the forums a heck of a lot better. As the old saying goes "if it ain't broke don't fix it.
Thread: RuntimeDNA site hacked | Forum: Poser - OFFICIAL
Thread: Free Operahouse stage. | Forum: Poser - OFFICIAL
oooh great stage. I can use it for some phantom of the opera
stuff. Now I wonder if anyone has any phantom masks for like
m3, etc. Did I not say that box 5 was to remain empty!
Message edited on: 02/13/2006 10:35
Thread: OT - Survey - What screen size do you use? ... ;=] ... | Forum: Poser - OFFICIAL
I use a dual screen set up with each screen at 1024 X 768. I'm looking to get 2 or 3 high def monitors when I get my taxes back and cash I have saved up.
Thread: Freebie :Sci-Fi prop | Forum: Poser - OFFICIAL
Attached Link: http://www.brownielocks.com/marveloustoy.html
It's the toy from this old folk song I heard on the radio once by peter paul and mary called "the marvelous toy" Brad.Thread: Enter 2006 - Battle of the Babies? | Forum: Poser - OFFICIAL
Bonni: really we have one more season but it occurs at the same time as summer in wisconsin. Road construction season where it seems every road you need to travel on to get to a certain point is tore up for weeks on end. Now I have to decide if I want to buy the new mil baby.
This site uses cookies to deliver the best experience. Our own cookies make user accounts and other features possible. Third-party cookies are used to display relevant ads and to analyze how Renderosity is used. By using our site, you acknowledge that you have read and understood our Terms of Service, including our Cookie Policy and our Privacy Policy.
Thread: OT: Arthur C. Clarke has passed | Forum: Poser - OFFICIAL