The Title property is showing instead of the filename at top of application bar

We have a need to rename a series of files from their original name to a new name.  After renaming the files in Windows (BRU000003.PDF in the example above), we opened one of the files in Adobe Acrobat.  We were surprised to see that the "name" displayed in the application bar at the top of that window was the Title property (000010.pdf in the example above) and not the file name.
Is there a way to programatically remove the Title property or to make Adobe Acrobat display the Filename and not the Title property?

If you need to do this to multiple files, a batch process is the way to go. You can use the Open Options command to display the file's name instead of the title.
You can also use a simple JavaScript to reset the title, or to replace it with the file's current name.

Similar Messages

  • Most times when I import photos from my desktop or dropbox to iPhoto, iPhoto will keep the title I created for the image as the display title under the image. but occasionally it displays the filename instead and I have to go back through and reenter

    most times when I import photos from my desktop or dropbox to iPhoto, iPhoto will keep the title I created for the image as the display title under the image. but occasionally it displays the filename instead and I have to go back through and reenter the title in iPhoto. why the inconsistency? running OS 10.9.5 and using iPhoto 9.5.1

    Try this:  select one of the photos that are showing the wrong title and use the Photos ➙ Batch Change ➙ Title to File Name menu option.
    See if that will put the name that you want under the thumbnail.

  • TS2530 When I put a burned cd from one Mac into another Mac, song titles do not show up! I have to enter them manually! My CD player reads the titles that i on the cd; how can I get my Mac to do so?

    When I put a burned cd from one Mac into another Mac, song titles do not show up! I have to enter them manually! My CD player reads the titles that i on the cd; how can I get my Mac to do so?

    The problem is that I burned these CD's myself from music that I added from my personal collection to iTunes. The INFO is ON the CD's (it appears perfectly when I put the CD in my Numark mixer...so I know the info is on the CD), but for some reason, my MAC PRO will NOT read the info on the burned CD when I place the CD into the MAC PRO. The CD was burned on a MAC that I no longer own. But there HAS to be a way to transfer songs from a burned CD with the INFO that is on the CD burned with iTunes.
    PLEASE HELP!
    -Old Appel

  • User Property changes show up on the outlook 2013 UI correctly but it does not show up on the MailItem User Properties in Shared Account between PCs Environment

    Hello There,
    I have written an Outlook Add-In to add several User Properties to our incoming emails. This add-in will be installed in 100 computers in different states and our Exchange server is hosted in our datacenter in CA. 
    Everything works great but there is an odd thing happens and that is when one PC changes a UserProperty Value all the other PCs  show up that change on their outlook UIs but when I get the MailItem object from the same other PC is
    not showing the changes. But if I shutdown outlook on that PC and open it up again the changes will be showing up in the MailItem object. It seems to me that MailItem doesn't refresh but UI does.
    Does anyone know how I can refresh the MailItem after its UserProperties has been changed from another pc in a shared account environment.   
    These are my codes to save a property and show all properties:
    Public Sub SaveUserProperty(xName As String, xValue As String)
    Dim ns As Outlook.NameSpace = Me.Application.GetNamespace("MAPI")
    Dim oMailItem As Outlook.MailItem = Nothing
    Dim oUserProperties As Outlook.UserProperties = Nothing
    Dim oUserProperty As Outlook.UserProperty = Nothing
    Try
    oMailItem = ns.GetItemFromID(curMailId)
    oUserProperties = oMailItem.UserProperties
    oUserProperty = oUserProperties.Find(xName)
    If oUserProperty IsNot Nothing Then
    oUserProperty.Value = xValue
    End If
    oMailItem.Save()
    Catch ex As Exception
    MsgBox(String.Format("{0}: {1}{2}", "SaveProperty", vbTab, ex.Message))
    Finally
    If Not IsNothing(oUserProperty) Then
    Marshal.ReleaseComObject(oUserProperty)
    oUserProperty = Nothing
    End If
    If Not IsNothing(oUserProperties) Then
    Marshal.ReleaseComObject(oUserProperties)
    oUserProperties = Nothing
    End If
    If Not IsNothing(oMailItem) Then
    Marshal.ReleaseComObject(oMailItem)
    oMailItem = Nothing
    End If
    If Not IsNothing(ns) Then
    Marshal.ReleaseComObject(ns)
    ns = Nothing
    End If
    End Try
    End Sub
    Public Sub ShowUserProperties()
    Dim builder As StringBuilder = New StringBuilder()
    Dim ns As Outlook.NameSpace = Me.Application.GetNamespace("MAPI")
    Dim oMailItem As Outlook.MailItem = Nothing
    Dim oUserProperties As Outlook.UserProperties = Nothing
    Dim oUserProperty As Outlook.UserProperty = Nothing
    Try
    oMailItem = ns.GetItemFromID(curMailId)
    oUserProperties = oMailItem.UserProperties
    For Each oUserProperty In oUserProperties
    builder.AppendFormat("{2}:{0}{3}{1}", vbTab, vbNewLine, oUserProperty.Name, oUserProperty.Value)
    Runtime.InteropServices.Marshal.ReleaseComObject(oUserProperty)
    Next
    If (builder.Length > 0) Then
    System.Windows.Forms.MessageBox.Show(builder.ToString(), "The UserProperties collection")
    End If
    Catch ex As Exception
    MsgBox(String.Format("{0}: {1}{2}", "ShowUserProperties", vbTab, ex.Message))
    Finally
    If Not IsNothing(oUserProperty) Then
    Marshal.ReleaseComObject(oUserProperty)
    oUserProperty = Nothing
    End If
    If Not IsNothing(oUserProperties) Then
    Marshal.ReleaseComObject(oUserProperties)
    oUserProperties = Nothing
    End If
    If Not IsNothing(oMailItem) Then
    Marshal.ReleaseComObject(oMailItem)
    oMailItem = Nothing
    End If
    If Not IsNothing(ns) Then
    Marshal.ReleaseComObject(ns)
    ns = Nothing
    End If
    End Try
    End Sub

    Outlook will not see the latest changes downloaded from Exchange (or changed through MAPI bypassing the Outlook Object Model on the local machine) until the MailItem object is completely released and reopened. The explorer list shows the changes since it
    is fed off the underlying folder contents table, not the cached MailItem object.
    There is nothing you can unless you make sure the MailItem object is released and is never kept referenced fro any prolonged periods of time.
    Dmitry Streblechenko (MVP)
    http://www.dimastr.com/redemption
    Redemption - what the Outlook
    Object Model should have been
    Version 5.5 is now available!

  • How do i show the filename.type instead of the entire file path?

    How do i show the filename.type instead of the entire file path?
    I want it to show "ProgramSetup.exe" instead of "C:/Program Files/Oracle/JavaFX/ProgramSetup.exe"
    I have created a JavaFX program with the help of my manager
    below are the code
                   File file = fileChooser.showOpenDialog(Admin.mainStage);
                   if (file != null) {
                        textFiles.setText(file.getAbsolutePath());
                        String absolutePath = file.getAbsolutePath();
                        //String fileName = new File(absolutePath).getName();the reason i put the last line as // because it has error on that line....
    if i remove the last line, it will display but with the full path....
    i search through google and the guide on many forums aren't clear to me.....some said there are 2 ways but i tried and it is not working, atleast for me...maybe i left out something or what....can anyone help me on this?

    You don’t need the absolutePath:
    File file = fileChooser.showOpenDialog(Admin.mainStage);
                   if (file != null) {
                        textFiles.setText(file.getName());
                               }

  • SID Showing instead of friendly name after renaming the server

    I had to rename a windows 2012 R2 server and after I rename it, Sever is showing SID instead of user friendly name.
    Even when I try to add new domain group or user in any resourse of this server, the friendly name disappear, soon after I hit apply button.
    So far I have done the following
    disjoin/rejoin - same result
    disjoin >delete AD account > Rejoin - same result
    I confirm that I have see the new server name in AD. DNS is OK too. Could find anything (i think) related to this problem.
    I can see the following errors
    1. The server {9BA05972-F6A8-11CF-A442-00A0C90A8F39} did not register with DCOM within the required timeout. EVENT ID 10010
    2. The processing of Group Policy failed. Windows could not determine if
    the user and computer accounts are in the same forest. Ensure the user
    domain name matches the name of a trusted domain that resides in the
    same forest as the computer account. . Event ID 1110
    3. Netloon server could not add the autZ RPC interface. The service
    was terminated. the following error occured. " Not enough sesources are
    available to compete this operation  Event id 5820
    4. The UAC file Virtulatization service failed to start due to the
    following error: This driver has been blocked from loading.Event ID 7000
    I have not deleted the computer account in the second time. Then
    rejoin but this time i didn't get the message but the issue with SID
    showing instead  of friendly name is still there. These are related , i
    can see
    I can see the server in the domain and DNS also updated.
    When I run GPReuslt, it shows
    Data collected on: 20/03/2014 3:17:09 PM
    Summary
    During last computer policy refresh on
    20/03/2014 3:00:29 PM
    <v:group alt="Error" class="vmlimage"
    coordsize="100,100"
    style="width:15px;height:15px;vertical-align:middle;"><v:oval
    class="vmlimage" coordsize="21600,21600" fillcolor="red"
    strokecolor="red"
    style="width:100px;height:100px;"></v:oval><v:line
    class="vmlimage" from="25,25" strokecolor="white" strokeweight="2.25pt"
    style="" to="75,75"></v:line><v:line
    class="vmlimage" from="75,25" strokecolor="white" strokeweight="2.25pt"
    style="" to="25,75"></v:line></v:group>
    1
    Errors Detected
    <v:group alt="Warning" class="vmlimage"
    coordsize="100,100"
    style="width:15px;height:15px;vertical-align:middle;"><v:shape
    class="vmlimage" coordsize="100,100" fillcolor="yellow"
    path=" m50,0 l0,99,99,99 xe" strokecolor="yellow"
    style="width:100px;height:100px;"><v:path></v:path></v:shape><v:rect
    class="vmlimage" coordsize="21600,21600" fillcolor="black"
    strokecolor="black"
    style="width:10px;height:35px;"></v:rect><v:rect
    class="vmlimage" coordsize="21600,21600" fillcolor="black"
    strokecolor="black"
    style="width:10px;height:5px;"></v:rect></v:group>
    A fast link was detected More information...
    <v:group alt="Warning" class="vmlimage"
    coordsize="100,100"
    style="width:15px;height:15px;vertical-align:middle;"><v:shape
    class="vmlimage" coordsize="100,100" fillcolor="yellow"
    path=" m50,0 l0,99,99,99 xe" strokecolor="yellow"
    style="width:100px;height:100px;"><v:path></v:path></v:shape><v:rect
    class="vmlimage" coordsize="21600,21600" fillcolor="black"
    strokecolor="black"
    style="width:10px;height:35px;"></v:rect><v:rect
    class="vmlimage" coordsize="21600,21600" fillcolor="black"
    strokecolor="black"
    style="width:10px;height:5px;"></v:rect></v:group>
    The following GPOs have special alerts
    GPO
    Name
    Alert
    Default Policy
    AD / SYSVOL Version
    Mismatch
    During last user policy refresh on
    20/03/2014 3:00:29 PM
    <v:group alt="Error" class="vmlimage"
    coordsize="100,100"
    style="width:15px;height:15px;vertical-align:middle;"><v:oval
    class="vmlimage" coordsize="21600,21600" fillcolor="red"
    strokecolor="red"
    style="width:100px;height:100px;"></v:oval><v:line
    class="vmlimage" from="25,25" strokecolor="white" strokeweight="2.25pt"
    style="" to="75,75"></v:line><v:line
    class="vmlimage" from="75,25" strokecolor="white" strokeweight="2.25pt"
    style="" to="25,75"></v:line></v:group>
    1
    Errors Detected
    <v:group alt="Warning" class="vmlimage"
    coordsize="100,100"
    style="width:15px;height:15px;vertical-align:middle;"><v:shape
    class="vmlimage" coordsize="100,100" fillcolor="yellow"
    path=" m50,0 l0,99,99,99 xe" strokecolor="yellow"
    style="width:100px;height:100px;"><v:path></v:path></v:shape><v:rect
    class="vmlimage" coordsize="21600,21600" fillcolor="black"
    strokecolor="black"
    style="width:10px;height:35px;"></v:rect><v:rect
    class="vmlimage" coordsize="21600,21600" fillcolor="black"
    strokecolor="black"
    style="width:10px;height:5px;"></v:rect></v:group>
    A fast link was detected More information...
    Please help
    I feel like, something is blocking the user-friendly name to display in that server. I could be wrong.
    I have also noticed that Netlogon service is not running. Try to run, it gives error Error 1721: Not enough resources are available to complete this operation.
    please help.

    Hi,
    Would you please tell us that are all user names displayed as SIDs, or only some of them after you renamed the server?
    Here are some related links below I suggest you refer to:
    Event ID 1110 — Group Policy Preprocessing (Active Directory)
    http://technet.microsoft.com/en-us/library/cc727342(v=WS.10).aspx
    Error Message:
    http://technet.microsoft.com/en-us/library/cc940521.aspx
    "AD / SYSVOL version mismatch" message is displayed unexpectedly in the Group Policy Results report in Windows
    http://support.microsoft.com/kb/2866345
    Best Regards,
    Amy Wang

  • Chess piece image of king showing instead of the normal picture we had chosen. Have we been hacked or does this happen for another reason?

    Chess piece image of king showing instead of the normal picture we had chosen. Have we been hacked or does this happen for another reason?

    While ATT was the one who made the news this time, it has been long reported that most of the major providers (google, Facebook, AOL, etc.)  have been monitoring data trafic on their networks, and providing back door access to government agencies for years. (If one recalls, kinda the point Edward Snoden made with his secret government messages release.) At least, they seem to be backing off, as the public becomes more aware or their privacy invasions.

  • My song titles do not show up in the list format. What can I do to fix this?

    I'm trying to manage my iPod music and my song titles are not showing inthe list format. Does anyone know how I can fix this?

    VLC

  • How can I show a 0% range in the data value label on a bar chart thanks?

    How can I show a 0% range in the data value label on a bar chart thanks?

    I'm not sure what the question is. 
    I know that if you have a bar chart and one of the categories (X-axis) has bar (Y value) equal to 0%, no bar is plotted for that category. Even the addition of a stroke (line) around the bars doesn't make one appear for 0%.  The only automatic way I know of to make it look like there is data in that category is to add the value labels to the bars. Inspector/Chart/Series, select one of the bars on the chart, click on "value labels". Another method that is a workaround is to fudge the number a little in your table so that instead of 0% it is a very small %.  This will get you a thin line on the chart.
    But if your question is about the value labels (the numbers that display on or in the bars) and you are not getting one for a bar that is supposed to be 0%, it probably means your table doesn't actually have a 0% in the corresponding cell. A blank cell in the table will not get a value label.

  • HT4623 My Iphone 4s just stopped during the latest update and now the screen show the Apple icon and an white bar beneath.  I can no longer get anything to work on the phone!!  Where to from here??

    My Iphone 4s just stopped during the latest update and now the screen show the Apple icon and an white bar beneath.  I can no longer get anything to work on the phone!!  Where to from here??

    You can not merge accounts.
    Apps are tied to the Apple ID used to download them, you can not transfer them.

  • Itunes app no longer showing genres or the top charts/genius bar in the top bar ... it only displays a faint music in the centre with just the search box..why? i need them back:-(

    itunes app no longer showing genres or the top charts/genius bar in the top bar ... it only displays a faint music in the centre with just the search box..why? i need them back:-(

    The iTunes Store listing of your podcast is simply reflecting the contents of your podcast feed. Make sure all of the content you want displayed in the iTunes Store is still contained within your feed.
    Are you able to supply your feed for reference?

  • Show the filename in a edit_text box in a stamp dialog

    Hi,
    Im tryint to create a stamp that pops-up dialog.
    One of the dialog text box must be filled in by default with the filename of the document that has to be stamped.
    This is a part of the code:
    var dialog = {
    issuepurposeValue: "",
    reviewresultcodeValue: "",
    nextissuestatusValue: "",
    resubmissiondateValue: "",
    respdept1Value: "",
    sigrespdept1Value: "",
    relateddept1Value: "",
    sigrelateddept1Value: "",
    relateddept2Value: "",
    sigrelateddept2Value: "",
    dateValue: "",
    reqnumValue: "",
    docnumberValue: "",
    docrevValue: "",
    initialize: function(dialog) {
    dialog.load({
    "radA": true,
    "radF": true,
    "radL": true,
    "cbxA": true,
    "radP": true,
    "radR": false,
    "txtM": documentFileName,
    "txtK": util.printd("dd-mmm-yyyy", new Date()),
    this.dateValue = false;
    this.resubmissiondateValue = false
    dialog.enable({
    "txtD": this.resubmissiondateValue,
    "txtK": this.dateValue
    cbxA: function (dialog) {
    this.dateValue = !this.dateValue;
    dialog.enable({"txtK": this.dateValue});
    radR: function (dialog) {
    this.resubmissiondateValue =! this.resubmissiondateValue;
    dialog.enable({
    "txtD": true,
    radP: function (dialog) {
    this.resubmissiondateValue =! this.resubmissiondateValue;
    dialog.enable({
    "txtD": false,
    radQ: function (dialog) {
    this.resubmissiondateValue =! this.resubmissiondateValue;
    dialog.enable({
    "txtD": false,
    commit:function (dialog) { // called when OK pressed
    var results = dialog.store();
    if(results["radA"] == true) {this.issuepurposeValue = "FR"};
    if(results["radB"] == true) {this.issuepurposeValue = "FN"};
    if(results["radC"] == true) {this.issuepurposeValue = "FI"};
    if(results["radD"] == true) {this.issuepurposeValue = "AB"};
    if(results["radE"] == true) {this.issuepurposeValue = ""};
    if(results["radF"] == true) {this.reviewresultcodeValue = "A"};
    if(results["radG"] == true) {this.reviewresultcodeValue = "B"};
    if(results["radH"] == true) {this.reviewresultcodeValue = "N"};
    if(results["radI"] == true) {this.reviewresultcodeValue = "F"};
    if(results["radJ"] == true) {this.reviewresultcodeValue = ""};
    if(results["radK"] == true) {this.nextissuestatusValue = "FR"};
    if(results["radL"] == true) {this.nextissuestatusValue = "FN"};
    if(results["radM"] == true) {this.nextissuestatusValue = "FI"};
    if(results["radN"] == true) {this.nextissuestatusValue = "AB"};
    if(results["radO"] == true) {this.nextissuestatusValue = ""};
    if(results["radP"] == true) { this.resubmissiondateValue = "Within 2 weeks"};
    if(results["radQ"] == true) { this.resubmissiondateValue = "In MDR"};
    if(results["radR"] == true) { this.resubmissiondateValue = results["txtD"]};
    this.respdept1Value = results["txtE"];
    this.sigrespdept1Value = results["txtF"];
    this.relateddept1Value = results["txtG"];
    this.sigrelateddept1Value = results["txtH"];
    this.relateddept2Value = results["txtI"];
    this.sigrelateddept2Value = results["txtJ"];
    if(results["cbxA"] == false) {this.dateValue = results["txtK"]};
    if(results["cbxA"] == true) {this.dateValue = util.printd("dd-mmm-yyyy", new Date())};
    this.reqnumValue = results["txtL"];
    this.docnumberValue = results["txtM"];
    this.docrevValue = results["txtN"];
    description:
    The problem is in "txtM" if i put under initialize "txtM": documentFileName, it returns the stamp name and i need the filename.
    hope anyone can help.
    Robbert

    I'm not that good in writing java scripts codes. all my codes come from stealing and modifying with trial and error.
    for your understanding find below the complete stamp code. The stamp is being used as a company approval stamp. a part of this stamp provides the document number of the checked document. to make it easy for the user of the stamp i want to retrieve the document file name as this is most of the time equal to the document number it self.
    "txtM" is the id-tag for a type edit_text box for filling the document number.
    var dialog = {
    issuepurposeValue: "",
    reviewresultcodeValue: "",
    nextissuestatusValue: "",
    resubmissiondateValue: "",
    respdept1Value: "",
    sigrespdept1Value: "",
    relateddept1Value: "",
    sigrelateddept1Value: "",
    relateddept2Value: "",
    sigrelateddept2Value: "",
    dateValue: "",
    reqnumValue: "",
    docnumberValue: "",
    docrevValue: "",
    initialize: function(dialog) {
    dialog.load({
    "radA": true,
    "radF": true,
    "radL": true,
    "cbxA": true,
    "radP": true,
    "radR": false,
    "txtM": documentFileName,
    this.dateValue = false;
    this.resubmissiondateValue = false
    dialog.enable({
    "txtD": this.resubmissiondateValue,
    "txtK": this.dateValue
    cbxA: function (dialog) {
    this.dateValue = !this.dateValue;
    dialog.enable({"txtK": this.dateValue});
    radR: function (dialog) {
    this.resubmissiondateValue =! this.resubmissiondateValue;
    dialog.enable({
    "txtD": true,
    radP: function (dialog) {
    this.resubmissiondateValue =! this.resubmissiondateValue;
    dialog.enable({
    "txtD": false,
    radQ: function (dialog) {
    this.resubmissiondateValue =! this.resubmissiondateValue;
    dialog.enable({
    "txtD": false,
    commit:function (dialog) { // called when OK pressed
    var results = dialog.store();
    if(results["radA"] == true) {this.issuepurposeValue = "FR"};
    if(results["radB"] == true) {this.issuepurposeValue = "FN"};
    if(results["radC"] == true) {this.issuepurposeValue = "FI"};
    if(results["radD"] == true) {this.issuepurposeValue = "AB"};
    if(results["radE"] == true) {this.issuepurposeValue = ""};
    if(results["radF"] == true) {this.reviewresultcodeValue = "A"};
    if(results["radG"] == true) {this.reviewresultcodeValue = "B"};
    if(results["radH"] == true) {this.reviewresultcodeValue = "N"};
    if(results["radI"] == true) {this.reviewresultcodeValue = "F"};
    if(results["radJ"] == true) {this.reviewresultcodeValue = ""};
    if(results["radK"] == true) {this.nextissuestatusValue = "FR"};
    if(results["radL"] == true) {this.nextissuestatusValue = "FN"};
    if(results["radM"] == true) {this.nextissuestatusValue = "FI"};
    if(results["radN"] == true) {this.nextissuestatusValue = "AB"};
    if(results["radO"] == true) {this.nextissuestatusValue = ""};
    if(results["radP"] == true) { this.resubmissiondateValue = "Within 2 weeks"};
    if(results["radQ"] == true) { this.resubmissiondateValue = "In MDR"};
    if(results["radR"] == true) { this.resubmissiondateValue = results["txtD"]};
    this.respdept1Value = results["txtE"];
    this.sigrespdept1Value = results["txtF"];
    this.relateddept1Value = results["txtG"];
    this.sigrelateddept1Value = results["txtH"];
    this.relateddept2Value = results["txtI"];
    this.sigrelateddept2Value = results["txtJ"];
    if(results["cbxA"] == false) {this.dateValue = results["txtK"]};
    if(results["cbxA"] == true) {this.dateValue = util.printd("dd-mmm-yyyy", new Date())};
    this.reqnumValue = results["txtL"];
    this.docnumberValue = results["txtM"];
    this.docrevValue = results["txtN"];
    description:
    name: "Issue Purpose Column",// Dialog box title
    elements:
    type: "cluster",
    name: "Purpose, Result and Next Issue",
    align_children: "align_left",
    elements:
    type: "view",
    align_children: "align_row",
    elements:
    name: "Issue Purpose",
    type: "static_text",
    char_width: 14,
    name: ":",
    type: "static_text",
    char_width: 1,
    type: "radio",
    item_id: "radA",
    group_id: "purp",
    name: "For Review (FR)",
    char_width: 14,
    type: "radio",
    item_id: "radB",
    group_id: "purp",
    name: "For Final (FN)",
    char_width: 14,
    type: "radio",
    item_id: "radC",
    group_id: "purp",
    name: "For Information (FI)" ,
    char_width: 14,
    type: "radio",
    item_id: "radD",
    group_id: "purp",
    name: "As Build (AB)" ,
    char_width: 14,
    type: "radio",
    item_id: "radE",
    group_id: "purp",
    name: "Not Applicable" ,
    type: "view",
    align_children: "align_row",
    elements:
    name: "Review Result Code",
    type: "static_text",
    char_width: 14,
    name: ":",
    type: "static_text",
    char_width: 1,
    type: "radio",
    item_id: "radF",
    group_id: "resu",
    name: "A Approved (A)",
    char_width: 14,
    type: "radio",
    item_id: "radG",
    group_id: "resu",
    name: "B Approved (B)",
    char_width: 14,
    type: "radio",
    item_id: "radH",
    group_id: "resu",
    name: "Not Accepted (N)" ,
    char_width: 14,
    type: "radio",
    item_id: "radI",
    group_id: "resu",
    name: "For Information (F)" ,
    char_width: 14,
    type: "radio",
    item_id: "radJ",
    group_id: "resu",
    name: "Not Applicable" ,
    type: "view",
    align_children: "align_row",
    elements:
                           name: "Next Issue Status ",
    type: "static_text",
    char_width: 14,
    name: ":",
    type: "static_text",
    char_width: 1,
    type: "radio",
    item_id: "radK",
    group_id: "next",
    name: "For Review (FR)",
    char_width: 14,
    type: "radio",
    item_id: "radL",
    group_id: "next",
    name: "For Final (FN)",
    char_width: 14,
    type: "radio",
    item_id: "radM",
    group_id: "next",
    name: "For Information (FI)" ,
    char_width: 14,
    type: "radio",
    item_id: "radN",
    group_id: "next",
    name: "As Build (AB)" ,
    char_width: 14,
    type: "radio",
    item_id: "radO",
    group_id: "next",
    name: "Not Applicable" ,
    type: "view",
    align_children: "align_row",
    elements:
                           name: "Resubmission Date",
    type: "static_text",
    char_width: 14,
    name: ":",
    type: "static_text",
    char_width: 1,
    type: "radio",
    item_id: "radP",
    group_id: "resub",
    name: "Within 2 weeks" ,
    char_width: 14,
    type: "radio",
    item_id: "radQ",
    group_id: " resub ",
    name: "In MDR" ,
    char_width: 14,
    type: "radio",
    item_id: "radR",
    group_id: " resub ",
    name: "Other" ,
    name: ":",
    type: "static_text",
    char_width: 1,
    item_id: "txtD",
    type: "edit_text",
    multiline: false,
    width: 308,
    height: 20                                             
    type: "cluster",
    name: "Responsible Dept. and person",
    align_children: "align_left",
    elements:
    type: "view",
    align_children: "align_row",
    elements:
    name: "Responsible Department",
    type: "static_text",
    char_width: 14,
    name: ":",
    type: "static_text",
    char_width: 1,
    item_id: "txtE",
    type: "edit_text",
    multiline: false,
    width: 100,
    height: 20
    name: "Responsible Person (Abbreviation)",
    type: "static_text",
    char_width: 19,
    name: ":",
    type: "static_text",
    char_width: 1,
    item_id: "txtF",
    type: "edit_text",
    multiline: false,
    width: 371,
    height: 20                                             
    type: "view",
    align_children: "align_row",
    elements:
    name: "Related Department #1",
    type: "static_text",
    char_width: 14,
    name: ":",
    type: "static_text",
    char_width: 1,
    item_id: "txtG",
    type: "edit_text",
    multiline: false,
    width: 100,
    height: 20
    name: "Related Person #1 (Abbreviation)",
    type: "static_text",
    char_width: 19,
    name: ":",
    type: "static_text",
    char_width: 1,
    item_id: "txtH",
    type: "edit_text",
    multiline: false,
    width: 371,
    height: 20                                             
    type: "view",
    align_children: "align_row",
    elements:
    name: "Related Department #2",
    type: "static_text",
    char_width: 14,
    name: ":",
    type: "static_text",
    char_width: 1,
    item_id: "txtI",
    type: "edit_text",
    multiline: false,
    width: 100,
    height: 20
    name: "Related Person #2 (Abbreviation)",
    type: "static_text",
    char_width: 19,
    name: ":",
    type: "static_text",
    char_width: 1,
    item_id: "txtJ",
    type: "edit_text",
    multiline: false,
    width: 371,
    height: 20                                             
    type: "cluster",
    name: "Document information",
    align_children: "align_left",
    elements:
    type: "view",
    align_children: "align_row",
    elements:
    name: "Date",
    type: "static_text",
    char_width: 14,
    name: ":",
    type: "static_text",
    char_width: 1,
    type: "check_box",
    item_id: "cbxA",
    name: "Today or",
    name: ":",
    type: "static_text",
    char_width: 1,
    item_id: "txtK",
    type: "edit_text",
    multiline: false,
    width: 189,
    height: 20
    type: "view",
    align_children: "align_row",
    elements:
    name: "Requisition Number",
    type: "static_text",
    char_width: 14,
    name: ":",
    type: "static_text",
    char_width: 1,
    item_id: "txtL",
    type: "edit_text",
    multiline: false,
    width: 300,
    height: 20                                             
    type: "view",
    align_children: "align_row",
    elements:
    name: "Document Number",
    type: "static_text",
    char_width: 14,
    name: ":",
    type: "static_text",
    char_width: 1,
    item_id: "txtM",
    type: "edit_text",
    variable_Name: "edit",
    multiline: false,
    width: 300,
    height: 20
    name: "Revision",
    type: "static_text",
    char_width: 3,
    name: ":",
    type: "static_text",
    char_width: 1,
    item_id: "txtN",
    type: "edit_text",
    multiline: false,
    width: 50,
    height: 20                                             
    type: "ok_cancel",
    ok_name: "Ok",
    cancel_name: "Cancel"
    //app.execDialog(dialog);
    if(event.source.forReal && (event.source.stampName == "#DXpvGqB1uiHTWNVyDOHTnC"))
      if ("ok" == app.execDialog(dialog))
    var cMsg = dialog.issuepurposeValue;
    event.value = "\n" + cMsg;
    event.source.source.info.reviewresultcode = cMsg;
    cMsg = "\n" + dialog.reviewresultcodeValue;
    this.getField("reviewresultcode").value = cMsg;
    event.source.source.info.nextissuestatus = cMsg;
    cMsg = "\n" + dialog.nextissuestatusValue;
    this.getField("nextissuestatus").value = cMsg;
    event.source.source.info.resubmissiondate = cMsg;
    cMsg = "\n" + dialog.resubmissiondateValue;
    this.getField("resubmissiondate").value = cMsg;
    event.source.source.info.respdept1 = cMsg;
    cMsg = "\n" + dialog.respdept1Value;
    this.getField("respdept1").value = cMsg;
    event.source.source.info.sigrespdept1 = cMsg;
    cMsg = "\n" + dialog.sigrespdept1Value;
    this.getField("sigrespdept1").value = cMsg;
    event.source.source.info.relateddept1 = cMsg;
    cMsg = "\n" + dialog.relateddept1Value;
    this.getField("relateddept1").value = cMsg;
    event.source.source.info.sigrelateddept1 = cMsg;
    cMsg = "\n" + dialog.sigrelateddept1Value;
    this.getField("sigrelateddept1").value = cMsg;
    event.source.source.info.relateddept2 = cMsg;
    cMsg = "\n" + dialog.relateddept2Value;
    this.getField("relateddept2").value = cMsg;
    event.source.source.info.sigrelateddept2 = cMsg;
    cMsg = "\n" + dialog.sigrelateddept2Value;
    this.getField("sigrelateddept2").value = cMsg;
    event.source.source.info.date = cMsg;
    cMsg = "\n" + dialog.dateValue;
    this.getField("date").value = cMsg;
    event.source.source.info.reqnum = cMsg;
    cMsg = "\n" + dialog.reqnumValue;
    this.getField("reqnum").value = cMsg;
    event.source.source.info.docnumber = cMsg;
    cMsg = "\n" + dialog.docnumberValue;
    this.getField("docnumber").value = cMsg;
    event.source.source.info.docrev = cMsg;
    cMsg = "\n" + dialog.docrevValue;
    this.getField("docrev").value = cMsg;

  • IPhoto will not open with pictures when I click on the icon.  It does show that it is open on top toolbar. What happened to my photos?

    iPhoto will not open with pictures when I click on the icon.  It does show that it is open on top toolbar. What happened to my photos?

    Did you run any updaters recently, i.e. like just before this happened?  Try this first fix: make a duplicate copy of the library and try the following:
    1 - delete  the iPhoto preference file, com.apple.iPhoto.plist, that resides in your Home/Library/Preferences folder. 
    2 - delete iPhoto's cache file,, Cache.dbt, that is located in your Home/Library/Caches/com.apple.iPhoto folder. 
    3 - reboot, launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences..
    OT

  • I had on my desk top pc (a vista os) a version of FireFox that the book marks where listed in the book tool bar tab and the "book tool" was able to show all my favs and there was a scrol bar on the right side of the top right side. I would like very much

    I had on my desk top PC (a vista OS) a version of FireFox that the book marks where listed in the book tool bar tab and the "book tool" was able to show all my favs and there was a scroll bar on the right side of the top right side. I would like very much to turn it on in the Laptop I just bought and am having a fit trying to figure out all the differences,.I very much like this function; however, I am now using win 7 which in and of itself is difficult to figure out troubles when they occur such as if the MSN Bing program opens a video window while I am playing, the media center will lock up, or if I am listening to BBradio.org and click on lestening to one of the pastors the laptop will show static on the screen and all you hear is static like you just went to the twilight zone.
    == This happened ==
    Not sure how often
    == unpredictable

    To attempt a new chat session...
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    http://helpx.adobe.com/x-productkb/global/service1.html

  • The crop tool in my tool bar is not showing up. Any ideas why this is? Please Help

    The crop tool in my tool bar is not showing up. Any ideas why this is? Please Help

    It's the 3rd one on Photoshop standard.  As Curt implies, each little icon position has several possibilities you can display, allowing you some customization of your Tools panel.  Click and hold the mouse button to see each of the choices.
    -Noel

Maybe you are looking for