Scripts stoped worked!

Help! I always use the CornerEffects script and now it no longer works - and it appears that none of my scripts work. I've been copying and pasting shapes that I've already applied with the CornerEffects script, but this is quite limiting.

Run this one-line script:
app.scriptPreferences.userInteractionLevel = 
UserInteractionLevels.INTERACT_WITH_ALL;
(Save as plain text with a jsx extension and place in your Script 
Panel folder. Open up your script panel and double click.)
Harbs
http://www.in-tools.com
Innovations in Automation

Similar Messages

  • Network script stoped working

    My Network script (the one in /etc/rc.d/network stopped working but manually using the if/iw config tools works.
    $ sudo /etc/rc.d/network start
    :: Starting Network [BUSY]
    > Could not associate wlan0 - try increasing WIRELESS_TIMEOUT and check network is WEP or has no security
    SIOCADDRT: No such process
    rc.conf
    eth0="dhcp"
    eth1="dhcp"
    wlan0="dhcp"
    wlan_wlan0="wlan0 essid dd-wrt" # Unencrypted
    INTERFACES=(!eth0 !eth1 wlan0)
    gateway="default gw 192.168.1.1"
    ROUTES=(gateway)
    manually
    $ sudo ifconfig wlan0 up
    $ sudo iwconfig wlan0 essid dd-wrt
    $ sudo dhcpcd wlan0
    dhcpcd: version 5.1.3 starting
    dhcpcd: wlan0: broadcasting for a lease
    dhcpcd: wlan0: offered 192.168.1.109 from 192.168.1.1
    dhcpcd: wlan0: acknowledged 192.168.1.109 from 192.168.1.1
    dhcpcd: wlan0: checking for 192.168.1.109
    dhcpcd: wlan0: leased 192.168.1.109 for 86400 seconds
    dhcpcd: forking to background

    And what happens if you do increase the value of "WIRELESS_TIMEOUT" ?
    You can add this variable to your rc.conf file (with something like "WIRELESS_TIMEOUT=4") or by editing /etc/rc.d/network.
    EDIT: alternatively, you could put this value in the /etc/conf.d/wireless file, which might be "cleaner".
    Last edited by hexanol (2009-11-29 14:27:18)

  • Recieving a message 'Photoshop CS5 has been stoped Working'

    I have been Recieving a message 'Photoshop CS5 has been stoped Working' after
    opening PS and can do a little editing and after about 4 minutes the message comes which have
    only one option , close program. Sometime i recieve another message also 'Onone Library' which have option 'ok'.
                        (Adobe Photoshop CS5.1)
                   I tried for a solution by changing name of file in C:\Program Files\Adobe\Adobe Photoshop CS5.1\Plug-ins\Extensions 
    changed Scriptingsupport into ~ScriptingSupport but not solved. Some cannot open image.
    A similiar has inserred , only chane in the name {Skype ------- Photoshop}
    The other Message

    Double click on more then one of the Photoshop.exe stopped working entries to see the details like I showed. The details may show what is failing. Like mine showed it was in Photoshop ScripUIflex module.  Used by scripts with Dialogs a would guess.  Check several of yours. See if its always the same failure. The one you show is in widows ntdll.dll part of windows. On my system there are two ntdll.dll one 32bit version and one 64bit version. What were you trying to do at the time of failure
    Also doing a google search on faulting module ntdll.dll returned 59,200 hits I would not know which to begin with.
    https://www.google.com/search?num=50&newwindow=1&safe=off&q=faulting+module+ntdll.dll&oq=n tdll.dll&gs_l=serp.1.0.0i7i30j0j0i7i30l7j0.348311.348311.0.355917.1.1.0.0.0.0.149.149.0j1. 1.0....0...1c.1.25.serp..0.1.148.S5UMqI570o4
    Adding Photoshop returned only 25,600 hits
    https://www.google.com/search?num=50&newwindow=1&safe=off&q=Photoshop+faulting+module+ntdl l.dll+&oq=Photoshop+faulting+module+ntdll.dll+&gs_l=serp.12..0i30j0i8i30.26192.36980.0.390 74.11.11.0.0.0.0.75.671.11.11.0....0...1c.1.25.serp..0.11.670.0u5P4Brv_NQ
    Example http://forums.adobe.com/message/5335145

  • Activity Monitor stoped working

    My Activity Monitor just stoped working I deleted the perference and it just opens the closes I don't know what to do

    Did you have Xcode installed at one point and then use the "/Developer/Tools/uninstall-devtools.pl" uninstall script to remove Xcode? There was a version of Xcode that would try to install the GraphKit.framework, but would skip it because it found that a newer version of the GraphKit.framework was already installed (as part of the OS X installation). When you then ran the "uninstall-devtools.pl" uninstall perl script, it would mistakenly remove the GraphKit.framework even though the Xcode installer never installed that.
    That would then cause problems like Activity Monitor crashing as well as other apps that were linked to that private framework.
    To fix this, follow the advice that Neil's link gave. (You should be able to use Pacifist to extract the GraphKit.framework from your original install disk, and then use the combo update for your current version of OS X to further bring that framework up to date).
    Hope this helps....
    Dual 2.7GHz PowerPC G5 w/ 2.5 GB RAM; 17" MacBook Pro w/ 2 GB RAM -   Mac OS X (10.4.8)  

  • Script that worked in CS does not work in CS4 - multiple open page, print , pdf export and close

    I had a script that worked great for me in Indesign CS. But now does not work in CS4. Anyone knows what needs to be done to make it work again ?
    When I drop folder with indesign files on top of this script:
    1. opens first page
    2. turns specific layer on
    3. prints using preset
    4. exports using preset
    5. close without saving
    6. next page
    Anyone who can give me solution or idea how this should work is greatly appreciated.
    on open sourceFolders
    repeat with sourceFolder in sourceFolders
    tell application "Finder"
    try
    -- If you would like to include subfolders, you say - every file of entire contents of folder…
    set idFiles to (every file of folder sourceFolder whose file type is "IDd5") as alias list
    on error -- work around bug if there is only one file
    set idFiles to (every file of folder sourceFolder whose file type is "IDd5") as alias as list
    end try
    end tell
    if idFiles is not {} then
    tell application "Adobe InDesign CS4"
    set user interaction level to never interact
    repeat with i from 1 to count of idFiles
    open item i of idFiles
    tell document 1
    try
    set visible of layer "ImagesTag_Layer" to true
    end try
    set myPreset to "letter size" -- name of print style to use
    with timeout of 700 seconds
    print using myPreset without print dialog
    end timeout
    set myPreset1 to "pdf preset name" -- name of pdf export style to use
    set myName to the name -- name includes .indd should remove at some point          
    with timeout of 700 seconds
    export format PDF type to "users:temp:Desktop:pdf:" & myName & ".pdf" using myPreset1 without showing options -- set path here format ComputerName:Folder1:Folder2:......:FileName.pdf
    end timeout
    close without saving
    end tell
    end repeat
    set user interaction level to interact with all
    end tell
    end if
    return 10 -- try again in 10 seconds
    end repeat
    end open

    (Disclaimer: me not an AS guy!)
    First thing I noticed is the interaction level is set off. If you comment out this line
    set user interaction level to never interact
    you might be able to pinpoint the exact error -- ID will display a standard "failed" dialog, hopefully showing the line that it fails on.
    A quick question: the script assumes two presets in your InDesign: one for print ("letter size") and one for PDFs ("pdf preset name"):
    set myPreset to "letter size" -- name of print style to use
    set myPreset1 to "pdf preset name" -- name of pdf export style to use 
    Do these actually exist in your CS4, with the same (non)capitalization and spaces?

  • My computers hard drive has stoped working, how can I retrieve my Itunes library from my computer?

    My computers hard drive has stoped working. How can I retrieve my itunes library? My back ups were on this hard drive as well.
    When I brought my computer to be fixed they said they would retrieve photos and music and documents but loose my programs. That being said I am not sure if I will recover my music from itunes because it may fall under the program category. I support itunes by purchasing from itunes, but now i am in a position where i may loose years of purchassing music and it has me feeling a little bit sick to be honest...the stress this is causing is really big. DÙoes anyone have any experience with this type of problem?
    Help is appreciated, thank you.

    If the data is recoverable from the drive then they should have recovered the entire iTunes folder which includes the library database. Restore this into the <User's Music> folder of a replacement system, install iTunes, and it should be as before.
    See also  Recover your iTunes library from your iPod or iOS device. Even if you don't have one there should be some useful links...
    tt2

  • How do I untick "Don't ask again" on Script Stopped Working

    I started getting a pop up telling me something similar to "A script has stopped working, do you want to stop it or continue" with two buttons accordingly. Also there was a tick box saying "Don't show this again".
    I got sick of it happening so regularly and having to tick the Continue button - well it didn't tell me which script had stopped working and I wanted to Firefox to keep working and have all my plugins to continue working so clicked the Continue button, it would be good to know which script is not working so that it might help find out what's wrong and why it's not working... it's like most things that go wrong on PCs, "There has been and error, ---- will now close" Tell us what the error is so that we can report it to the programmers and they can fix it !?!?!?!?!
    Anyway, I ticked the "Don't ask again" and clicked Continue...
    Now Firefox pauses for about 5 seconds and sometimes longer every so often, and occasionally I see what appears to be this warning dialogue box flicker onto the screen for a split second...!?
    How do I untick this box so that I get the buttons back so that I can stop the script working and then I'll be more likely to find out what's making this script not work by some part of Firefox or a plugin then not working and tell someone about it, rather than making things slow down so much...
    I didn't know I had all the plugins listed below installed, where do they come from as I don't remember telling the machine that I've got Netscape- which I haven't as far as I know...?!
    == This happened ==
    Not sure how often
    == I ticked the box telling it not to tell me again and continue...

    reset "dom.max_script_run_time" under about:config
    http://support.mozilla.com/en-US/kb/warning+Unresponsive+script

  • Help! Script that works in 8.1.7 does not work in 9.2.0

    I have a generic hot backup script that runs well in our 8i environment where I source the username and password for SYS from a secured txt file. However I could not get the script to work in our recently installed 9.2.0 environment.
    Below is an extract of the hot backup script:
    # Set environment
    . ${HOME}/BACKUP/${DBNAME}.env
    CONNECT_STRING=`${HOME}/admin/Util/syspass.sh sys $DBNAME`
    export CONNECT_STRING
    #Define some commands and files
    SQLPLUS="${ORACLE_HOME}/bin/sqlplus -s ${CONNECT_STRING}"
    TIME_STAMP=`date +"%d-%b-%Y"`
    # Test for duplicate filenames
    $SQLPLUS <<-EOF
    var numfiles number;
    BEGIN
    SELECT count(*) into :numfiles
    FROM dba_data_files a, dba_data_files b
    WHERE a.file_name != b.file_name
    AND SUBSTR(a.file_NAME, INSTR(a.file_name, '/', -1) + 1)
    = SUBSTR(b.file_NAME, INSTR(b.file_name, '/', -1) + 1);
    END;
    exit :numfiles
    EOF
    FILE_ERROR=$?
    echo "Number of duplicate files $FILE_ERROR"
    if [ $FILE_ERROR -gt 0 ]; then
    echo "Aborting, ... $FILE_ERROR duplicate filenames"
    exit
    fi
    As per the extract above,
    in our 8.1.7 environment,
    (1) the command CONNECT_STRING=`${HOME}/admin/Util/syspass.sh sys $DBNAME`
    will result in CONNECT_STRING=sys/xxxxxx@<sid>
    (2) the command SQLPLUS="${ORACLE_HOME}/bin/sqlplus -s ${CONNECT_STRING}"
    will result in SQLPLUS=/usr/oracle/product/8.1.7/bin/sqlplus -s sys/xxxxxx@<sid>
    (3) and when issue $SQLPLUS <<-EOF
    it connects fine and execute the procedure successfully.
    in Oracle 9.2.0,
    (1) the command CONNECT_STRING=`${HOME}/admin/Util/syspass.sh sys $DBNAME`
    works fine with result same as in 8.1.7 - CONNECT_STRING=sys/xxxxxx@<sid>
    (2) the command SQLPLUS="${ORACLE_HOME}/bin/sqlplus -s ${CONNECT_STRING}"
    works fine with result SQLPLUS=/usr/oracle/product/9.2.0/bin/sqlplus -s sys/xxxxxx@<sid>
    (3) However, when issue $SQLPLUS <<-EOF returns an error:
    ERROR:
    ORA-28009: connection to sys should be as sysdba or sysoper
    How can I fix that??
    Is it because of the username/password structure (sys/xxxxxx@<sid>)??
    I would like to keep such username/password format if possible.
    I have also tried to hard coded the username/password for variable SQLPLUS as:
    SQLPLUS="/usr/oracle/product/9.2.0/bin/sqlplus -S '/ as sysdba'"
    But it still doesn't work when issue $SQLPLUS, it returns the following:
    Usage: SQLPLUS [ [<option>] [<logon>] [<start>] ]
    where <option> ::= -H | -V | [ [-L] [-M <o>] [-R <n>] [-S] ]
    <logon> ::= <username>[<password>][@<connect_string>] | / | /NOLOG
    <start> ::= @<URI>|<filename>[.<ext>] [<parameter> ...]
    "-H" displays the SQL*Plus version banner and usage syntax
    "-V" displays the SQL*Plus version banner
    "-L" attempts log on just once
    "-M <o>" uses HTML markup options <o>
    "-R <n>" uses restricted mode <n>
    "-S" uses silent mode
    Any ideas as to how to have the script run in 9.2.0??
    Your help is much appreciated.

    Hi, I tried CJ’s suggestion; however it still doesn’t work for me.
    I tried assigning the command line to a variable, I tried to log in directly from the command line, and both don’t work (see below). What did I do wrong??
    $ SQLPLUS="/usr/oracle/product/9.2.0/bin/sqlplus -S \"sys/xxxxxx@<sid> as sysdba\""
    $ echo $SQLPLUS
    /usr/oracle/product/9.2.0/bin/sqlplus -S "sys/xxxxxx@<sid> as sysdba"
    $ $SQLPLUS
    Usage: SQLPLUS [ [<option>] [<logon>] [<start>] ]
    where <option> ::= -H | -V | [ [-L] [-M <o>] [-R <n>] [-S] ]
    <logon> ::= <username>[<password>][@<connect_string>] | / | /NOLOG
    <start> ::= @<URI>|<filename>[.<ext>] [<parameter> ...]
    "-H" displays the SQL*Plus version banner and usage syntax
    "-V" displays the SQL*Plus version banner
    "-L" attempts log on just once
    "-M <o>" uses HTML markup options <o>
    "-R <n>" uses restricted mode <n>
    "-S" uses silent mode
    $ sqlplus "sys/xxxxxx@<sid> as sysdba"
    SQL*Plus: Release 9.2.0.4.0 - Production on Wed Mar 24 08:53:05 2004
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    ERROR:
    ORA-01031: insufficient privileges

  • My iphone 3g is not charging and the middle button has stoped working please help. My phone has no power now

    My iphone 3g is not charging and the middle button has stoped working please help. My phone has no power now an i need help

    For a broken home button you can find your options here http://www.apple.com/support/service/

  • Script that works in 8.1.7 does not work in 9.2.0

    I have a generic hot backup script that runs well in our 8i environment where I source the username and password for SYS from a secured txt file. However I could not get the script to work in our recently installed 9.2.0 environment.
    Below is an extract of the hot backup script:
    # Set environment
    . ${HOME}/BACKUP/${DBNAME}.env
    CONNECT_STRING=`${HOME}/admin/Util/syspass.sh sys $DBNAME`
    export CONNECT_STRING
    #Define some commands and files
    SQLPLUS="${ORACLE_HOME}/bin/sqlplus -s ${CONNECT_STRING}"
    TIME_STAMP=`date +"%d-%b-%Y"`
    # Test for duplicate filenames
    $SQLPLUS <<-EOF
    var numfiles number;
    BEGIN
    SELECT count(*) into :numfiles
    FROM dba_data_files a, dba_data_files b
    WHERE a.file_name != b.file_name
    AND SUBSTR(a.file_NAME, INSTR(a.file_name, '/', -1) + 1)
    = SUBSTR(b.file_NAME, INSTR(b.file_name, '/', -1) + 1);
    END;
    exit :numfiles
    EOF
    FILE_ERROR=$?
    echo "Number of duplicate files $FILE_ERROR"
    if [ $FILE_ERROR -gt 0 ]; then
    echo "Aborting, ... $FILE_ERROR duplicate filenames"
    exit
    fi
    As per the extract above,
    in our 8.1.7 environment,
    (1) the command CONNECT_STRING=`${HOME}/admin/Util/syspass.sh sys $DBNAME`
    will result in CONNECT_STRING=sys/xxxxxx@<sid>
    (2) the command SQLPLUS="${ORACLE_HOME}/bin/sqlplus -s ${CONNECT_STRING}"
    will result in SQLPLUS=/usr/oracle/product/8.1.7/bin/sqlplus -s sys/xxxxxx@<sid>
    (3) and when issue $SQLPLUS <<-EOF
    it connects fine and execute the procedure successfully.
    in Oracle 9.2.0,
    (1) the command CONNECT_STRING=`${HOME}/admin/Util/syspass.sh sys $DBNAME`
    works fine with result same as in 8.1.7 - CONNECT_STRING=sys/xxxxxx@<sid>
    (2) the command SQLPLUS="${ORACLE_HOME}/bin/sqlplus -s ${CONNECT_STRING}"
    works fine with result SQLPLUS=/usr/oracle/product/9.2.0/bin/sqlplus -s sys/xxxxxx@<sid>
    (3) However, when issue $SQLPLUS <<-EOF returns an error:
    ERROR:
    ORA-28009: connection to sys should be as sysdba or sysoper
    How can I fix that??
    Is it because of the username/password structure (sys/xxxxxx@<sid>)??
    I would like to keep such username/password format if possible.
    I have also tried to hard coded the username/password for variable SQLPLUS as:
    SQLPLUS="/usr/oracle/product/9.2.0/bin/sqlplus -S '/ as sysdba'"
    But it still doesn't work when issue $SQLPLUS, it returns the following:
    Usage: SQLPLUS [ [<option>] [<logon>] [<start>] ]
    where <option> ::= -H | -V | [ [-L] [-M <o>] [-R <n>] [-S] ]
    <logon> ::= <username>[<password>][@<connect_string>] | / | /NOLOG
    <start> ::= @<URI>|<filename>[.<ext>] [<parameter> ...]
    "-H" displays the SQL*Plus version banner and usage syntax
    "-V" displays the SQL*Plus version banner
    "-L" attempts log on just once
    "-M <o>" uses HTML markup options <o>
    "-R <n>" uses restricted mode <n>
    "-S" uses silent mode
    Any ideas as to how to have the script run in 9.2.0??
    Your help is much appreciated.

    My first comment is that even though you are using a secure encrypted text file, putting the SYS password on the command line can make the password available to anyone on the server who can perform a ps command:
    shvec320 ECD2 /u01/home/oracle/cronscripts $ sqlplus mark/mark4s@dbnm
    SQL*Plus: Release 8.1.7.0.0 - Production on Wed Mar 24 16:47:17 2004
    (c) Copyright 2000 Oracle Corporation. All rights reserved.
    Connected to:
    Oracle8i Enterprise Edition Release 8.1.7.4.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.4.0 - Production
    SQL> !ps -ef | grep mark
    oracle 25494 25078 0 16:47:17 pts/4 0:00 sqlplus mark/mark4s@dbnm
    oracle 25497 25494 0 16:47:23 pts/4 0:00 grep mark
    Consider putting the connect string in the SQL script:
    sqlplus /nolog <<-EOF
    connect ${CONNECT_STRING}
    var numfiles number;
    BEGIN
    SELECT count(*) into :numfiles
    FROM dba_data_files a, dba_data_files b
    WHERE a.file_name != b.file_name
    AND SUBSTR(a.file_NAME, INSTR(a.file_name, '/', -1) + 1)
    = SUBSTR(b.file_NAME, INSTR(b.file_name, '/', -1) + 1);
    END;
    exit :numfiles
    EOF
    Starting in Oracle 9 (others will correct me if I am wrong) you cannot connect to the sys account without specifying as SYSDBA or SYSOPER.
    My testing (9.2.0.3) resulted in your ORA-1013 using "sys/password@dbname as sysdba". Using "sys/password as sysdba" works just fine. I seem to remember if you want to use @dbname, you will need to use password file authentication instead of OS authentication.
    My suggestion -if possible - is to use plain "connect / as sysdba" in your SQL Script and have ORACLE_HOME and ORACLE_SID set correctly in your environment (do it in ${HOME}/BACKUP/${DBNAME}.env) :
    sqlplus /nolog <<-EOF
    connect / as sysdba;
    var numfiles number;
    BEGIN
    SELECT count(*) into :numfiles
    FROM dba_data_files a, dba_data_files b
    WHERE a.file_name != b.file_name
    AND SUBSTR(a.file_NAME, INSTR(a.file_name, '/', -1) + 1)
    = SUBSTR(b.file_NAME, INSTR(b.file_name, '/', -1) + 1);
    END;
    exit :numfiles
    EOF
    HTH

  • Oracle forms 6i designer has stopeed working when opening canvas?

    forms 6i
    Hi to all,
    i have facing one problem when opening form canvas.i get the error message like this "oracle forms 6i designer has stopeed working".
    any one help please
    Regards,
    Stevie

    Hi
    no os no db version not enough information ..!
    Pls try to send adequate information Pls& look at the following thread this might help
    connecting form 6i  to oracle database 10G express edition
    Amatu Allah

  • My flash player stoped working 2 days ago and it wont install or update it stops at 47% i tryed all

    my flash player stoped working 2 days ago and i tryed all the tips and adviceto fix it /update it still stops instilation at 47 to 50%

    What is your operating system & browser?

  • Dynamic stamp scripting which worked in Acrobat 9 Pro not working in Acrobat XI Pro

    I don't know JavaScript, so I am flying blind. I have recently updated to Acrobat XI Pro (on Win 7 Pro). I have had trouble setting up the same dynamic stamps that I had working in Acrobat 9. Just creating the stamps has been difficult, but the real pain has been trying to use the same scripting that I was using before. In particular, I have a field in which I want to enter details of a payment, such as cheque number. The script that worked before was:
    var cAsk = "Enter Payment Details" ;
    var cTitle = "Payment Details:  ";
    if(event.source.forReal && (event.source.stampName == "#X-MzCINchnGa7KblIGbv5C"))
      var cMsg = app.response(cAsk, cTitle);
      event.value = cMsg;
      event.source.source.info.exhibit = cMsg;
    The JavaScript debugger goes nuts about event.source being null and I am completely lost.
    Can anyone suggest a script which is likely to work for me? Is there any tutorial or similar material dealing with these issues in Acrobat XI Pro and in language that I am likely to understand?
    Thanks in advance.

    Change the start of the if-statement to:
    if (event.source && event.source.forReal && ...

  • Font missing CS4 script not working in CS5???

    hi, my font missing script is working in CS3, and CS4 but not working in CS4.
    I don't know why, any help please.
    Sam

    Object model has some changes in CS5.
    So use the below code in top of your script.
    app.scriptPreferences.version = 6.0;

  • Scripts stop working when extended with "additional features"

    I have a couple of scripts that work fine in both Pro and Reader, but when I Save As -> Reader Extended PDF -> Enable Additional Features, they stop working (in both Pro and Reader). Other scripts in the same form continue to work just fine. I'm at a total loss, and so are my IT folks (who admittedly aren't exactly form/JS/Adobe experts...)
    I've been fighting with this problem off and on for a week or so now, and I've tried a couple of different approaches - I'm a JS muddler, and I'm sure there are more effective ways to do what I want to do. But everything I try gives me a different problem . I'm going to try to separate out the different issues in different posts...but I'm getting pretty confused!
    For what it's worth, the problem scripts are on the first and last master page, while the ones that work are on regular pages.
    The goal is to reuse a partially filled-out form for several different phases of an approval process. Each version gets a different title, and an additional subform is visible during the 2nd, 3rd, and 4th phases.
    Here's the overall workflow:
    Phase 1
    The form starts out with the Phase 1 title and with the additional subform "hidden."
    A remote user fills out the form and returns it to the program coordinator.
    Phase 2/3/4
    The coordinator saves a copy of the form with a different name.
    The coordinator checks a "For admin use only" checkbox to display a radio button group. Each option changes the title and sets the additional subform presence to "visible."
    The coordinator unchecks the "For admin use only" checkbox to hide the radio buttons.
    The title is in a text field. The scripts change the rawValue of the field for each option.
    In this case, I have the following script in both the initialize and calculate events of the text box:
    if   (S_SelectTitle.S_Actions.RB_SelectTitle.rawValue == 2)
         this.rawValue = "Phase 2";
    else if (S_SelectTitle.S_Actions.RB_SelectTitle.rawValue == 3)
         this.rawValue = "Phase 3";
    else if (S_SelectTitle.S_Actions.RB_SelectTitle.rawValue == 4)
         this.rawValue = "Phase 4";
    else
         this.rawValue = "Phase 1";
    and similar code in the initialize and calcuate events of the subform to make its presence "visible" or "hidden." (I've used this initialize/calculate event strategy before, it's always worked fine. But I"ve run into problems with it in one of the alternate approaches i've been using on this form, so I"m totally open to other ways of doing it...)
    Before I extend the form for Reader, it works fine. The title changes correctly depending on which button is selected, the new subform appears at the end, and the radio buttons go away when the box is unchecked.
    After I extend it for Reader, nothing works except the checkbox. The title doesn't change, and the subform never appears.
    Help? Thanks in advance!

    Well, it seems that interactive objects on master pages are problematic. Using a few message boxes, we discovered that the Initialize event fires each time a radio button on a master page is selected, but not when the radio button is in the body of the form.
    So each time we clicked the radio button on the master page, the Initialize event set the value of the exclusion group right back to the default value (which was null, in this case). So the title never changed, because the radio button setting didn't stick.
    For this form, I figured out a way to remove the radio buttons from the master page. Not only do the titles in the headers change correctly, the form also works with the Reader extensions enabled!
    I'm not sure which issue was hanging me up -- the buttons on the master page or Reader extensions -- or if they're tied together somehow. But the moral of the story for me, anyhow, is no more buttons on master pages. Hope this helps someone else!

Maybe you are looking for

  • How do I send images in an email, but not embedded in the message body?

    I want to submit some jpg images of artwork to a competition and the rules state that attached images must *not* be embedded in the email body. They want the list where you can see the file name and you click on it to open it, as I've seen in Windows

  • Item does not match schedule line (program error) in sap

    Dear Expert. Greetings! We are currently facing with this error (V1 427 item does not match schedule line (program error) in sap), when we open the sales order(VA02/03). The error  is occurring due  inconsistency on the database tables, some Item is

  • HT1535 IPAD sync problem

    I synced contents to iPad from iMac, now I am trying to do it from MacBook. But the message shows that YOU DO NOT HAVE THE PRIVILEGE TO MAKE CHANGE. Let me know please.

  • DD250 Invoice report

    Has anybody out there ever created a DD250 invoice report using Oracle Reports. I am told that it is impossible to accomplish because it contains an extremely small font that you cannot use in Oracle Reports. Is this true or the person who told me th

  • How to increase the length of selection texts

    Hi to all.. please do a favour...... My problem is ,I am not able to enter long text in SELECTION TEXTS after certain length ,but we need long texts .So what I have to do to enter long texts.. plz respond