Template attach/detach

I have a Fireworks menu that I would like to be part of a
template so that it can be auto-updated, etc. However, I want each
page of the website to have the 'on' state of the menu. Is it
possible to detach the page from the template, edit (change to 'on'
state) and reattach, or make part of the template again, so that it
auto updates?

> Murray, Do you follow the projectseven CSS newgroup
forum?
Yes.
> don't know where to look for CSS commenting that
> you mentioned.
Look in the CSS file....
> how to tweak the css to have it look decent
Define "decent" please.
> need the Categories to be centered
#p7PMnav li {
list-style-type: none;
margin: 0 1px 0 0;
padding: 0;
}Add 'text-align:center;' to this rule.
> spaced properly
What does that mean?
But you might want to also add this to the styles -
#p7PMnav ul li a {text-align:left; }
That will keep the text in the submenus aligned left....
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"linkot" <[email protected]> wrote in
message
news:eai9fv$2oj$[email protected]..
> Murray, Do you follow the projectseven CSS newgroup
forum? On Bonnie's
> suggestion, I posted to the proper forum for help with
the PMM. I have a
> basic
> menu but can't figure out how to tweak the css to have
it look decent.
> Nothing
> fancy here, just a plain menu but I need the Categories
to be centered and
> spaced properly and I want to move the drop-down, to the
left.
>
> I read the documentation but don't know where to look
for CSS commenting
> that
> you mentioned. Menu is at
>
http://www.buenavistamanzanillo.com/menu.html
> Thanks, Linda
>

Similar Messages

  • Why not attach/detach in place?

    Calls to makePersistent persist objects in place, but attach/detach calls make copies. Why is there no functionality to attach/detach in place?

    Hello,
    Try clear your recent history:
    *[https://support.mozilla.org/kb/remove-recent-browsing-search-and-download-history Clear recent history]
    Check if this happens in safe mode:
    *[https://support.mozilla.org/kb/troubleshoot-firefox-issues-using-safe-mode Firefox in safe mode]
    Verify if your plugins are updated:
    *[https://www.mozilla.org/en-US/plugincheck/ Plugin check]
    Try go to '''about:config''' and check if this option '''plugin.state.java''' is seted to '''true'''
    *[http://kb.mozillazine.org/About:config about:config]

  • Attach/Detach suborder

    Hello Friends,
    Is there a way to attach an existing order to another order as a suborder?
    Also, is there a way to detach a sub-order from the superior order?
    I know this is available in IS-U (transaction IW40). Is there a way to get these functions in non-utility clients?

    All,
    In ISU there is a facility in IW40 to attach/detach orders. There are 3 buttons available:
    Create sub order (function code ISU_CREOR)
    Attach Order (function code ISU_INSOR)
    Detach Order (function code ISU_CUTOR)
    These are part of switch ISU_AWM.
    I don't know why these aren't available in the standard software.
    Maybe create an OSS Message to SAP to ask why??
    PeteA

  • Attaching/Detaching libraries with Java API

    Hello,
    In my forms (Forms10g), sometimes, libraries had been attached in lower case although files are in upper case. This causes compilation errors on UNIX systems.
    I'm trying to detach these libraries with Java APIs and then reattach them in upper case.
    But I get an error when I want to save the module.
    Here is my code :
    public class UpperPll {
         public UpperPll (String formName) {
              try
                   FormModule form = FormModule.open("C:/AttachPll/" + formName);
                   System.out.println("Form Name is " + form.getName());
                   JdapiIterator AttachPll = form.getAttachedLibraries();
                   while(AttachPll.hasNext())
                        try
                             JdapiObject jo = (JdapiObject)AttachPll.next();
                             System.out.println(jo.getName());
                             if (jo.getName().toLowerCase().equals(jo.getName()))
                                  AttachedLibrary.find(form,jo.getName().toUpperCase()).detach();
                                  System.out.println(jo.getName().toUpperCase());
                                  new AttachedLibrary(form,jo.getName().toUpperCase());
                        catch (JdapiIllegalStateException jdise)
                             jdise.printStackTrace();
                   form.save("C:/AttachPll/New/" + form.getName() + ".fmb");
                   Jdapi.shutdown();
              catch (JdapiException jde)
                   jde.printStackTrace();
         public static void main (String[] args) {
              try {
                   FileReader r = new FileReader( "C:/AttachPll/listemodule.txt" );
                   BufferedReader br = new BufferedReader( r );
                   try {
                        String module;
                        while ( ( module = br.readLine() ) != null ) {
                             new UpperPll(module);
                   } finally {
                        r.close();
              } catch (FileNotFoundException fnfe) {
                   fnfe.printStackTrace();
              } catch (IOException ioe) {
                   ioe.printStackTrace();
    And here are the errors I get :
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x2FBBDCB
    Function=icobad+0xB
    Library=C:\DevSuiteHome_1\bin\frmcom.dll
    Current Java thread:
         at oracle.forms.jdapi.BaseAPI._jni_save_form(Native Method)
         at oracle.forms.jdapi.FormModule.save(Unknown Source)
         at UpperPll.<init>(UpperPll.java:39)
         at UpperPll.main(UpperPll.java:55)
    Dynamic libraries:
    0x00400000 - 0x0040B000      C:\DevSuiteHome_1\jdk\bin\javaw.exe
    0x7C910000 - 0x7C9C7000      C:\WINDOWS\system32\ntdll.dll
    0x7C800000 - 0x7C904000      C:\WINDOWS\system32\kernel32.dll
    0x77DA0000 - 0x77E4C000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77E50000 - 0x77EE1000      C:\WINDOWS\system32\RPCRT4.dll
    0x77D10000 - 0x77DA0000      C:\WINDOWS\system32\USER32.dll
    0x77EF0000 - 0x77F37000      C:\WINDOWS\system32\GDI32.dll
    0x77BE0000 - 0x77C38000      C:\WINDOWS\system32\MSVCRT.dll
    0x62DC0000 - 0x62DC9000      C:\WINDOWS\system32\LPK.DLL
    0x753C0000 - 0x7542B000      C:\WINDOWS\system32\USP10.dll
    0x08000000 - 0x08139000      C:\DevSuiteHome_1\jdk\jre\bin\client\jvm.dll
    0x76AE0000 - 0x76B0F000      C:\WINDOWS\system32\WINMM.dll
    0x6BD00000 - 0x6BD0D000      C:\WINDOWS\system32\SYNCOR11.DLL
    0x10000000 - 0x10007000      C:\DevSuiteHome_1\jdk\jre\bin\hpi.dll
    0x00940000 - 0x0094E000      C:\DevSuiteHome_1\jdk\jre\bin\verify.dll
    0x00950000 - 0x00969000      C:\DevSuiteHome_1\jdk\jre\bin\java.dll
    0x00970000 - 0x0097D000      C:\DevSuiteHome_1\jdk\jre\bin\zip.dll
    0x02F60000 - 0x02F6F000      C:\DevSuiteHome_1\BIN\frmjapi.dll
    0x02F70000 - 0x02F8C000      C:\DevSuiteHome_1\bin\frmd2f.dll
    0x663D0000 - 0x66414000      C:\DevSuiteHome_1\bin\CA.dll
    0x66340000 - 0x6636A000      C:\DevSuiteHome_1\bin\mmc.dll
    0x64CA0000 - 0x64CB1000      C:\DevSuiteHome_1\bin\UTL.dll
    0x60730000 - 0x607DC000      C:\DevSuiteHome_1\bin\oracore10.dll
    0x608D0000 - 0x60963000      C:\DevSuiteHome_1\bin\oranls10.dll
    0x62B40000 - 0x62B53000      C:\DevSuiteHome_1\bin\oraunls10.dll
    0x60C40000 - 0x60C47000      C:\DevSuiteHome_1\bin\orauts.dll
    0x719F0000 - 0x71A07000      C:\WINDOWS\system32\WS2_32.dll
    0x719E0000 - 0x719E8000      C:\WINDOWS\system32\WS2HELP.dll
    0x774A0000 - 0x775DD000      C:\WINDOWS\system32\ole32.dll
    0x616B0000 - 0x61891000      C:\DevSuiteHome_1\bin\oraclient10.dll
    0x62B60000 - 0x62B66000      C:\DevSuiteHome_1\bin\oravsn10.dll
    0x60D30000 - 0x60DE8000      C:\DevSuiteHome_1\bin\oracommon10.dll
    0x60300000 - 0x60720000      C:\DevSuiteHome_1\bin\orageneric10.dll
    0x629C0000 - 0x629D2000      C:\DevSuiteHome_1\bin\orasnls10.dll
    0x62B80000 - 0x62C86000      C:\DevSuiteHome_1\bin\oraxml10.dll
    0x02F90000 - 0x02FA1000      C:\WINDOWS\system32\MSVCIRT.dll
    0x607E0000 - 0x608CC000      C:\DevSuiteHome_1\bin\oran10.dll
    0x62000000 - 0x6202C000      C:\DevSuiteHome_1\bin\oranl10.dll
    0x62030000 - 0x62042000      C:\DevSuiteHome_1\bin\oranldap10.dll
    0x62090000 - 0x62184000      C:\DevSuiteHome_1\bin\orannzsbb10.dll
    0x61E10000 - 0x61E52000      C:\DevSuiteHome_1\bin\oraldapclnt10.dll
    0x61F30000 - 0x61F47000      C:\DevSuiteHome_1\bin\orancrypt10.dll
    0x71A10000 - 0x71A1A000      C:\WINDOWS\system32\WSOCK32.dll
    0x76D10000 - 0x76D29000      C:\WINDOWS\system32\iphlpapi.dll
    0x770E0000 - 0x7716C000      C:\WINDOWS\system32\OLEAUT32.dll
    0x621A0000 - 0x621D7000      C:\DevSuiteHome_1\bin\oranro10.dll
    0x621F0000 - 0x621FC000      C:\DevSuiteHome_1\bin\orantcp10.dll
    0x61F70000 - 0x61F76000      C:\DevSuiteHome_1\bin\oranhost10.dll
    0x61F20000 - 0x61F26000      C:\DevSuiteHome_1\bin\orancds10.dll
    0x62210000 - 0x62216000      C:\DevSuiteHome_1\bin\orantns10.dll
    0x60970000 - 0x60C31000      C:\DevSuiteHome_1\bin\orapls10.dll
    0x62500000 - 0x62507000      C:\DevSuiteHome_1\bin\oraslax10.dll
    0x627B0000 - 0x628B3000      C:\DevSuiteHome_1\bin\oraplp10.dll
    0x618B0000 - 0x61905000      C:\DevSuiteHome_1\bin\orahasgen10.dll
    0x622B0000 - 0x622E6000      C:\DevSuiteHome_1\bin\oraocr10.dll
    0x622F0000 - 0x62315000      C:\DevSuiteHome_1\bin\oraocrb10.dll
    0x6FEE0000 - 0x6FF34000      C:\WINDOWS\system32\NETAPI32.dll
    0x76BA0000 - 0x76BAB000      C:\WINDOWS\system32\PSAPI.DLL
    0x62A80000 - 0x62AF6000      C:\DevSuiteHome_1\bin\orasql10.dll
    0x662F0000 - 0x66320000      C:\DevSuiteHome_1\bin\mmi.dll
    0x64F10000 - 0x64F21000      C:\DevSuiteHome_1\bin\UIIM.dll
    0x64CE0000 - 0x64DBD000      C:\DevSuiteHome_1\bin\UIW.dll
    0x64CD0000 - 0x64CD7000      C:\DevSuiteHome_1\bin\UTC.dll
    0x64CC0000 - 0x64CC9000      C:\DevSuiteHome_1\bin\UTJ.dll
    0x72F50000 - 0x72F76000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x58B50000 - 0x58BE7000      C:\WINDOWS\system32\COMCTL32.dll
    0x64ED0000 - 0x64EF6000      C:\DevSuiteHome_1\bin\UIOLE.dll
    0x76340000 - 0x7638A000      C:\WINDOWS\system32\comdlg32.dll
    0x77F40000 - 0x77FB6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x7C9D0000 - 0x7D1F3000      C:\WINDOWS\system32\SHELL32.dll
    0x64AD0000 - 0x64C05000      C:\DevSuiteHome_1\bin\VGS.dll
    0x64E30000 - 0x64E93000      C:\DevSuiteHome_1\bin\UIREM.dll
    0x659A0000 - 0x659EE000      C:\DevSuiteHome_1\bin\ROS.dll
    0x66250000 - 0x6627E000      C:\DevSuiteHome_1\bin\mmw.dll
    0x662A0000 - 0x662B0000      C:\DevSuiteHome_1\bin\mmv.dll
    0x73AA0000 - 0x73AB7000      C:\WINDOWS\system32\AVIFIL32.dll
    0x77BB0000 - 0x77BC5000      C:\WINDOWS\system32\MSACM32.dll
    0x75BA0000 - 0x75BC1000      C:\WINDOWS\system32\MSVFW32.dll
    0x662C0000 - 0x662DF000      C:\DevSuiteHome_1\bin\mms.dll
    0x66810000 - 0x66A2B000      C:\DevSuiteHome_1\bin\DE.dll
    0x627A0000 - 0x627AF000      C:\DevSuiteHome_1\bin\oraplc10.dll
    0x64F50000 - 0x64F66000      C:\DevSuiteHome_1\bin\UICC.dll
    0x64FB0000 - 0x64FDA000      C:\DevSuiteHome_1\bin\UCOL.dll
    0x02FB0000 - 0x030CA000      C:\DevSuiteHome_1\bin\frmcom.dll
    0x66380000 - 0x66389000      C:\DevSuiteHome_1\bin\mma.dll
    0x64FF0000 - 0x65003000      C:\DevSuiteHome_1\bin\UAT.dll
    0x66220000 - 0x6623C000      C:\DevSuiteHome_1\bin\nn.dll
    0x64F70000 - 0x64F94000      C:\DevSuiteHome_1\bin\UIA.dll
    0x64F30000 - 0x64F45000      C:\DevSuiteHome_1\bin\UIDC.dll
    0x030D0000 - 0x03194000      C:\DevSuiteHome_1\bin\frmdig.dll
    0x031A0000 - 0x0324D000      C:\DevSuiteHome_1\bin\frmdug.dll
    0x66210000 - 0x66215000      C:\DevSuiteHome_1\bin\obs.dll
    0x77390000 - 0x77492000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x5B090000 - 0x5B0C8000      C:\WINDOWS\system32\uxtheme.dll
    0x74690000 - 0x746DB000      C:\WINDOWS\system32\MSCTF.dll
    0x76BE0000 - 0x76C0E000      C:\WINDOWS\system32\WINTRUST.dll
    0x779E0000 - 0x77A76000      C:\WINDOWS\system32\CRYPT32.dll
    0x77A80000 - 0x77A92000      C:\WINDOWS\system32\MSASN1.dll
    0x76C40000 - 0x76C68000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x72C70000 - 0x72C79000      C:\WINDOWS\system32\wdmaud.drv
    0x72C60000 - 0x72C68000      C:\WINDOWS\system32\msacm32.drv
    0x77BA0000 - 0x77BA7000      C:\WINDOWS\system32\midimap.dll
    0x5D3F0000 - 0x5D491000      C:\WINDOWS\system32\DBGHELP.dll
    0x77BD0000 - 0x77BD8000      C:\WINDOWS\system32\VERSION.dll
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 35K [0x10010000, 0x100b0000, 0x104f0000)
    eden space 512K, 6% used [0x10010000, 0x10017c90, 0x10090000)
    from space 64K, 7% used [0x10090000, 0x10091348, 0x100a0000)
    to space 64K, 0% used [0x100a0000, 0x100a0000, 0x100b0000)
    tenured generation total 1408K, used 122K [0x104f0000, 0x10650000, 0x14010000)
    the space 1408K, 8% used [0x104f0000, 0x1050e930, 0x1050ea00, 0x10650000)
    compacting perm gen total 4096K, used 1642K [0x14010000, 0x14410000, 0x18010000)
    the space 4096K, 40% used [0x14010000, 0x141aaac8, 0x141aac00, 0x14410000)
    Local Time = Wed Apr 12 10:35:49 2006
    Elapsed Time = 5
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_06-b03 mixed mode)
    # An error report file has been saved as hs_err_pid3184.log.
    # Please refer to the file for further information.
    Can anyone help me ?
    Message was edited by:
    dbouchier

    We do something very simular. We rename everything to lowercase for the same reasons. I've pasted a snippet of the code we're using at the end of this post.
    To get the full source code of our converter have a look at http://www.oratransplant.nl/2005/05/30/custom-built-forms-migration-assistant/#comment-642
    Here is the code snippet:
    while (attachedLibs.hasNext()) {
    AttachedLibrary attachedLib = (AttachedLibrary)attachedLibs.next();
    String attachedLibLocation = attachedLib.getLibraryLocation();
    out("Found attached library " + attachedLibLocation, logLevel,
    false);
    if (attachedLib.getName().equalsIgnoreCase("obsolete_forms6")) {
    obsoleteAttached = true;
    if (attachedLib.getName().equalsIgnoreCase("webreports")) {
    webReportsAttached = true;
    // converted name of attached lib to lowercase
    if ((!attachedLibLocation.equals(attachedLibLocation.toLowerCase())) &&
    lowerLib) {
    out(attachedLib,
    "Converting filename to lowercase (" + attachedLibLocation.toLowerCase() +
    ")", logLevel + 1, true);
    attachedLibLocation = attachedLibLocation.toLowerCase();
    pllChanged = true;
    // attachedLibLocation = attachedLibLocation.toUpperCase();
    pldText.append(".attach LIBRARY " + attachedLibLocation +
    " END NOCONFIRM\n");
    out("Re-attaching library " + attachedLibLocation, logLevel + 1,
    false);
    }

  • Outlook .oft template attachment

    I am using a mac with outlook for mac, my company uses outlook .oft templates for certain HR forms which when I try to open just creates a .oft attachment which cannot be opened. It should open as a template within an email to send. Can anyone help?

    Hi,
    please try the following things:
    Clear the Form cache (File/Options/Advanced/Custom Forms/Manage Forms/Clear Cache)
    If you are the only user with the problem, create a new Mailprofile. If everybody has the problem it doubt that it helps. But you can try of course.
    this is also happening in outlook 2013...
    I recently had to have my pc reimaged... new standard image has office suite is 2013...
    I am using my templates imported from outlook 2007...
    clearing form cache and making a new profile did not work...
    date and time on .oft file update when I try to save 'changes' to the template but it does not change size or content...
    when opening the template and modifying the text the receiver does not get the updated information only the old template password for November that was on the template when imported...
    I have multiple templates that will need to have text modified on them before I send them - I used my password template to send password reset information and the recipient e-mailed back how do you put letters and $ into a phone voicemail account [numbers
    only]....  This is when I found out the template was sent not the updated information...  cc'd myself on the next use of the template to make sure I did not fat finger the 1st one...  The updated password information did not send...
    Password template majority of the body 'text' stays the same ... disclaimer, security notice etc...  just the password gets updated and my signature gets auto added...
    I did not use the form creator to make my templates - they were created in outlook 2007....
    this really looks like a bug...
    these are templates not forms - I also tried creating a new template .oft - saved it - opened it - edited it and saved [over wrote] the 'new' template - opened the update still had 'new' text not updated text...
    windows 7 32bit - 2GB ram - Office 2013 Pro Plus v15.0.4420.1017

  • Cannot attach detached object

    I am writing a J2EE application that allows a user to modify some data
    retrieved from the database (via the server) and send it back to the
    server.
    In the following kpm is a private class instance of
    KodoPersistenceManager. The class is a singleton so,
    kpm = (KodoPersistenceManager) pmf.getPersistenceManager();
    kpm.setNontransactionalWrite(true);
    is done within the constructor.
    I do the following,
    Collection rtn = new LinkedList();
    Object obj = null;
    Extent e = kpm.getExtent(cls, true);
    Iterator i = e.iterator();
    while (i.hasNext())
    rtn.add(i.next());
    kpm.retrieveAll(rtn);
    kpm.detachAll(rtn);
    e.closeAll();
    return rtn;
    One of the objects is modified and then send back where the following code
    is invoked,
    kpm.currentTransaction().begin();
    kpm.attach(currency);
    kpm.currentTransaction().commit();
    However I get,
    kodo.util.UserException: An object with oid "416.0" already exists in this
    PersistenceManager; another cannot be persisted.
    FailedObject:com.lehman.clientseg.data.staticdata.Currency@27538
    at
    kodo.runtime.PersistenceManagerImpl.makePersistentInternal(PersistenceManagerImpl.java:1943)
    at
    kodo.runtime.PersistenceManagerImpl.makePersistent(PersistenceManagerImpl.java:1881)
    at
    kodo.runtime.AttachManager.makePersistent(AttachManager.java:383)
    at kodo.runtime.AttachManager.attach(AttachManager.java:250)
    at kodo.runtime.AttachManager.attach(AttachManager.java:54)
    at
    kodo.runtime.PersistenceManagerImpl.attach(PersistenceManagerImpl.java:3548)
    When kpm.attach() is called.
    Any ideas what I'm doing wrong?
    Thanks,
    Steve

    Stephen-
    kpm.retrieveAll(rtn);
    kpm.detachAll(rtn);
    e.closeAll();
    return rtn;detachAll returns the detached copies; it does not detach in-place. Do
    you shoul be doing something like:
    kpm.retrieveAll(rtn);
    Collection detached = kpm.detachAll(rtn);
    e.closeAll();
    return detached;
    In article <ckm20f$jqr$[email protected]>, Stephen Sweeney wrote:
    I am writing a J2EE application that allows a user to modify some data
    retrieved from the database (via the server) and send it back to the
    server.
    In the following kpm is a private class instance of
    KodoPersistenceManager. The class is a singleton so,
    kpm = (KodoPersistenceManager) pmf.getPersistenceManager();
    kpm.setNontransactionalWrite(true);
    is done within the constructor.
    I do the following,
    Collection rtn = new LinkedList();
    Object obj = null;
    Extent e = kpm.getExtent(cls, true);
    Iterator i = e.iterator();
    while (i.hasNext())
    rtn.add(i.next());
    kpm.retrieveAll(rtn);
    kpm.detachAll(rtn);
    e.closeAll();
    return rtn;
    One of the objects is modified and then send back where the following code
    is invoked,
    kpm.currentTransaction().begin();
    kpm.attach(currency);
    kpm.currentTransaction().commit();
    However I get,
    kodo.util.UserException: An object with oid "416.0" already exists in this
    PersistenceManager; another cannot be persisted.
    FailedObject:com.lehman.clientseg.data.staticdata.Currency@27538
    at
    kodo.runtime.PersistenceManagerImpl.makePersistentInternal(PersistenceManagerImpl.java:1943)
    at
    kodo.runtime.PersistenceManagerImpl.makePersistent(PersistenceManagerImpl.java:1881)
    at
    kodo.runtime.AttachManager.makePersistent(AttachManager.java:383)
    at kodo.runtime.AttachManager.attach(AttachManager.java:250)
    at kodo.runtime.AttachManager.attach(AttachManager.java:54)
    at
    kodo.runtime.PersistenceManagerImpl.attach(PersistenceManagerImpl.java:3548)
    When kpm.attach() is called.
    Any ideas what I'm doing wrong?
    Thanks,
    Steve
    Marc Prud'hommeaux
    SolarMetric Inc.

  • Forms 6i: Dynamically attach/detach LOV

    Hi,
    Is there a way to dynamically attach or detach an LOV to an item at run-time?
    Thanks.

    Yes. you are right. I thought about set the lov_name to null but
    I only looked the help says
    "LOV_NAME Specify the VARCHAR2 name of an LOV to be associated with the given item. If the LOV name does not exist, you will get an error message. "
    but did not do my own test.
    Hedy

  • Dreamweaver template attach error

    Hello all,
    I have several different pages reading from the same template
    file which is located in the templates folder with the website
    directory. After i have modified the template file to how i need, i
    then inturn proceed to update it on the other pages but this is
    when the error occurs. I open up the index file and go to modify
    }}} templates }}} update current page, then the error message i
    recieve is ((error accessing file "templates`web-data-2006.dwt";
    bad file path (error code 3) )) does anyone know what this means or
    know how i can fix this??? The link to the file seems to be fine as
    does the name of the file
    Any suggestions would be much appreciated.
    Regards
    Pokerflat

    Show us the page, please.
    You are doing this inside of DW, right? And the Template is
    in the
    Templates folder that is in the root of the current site,
    right?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "pokerflat" <[email protected]> wrote in
    message
    news:evh99l$q65$[email protected]..
    > Hello all,
    >
    > I have several different pages reading from the same
    template file which
    > is
    > located in the templates folder with the website
    directory. After i have
    > modified the template file to how i need, i then inturn
    proceed to update
    > it on
    > the other pages but this is when the error occurs. I
    open up the index
    > file and
    > go to modify }}} templates }}} update current page, then
    the error message
    > i
    > recieve is ((error accessing file
    "templates`web-data-2006.dwt"; bad file
    > path
    > (error code 3) )) does anyone know what this means or
    know how i can fix
    > this??? The link to the file seems to be fine as does
    the name of the file
    >
    > Any suggestions would be much appreciated.
    >
    > Regards
    >
    > Pokerflat
    >

  • JApplet Attach Detach ?

    I want to have an applet have buttons so I can dislodge it from the web page. And then a button to reattach it.. how can I do this?
    http://www.dogfeathers.com/java/spirals.html
    Theres an example.
    Thanks,
    Mike

    Create a JDialog. Add the panel, from the applet, to the dialog and show the dialog. Then when you close the dialog you take the panel from the dialog and add it back to the applet.

  • Template is not attached to AP Check Printing report (XML Publisher)

    Hi Guru,
    I have implemented XML publisher version of AP check Print report and did all the setups. When we make the payment in payables it automatically submits check print report. The report is completed successfully, but no output.
    When I check View details button noticed that template layout is not attached to the report.
    Please do the needful.
    Thank in Advance,
    Venkat.

    Hi,
    The following are the Instance details
    OS : OEL5
    Database: 11g
    EBS : 11.5.10.2
    I have completed all the setups for the report and I am able to see the template attached to the request for other reports where we submit them in SRS window.
    But "AP check Print report" submits automatically through the form while making the payment against supplier in AP.
    Thanks in Advance,
    Venkat.

  • Help Needed---Opening Attachments/Templates of a BP in non-editable mode

    Hi...
    I am new to CRM...
    How do we open a document/Template attached to a BP in non-editable mode in web UI?
    Helpful Answers would be rewarded.
    Thanks
    Swapna

    Hi...
    I am new to CRM...
    How do we open a document/Template attached to a BP in non-editable mode in web UI?
    Helpful Answers would be rewarded.
    Thanks
    Swapna

  • Removing Headers - No Template

    Hello,
    I inherited a RoboHelp project, orginally developed in X5.
    The author hard-coded the header information (Name of Book >
    Topic Title) with no template. I would like to remove the header
    information and use the Breadcrumbs feature.
    The project has approximately 600 topics, removing the
    headers individually is time-consuming. How I can globally remove
    all the headers? I thought about creating a new template, attaching
    the topics and then remove the header from the template. My concern
    with this option is loosing the Return to Top functionality, there
    is a hyperlink in the footer to the top of the page.
    Your assistance is welcomed.

    Hi Chris
    I think you will struggle a bit with this, as RoboHelp is
    probably trying to be ever so helpful and attempting to calculate a
    relative path based on the folder.
    One thing you may wish to consider is creating a small little
    JavaScript that you can insert. The script would simply perform a
    "Write in" of the code. Because it would be happening via script,
    RoboHelp should then leave it as is. I'm not certain of this next
    part, but you might even notice that RoboHelp stops being irritable
    when you work with templates. Maybe some of that IBS is stemming
    from RoboHelp attempting to calculate those paths.
    Just thinking out loud here... Rick

  • Custom Template for Third Party Balance Summary Report(Java type executable

    Hi Al,l we have a requirment to have a layout with some of the fields from
    Third Party Balance Summary Report( Which is a Java type executable and
    Data definition has Data Template attached(.xml)).
    I tried in below way.
    Coppied the Third Party Balance Summary Report program with same application and parameters
    with. Then defined a Datadefinition with my concurrent prog short name
    attached the same standard .xml file(Not sure what it is) and developed a custom template with
    a custom rtf(excel output type), and submitted the program
    the output is generated in excel but my custom .rtf layout is not getting applied
    rather it is showing same layout as in standard.
    Some thing I am missing here or else it is not the way of changing the
    template.
    If any one know how to do this please let me know.
    My client want only some files from the standard report(no need of new fileds)
    with output type xls.
    Thanks in Advance.
    The same content is posted in Custom Template for Third Party Balance Summary Report(Java type executable sorry for duplicating the thread, just for increase the visibility for my issue I did this.

    I gave up on using a different font or figuring out if I could use Times New Roman's built-in fractions visible in Font Book (as unicodes) and did a work-around based on Michael Wasley's tips in this discussion.
    https://discussions.apple.com/message/11622842#11622842
    I adapted it however and think it looks a little better.
    Font: Times New Roman 12 point
    I used the fraction bar in 12-point (Shift-Option-1) for automatic kerning.
    For the numerator, I changed the font style to superior (12-point).
    For the denominator, I changed the font style to subscript (Shift-Command-hyphen) and reduced the font size to half, or 6-point using the short-cut Shift-Command-<.
    When the fractions occured in my footnotes (9-point), I used 4-point in the denominator; 10- and 11-point, I used 5-point in the denominator. This seemed to produce the best result when printing.
    Thank you, Michael.
    -Dottie

  • Wanted To Channge The Standsrd Purchase Order Template with Customized Temp

    Hi ALL,
    I m using oracle 11.5.10.2. I want to change the template attached with the Standard Purchase Order(PO_STANDARD_XSLFO) which is in XSL-FO Formatt.I want to use my customized template for printing Purchase order.I attached one template with the same Data definition which the standard template is having.
    But still it is taking the standard template not the customized one. Can u tell me how i can attch the customized template with the standard Purchase Order. And one thing more if i want to update the exisiting Standard template then how i can update it bcoz the update is disabled for that template.
    Thanx
    Ravi

    Hi Klause,
    Thanx, for ur Reply. I did the same thing.....i copied the xsl-fo for standard template and i just removed the braces from there, which was for printing purpose only. this is the change what i did....
    <fo:inline xsl:use-attribute-sets="legal_details_style">
    <xsl:value-of select="TOTAL_AMOUNT" />
    <fo:leader leader-pattern="space" leader-length="2.0pt" />
    ( --------------i removed this brace
    <xsl:value-of select="CURRENCY_CODE" />
    ) --------------i removed this brace
    </fo:inline>
    and the rest is similar to the standard template.. But it has given me that error....
    Error while generating the PDForacle.apps.xdo.XDOException genDoc() : Exceptionjava.lang.Exception: Error while generating PDF :null java.lang.Exception: Error while generating PDF :null java.lang.Exception: Error while generating PDF :null at oracle.apps.po.communicate.PoGenerateDocument.genDoc(PoGenerateDocument.java:2084) at oracle.apps.po.communicate.PoGenerateDocumentCP.runProgram(PoGenerateDocumentCP.java:302) at oracle.apps.fnd.cp.request.Run.main(Run.java:148)
    Thts the error...which i m getting..... Can u help me out.....
    Thanx
    Ravi

  • DW & BBEdit template issues

    Hi there,
    I'm trying the integration between Dreamweaver (CS4) and BBEdit 9 for the first time, and I largely work on files in DW with templates attached that have large chunks of un-editable sections (grayed out).
    First, I noticed that once you launch BBEdit from within DW, you lose any indication of what is editable vs non-editable.  Do you know of any way within BBEdit's preferences settings to retain what DW marks as un-editable regions?
    Secondly (the real issue), if I make no changes to the open file within BBEdit and simply switch back to DW, I get the following warning every single time: "You have made changes to code that is not marked as editable.  If you retain those changes, they will be lost the next time you apply a template update to this file. Do you want to retain the changes until then?"
    I have verified that no changes ever occur by 'retaining' the changes in response to the above dialog box, doing a "save as..." on the file, and then using BBEdit to compare that file to the original.  No difference.  It seems that the mere act of launching the external editor and switching back to DW triggers DW to think that something has been modified.  This defeats the whole purpose of using BBEdit on files with templates because I need and want to know when an actual (accidental) change has been made to an un-editable region within BBEdit. But if it happens every single time, then it becomes a useless warning.
    Any advice or help would be much appreciated!
    Thanks,
    Dave

    I have a site with 2 master templates and a total of 39 child pages. One of the templates was actually created from the first master template.
    In other words, you have nested templates?  That's unfortunate.
    Can you post a link to one of the pages, please?

Maybe you are looking for

  • FCP Capturing Aliasing Issues

    I am having issues capturing footage of my PV-GS500. I recently moved from Adobe Premiere Pro to FCS, and I did not have this problem whatsoever capturing clean footage from this same camera. I am on a Macbook Pro 2gb DDR2, 2.33ghz Core2Duo. My captu

  • Photosmart 7520 won't print color

    I just purchased my Photosmart 7520 tonight.  I can not get the color or photo black cartridge to print.  The ink levels are showing as dropping but the paper/photo paper comes out blank!  I can print a plain black & white document with no color, but

  • How do I attach photo files to email message in iPhoto '11?

    Apple says, "If you want recipients to be able to use the photos you send, rather than simply view them, you can attach the photo files to your email message. (BUT HOW?) Recipients can then download the photos from the email message and print them, u

  • Ultrasearch db table search not working

    Hi, I am tring to configure ultrasearch 1.0.* that comes with Oracle DB 9.0.0.*; I succefully crawled, indexed and getting result on files. but I am not getting any search result for DB tables even if the scheduler crawls DB tables, always it shows 1

  • LabVIEW Video Waveform Source from Video Test Image for Multisim simulation

    Hi, I want to simulate a video amplifier circuit in Multisim. I need a Composite Video Signal Source for feeding the input to the amplifier. In one of the application note I saw that LabVIEW can be used to create Video Waveform Source from Video Test