Developing InDesign docs for both print and web

I develop InDesign documents for offset printing but now the organisation wants to drag itself into the 21st century by also putting these same documents up on the web (as interactive web pages that respond to user input). I am looking for a broad outline of the best way to tackle this, just so that I don't waste too much time trying to learn the wrong technology or the wrong software.
I have started to tag my documents with XML, so I am thinking that the route to the web is from InDesign to XML then via XSLT or CSS to XHTML. Is that the best and/or only way to do it? I assume DreamWeaver will also feature in the equation at some point.
These documents are test questions. They are pretty simple. All the paras will have para styles but there will be some overrides of the font like bold, italic, underline, subscript, superscript. Presumably these all need to be tagged with XML, perhaps using character styles? There are lots of inline graphics (ai and psd files) that will have to be converted to png, I guess. I also have attached metadata via XML attributes and I want that metadata to get to the web page and help direct the action based on user input (like which answer they give to a question).
Since I have always worked on print documents, I don't know XSLT, CSS, XHTML or even HTML so I just want to get started on the right foot.
Any suggestions welcome, including perhaps good tutorials or other resources. And obviously I want to automate this process as much as possible using scripts.
Thanks,
Brian

Hi Brian,
I wanted to do the same at my work, but my boss didn’t allow me this. So, I have a general idea about how to do it, but have no chance to implement it into a working solution. In my opinion you answered correctly to your own questions and you are on the right track.
As to tutorials and resources, I couldn't find much information on the subject so far.
The best tutorial I know about is in this book:
http://www.amazon.com/Designers-Guide-Adobe-InDesign-XML/dp/0321503554
(Chapters 9-11)
See also this tutorial:
http://indesignsecrets.com/how-to-export-basic-html-out-of-cs2.php
All the
paras will have para styles but there will be some overrides of the font like
bold, italic, underline, subscript, superscript. Presumably these all need to
be tagged with XML, perhaps using character styles?
There are a couple of ready to use scripts that do this — you can run such a script and then Map Styles to Tags.
There
are lots of inline graphics...
That's good — inline graphics are better then stand alone ones for XML export.
I don't
know XSLT, CSS, XHTML or even HTML so I just want to get started on the right
foot.
The above mentioned book gives you basics on all these topics, but it's not enough — you'll need a good book on Dreamweaver as well. I'd recommend you Dreamweaver CS3 The Missing Manual Series.
Kasyan

Similar Messages

  • Creating InDesign files for both print and mobile output?

    I am looking for a way to create files that can be multi-purpose for both print and mobile/online environments. I would like the output to be 2 different PDFs from one set of Indesign files. The problem I am encountering is that currently my files are full of hi-res and vector graphics, effects, and are generally created to be optimized for large-scale printings on offset or digital presses. I am trying to use the same files to generate files that are optimized for mobile and online presentation but finding that the number of vector graphics specifically is slowing page display down.
    My initial reaction is that the solution would have to be dual-development. Multiple forms of 'master graphics' would have to be created and placed on multiple layers (one for print and one for mobile/online).
    Hi-res files could be made lo-res in Acrobat or Pitstop, but vector imagery would have to be rasterized and I am not aware of a method to do that in either of those programs.
    I have found some info on adobe.com leading me to think that maybe CS6 addresses some of this, but the majority of my work is being done in CS4 with only the bleeding edge being done in CS5.
    Thanks in advance for any insight.

    the output to be 2 different PDFs from one set of Indesign files.
    You can accomplish this by saving each PDF using a different preset - High Quality Print for the high res, smallest file size for web
    but vector imagery would have to be rasterized...
    You should be trying to keep all vector work as vectors. This, in most cases, lowers the file size. There are a couple of exceptions to that like if the vectors are very complex (layered etc) and you are using bitmap effects like drop shadows. In general, rasterizing will increase the file size and lower the quality.
    Is there any functional difference between the 2 PDFs? I am wondering why exporting using 2 different presets will not do the job efficiently enough. You could always save your linked images with a low res version - same file but make a copy 100dpi instead of 300dpi. This might help but InD normally downsamples the images anyway when exporting as smallest file size.
    EDIT:// In Acrobat, you can save as "Reduced Size PDF" which strips out all the meta data etc and makes the PDF lighter and faster for web use. This would be a final, before publishing online step.

  • Printer connectivity failed; reconnected HP C4600, but computer commands to printer (for both print and scan) don't work.  Any ideas other than "it's a printer problem"?

    HP C4600 printer connectivity suddenly failed; attempted re-connect, message tells me reconnection succeeded, but computer commands to printer - both scan and print - do not function.  Any ideas, other than "It's a printer problem"?

    Have you the latest drivers?

  • Shared codebase for both mobile and web applications?

    I've been developing a mobile application for a while now. It runs on iOS and Android as well as on the desktop as an AIR app. This is great and I'm very excited about it. However, last week I was asked why I couldn't export a version of the app that ran within a web browser. I said that I assumed I could and that I would look into it.
    But why would you want to run mobile code on the desktop?
    A couple of reasons:
    Greater re-use of code. This doesn't make sense in all cases but it does in many cases. (I won't elaborate because I think this is self-evident. If you disagree I'd be happy to talk about it but I'd rather not clog this description with it.)
    Quicker/easier client demos. Rather than having to install an apk or an ipa on a mobile device, I can just send a URL.
    So what have I found? Well, from what I've tried so far.. it.. doesn't work. Or rather I haven't been able to make it work.
    I started by creating a Flex Library project for all shared code. Then I created 2 application projects that reference it- one for mobile and one for web. The mobile project works fine but the web project does not. Here's what I've tried so far to make it work:
    I tried adding the mobilecomponents.swc and the mobile.swc theme to my web project so that Flash Builder knows about MobileSkin (and other mobile-only classes). This enables my app to compile but when I launch it immediately throws a runtime error inside of UIComponent: VerifyError: Error #1014: Class flash.text::StageText could not be found. I've found very little about this error, and the one tip I did find (adding the --swf-version=13 compiler option) does not work.
    I tried using conditional compilation to control which class my skin components inherited from: MobileSkin or SparkSkin. This was just a quick experiment to see if it worked. I know it's disgusting and not a production solution. My thinking though was that if MobileSkin was really just an optimized version of SparkSkin, my skins should be okay inheriting from either. This didn't work right away- app wouldn't compile b'c certain methods were missing (ex. layoutContents) and so I bailed on it because it felt dirty to begin with.
    I tried replacing MobileSkin with UIComponent as the super class for all of my skins thinking that MobileSkin was probably just a lightweight subclass of UIComponent anyway. This approach resulted in some compiler errors at first (ex. no layoutContents method, no measuredDefaultWidth/measuredDefaultHeight properties, addChild vs addElement, etc.). Once those issues were resolved the app compiled but crashed with runtime errors inside of UIComponent's "getState" method. (Looks like MobileSkin overrides this method to prevent UIComponent's default behavior.)
    So none of those approaches have worked for me so far... but what about you guys? I have no hopes of Adobe reading this thread or responding to it in any way, but I would love to hear from other people in the community. Have you encountered this issue yet? Were you able to make it work or can you spot any obvious oversights I've made in the methods I mentioned trying above? Thanks in advance if you can.

    Update: I've been able to make progress with the first route mentioned above: adding the mobilecomponents.swc and the mobile.swc theme to my web project
    Turns out that Flash Builder had led me wrong in this regard. Adding the mobile SWCs to your Library project with the "merged into code" setting results in the compiler warning:
    The swc '/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/frameworks/themes/Mobile/mobile.swc' has style defaults and is in the library-path, which means dependencies will be linked in without the styles.  This can cause applications, which use the output swc, to have missing skins.  The swc should be put in the external-library-path.
    Seeing this the first time, I changed my linkage type to "External" and the warning went away. Then in my web project, I also added the mobile SWCs and set the linkage type to "merged into code" there. Flash Builder seemed happy with that approach, but upon running my application I got bizarre runtime errors (as mentioned above).
    Turns out that my first attempt was the correct way. Set the linkage type on the library project to "merged into code" and then don't re-link from your web project. Flash Builder will warn you about it but ignore the warning. Things seem to work pretty well for the most part now! I have an issue or two to look into (ex. List component doens't scroll) but things look pretty promising overall!

  • Proper way to save FW file for use in print and web?

    I have a high resolution FW file that has a lot of vectors, but includes gradients too.
    It is on a transparent artboard, and I want to preserve the transparency.  I want to be
    able to use it for both print and web projects.   I am assuming that the best way to do
    this is to save it as a PSD file, but when I do that, the appearance of the file changes,
    specifically, the words "web design" in the logo lose some of the boldness and sharpness
    that they had in the FW version.("web design" is vector with a solid fill)  What am I doing wrong?

    2 type of dialogs can appear.
    1 ... Replacing file
    2 ... Internal Error of FW. (other are same two)
    else... you have some problem there.
    Well.. jms1017 can you post the dialog screen here? Thanks!

  • Output determination and Printer determination for  both PO and GR

    Dear all,
    Can anyone please help me in congiguring the output determination and printer determination for  both PO and GR. please give me detailed configuration including the paths as i am stuck with the configuration.
    Thanks & Warm Regards
    Somashekar Anand

    hi Somashekar
    follow he steps
    Output of Purchase Order
    1. Condition Table
    SPRO > Material Management> Purchasing -> Message -> Output Control->Condition Tables->Define Condition Table for Purchase Order
    Select:
    Purchasing Doc. Type,
    Purch. Organization,
    Vendor
    2. Access Sequences
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Access Sequences->Define Condition Table for Purchase Order
    3. Message Type
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Types->Define Message Type for Purchase Order
    *4. Message Determination Schemas*
    4.1. Message Determination Schemas
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Schema->Define Message Schema for Purchase Order-> Maintain Message Determination Schema
    4.2. Assign Schema to Purchase Order
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Schema->Define Message Schema for Purchase Order-> Assign Schema to Purchase Order
    5. Partner Roles per Message Type
    SPRO -> Material Management-> Purchasing -> Message -> Output Control-> Partner Roles per Message Type ->Define Partner Role for Purchase Order
    6. Condition Record
    Navigation Path: SAP Menu-> Logistics -> Material Management -> Purchasing-> Master data->Messages-> Purchase Order-> MN04-> Create
    Now you create PO (ME21N) and save it. Go to ME22N and print the PO by giving output type.
    Output of GR
    After setting table, access sequence and output type for GR,run MB02 transaction, enter material document number. Double click one line item and select messages. Separate screen will be opened to configure outputs. Give the required fields and save the document. Now Run MB90, you can take printout. Output Type: WE03 or WE01 or WE02
    Reward points if helpful
    Thanks and regards
    Ravikant Dewangan

  • Can we produce a newsletter in one CS4 application and output it to both print and the web?

    Can we produce a newsletter in one CS4 application and output it to both print and the web?
    If so what do you suggest that we use?
    Message was edited by: [email protected]

    A very cautious "yes". It mainly depends on what you expect.
    It has always been possible to just export to PDF and post that on your site. You can also export your ID file as one comprehensive SWF file and immediately put that onto the site -- it comes with a few handy browse functions, snazzy page flipping (when required); and it looks exactly like your ID document.
    Hard-core techies can use the Export To XHTML/DreamWeaver function, but that will only export the very bare bones -- plain text, with just the commands for text formatting in place. You have to re-do layout and styling in HTML code. Bear in mind ID is designed, top to bottom, as a document layout program, and this export is "extra", not really a basic feature.

  • Use Sign.xml and Encrypt.xml for both request AND response within WSDL?

    Hi,
    ALSB: 2.6
    I was wandering if it's possible to use abstract outof the box WS-Policy file within WSDL file to specify encryption
    (Encrypt.xml) and digital signature(Sign.xml) with X509 for both request and response???
    So far, it only works for either request or response BUT not both. i.e. within WSDL file
    <!-- following WSDL works for encrypting and signing request with X509 in test console -->.....
    <wsdl:binding name="DexService2Soap" type="tns:DexService2Soap">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
        <wsdl:operation name="Message">
                <soap:operation soapAction="urn:moe:dex:dexservice:2.0.0/Message" style="document" />
                              <wsdl:input>
                               <!-- WS-Policy file applied here -->
                             <wsp:Policy>
                                            <wsp:PolicyReference URI="policy:Sign.xml"/>
                                            <wsp:PolicyReference URI="policy:Encrypt.xml"/>
                                       </wsp:Policy>
                                     <soap:body use="literal" />
                               </wsdl:input>
                             <wsdl:output>
                                  <soap:body use="literal" />
                               </wsdl:output>
        </wsdl:operation>
      </wsdl:binding>
               Or
    <!-- following WSDL works for encrypting and signing response with X509 in test console -->
    <wsdl:binding name="DexService2Soap" type="tns:DexService2Soap">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
        <wsdl:operation name="Message">
                <soap:operation soapAction="urn:moe:dex:dexservice:2.0.0/Message" style="document" />
                              <wsdl:input>
                                     <soap:body use="literal" />
                               </wsdl:input>
                             <wsdl:output>
                                       <!-- WS-Policy file applied here -->
                                       <wsp:Policy>
                                            <wsp:PolicyReference URI="policy:Sign.xml"/>
                                            <wsp:PolicyReference URI="policy:Encrypt.xml"/>
                                       </wsp:Policy>
                                  <soap:body use="literal" />
                               </wsdl:output>
        </wsdl:operation>
      </wsdl:binding>
    But not both
    <!-- following WSDL doesn't work for encrypting and signing both response and request with X509 in test console -->
    <wsdl:binding name="DexService2Soap" type="tns:DexService2Soap">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
        <wsdl:operation name="Message">
                <soap:operation soapAction="urn:moe:dex:dexservice:2.0.0/Message" style="document" />
                              <wsdl:input>
                                        <!-- WS-Policy file applied here -->
                                       <wsp:Policy>
                                            <wsp:PolicyReference URI="policy:Sign.xml"/>
                                            <wsp:PolicyReference URI="policy:Encrypt.xml"/>
                                       </wsp:Policy>
                                     <soap:body use="literal" />
                               </wsdl:input>
                             <wsdl:output>
                                       <!-- WS-Policy file applied here -->
                                       <wsp:Policy>
                                            <wsp:PolicyReference URI="policy:Sign.xml"/>
                                            <wsp:PolicyReference URI="policy:Encrypt.xml"/>
                                       </wsp:Policy>
                                  <soap:body use="literal" />
                               </wsdl:output>
        </wsdl:operation>
      </wsdl:binding>
    ...      Instead, I got error message like
    <15/01/2008 10:15:04 AM NZDT> <Error> <ALSB Security> <BEA-387023> <An error ocurred during web service security inbound response processing [error-code: Fault
    , message-id: 3917705281899426819-4368b1eb.117762cff6e.-7fdb, proxy: DexServiceX509-Stub/Proxy Services/DexServiceX509-ProxyService, operation: Message]
    --- Error message:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><soapenv:Fault><faultcode>soapenv:Server</faultcode>
    <faultstring>Failed to get token for tokenType: http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3</faultstring></soapenv:Fa
    ult></soapenv:Body></soapenv:Envelope>
    weblogic.xml.crypto.wss.WSSecurityException: Failed to get token for tokenType: http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#
    X509v3
    at weblogic.xml.crypto.wss.SecurityBuilderImpl.addEncryption(SecurityBuilderImpl.java:308)
    at weblogic.wsee.security.wss.SecurityPolicyDriver.processConfidentiality(SecurityPolicyDriver.java:280)
    at weblogic.wsee.security.wss.SecurityPolicyDriver.processOutbound(SecurityPolicyDriver.java:75)
    at weblogic.wsee.security.wss.SecurityPolicyDriver.processOutbound(SecurityPolicyDriver.java:64)
    at weblogic.wsee.security.WssServerHandler.processOutbound(WssServerHandler.java:86)
    Truncated. see log file for complete stacktrace
    >
    <15/01/2008 10:15:24 AM NZDT> <Error> <com.bea.weblogic.kernel> <000000> <Failed to build CertPath
    java.security.cert.CertPathBuilderException: [Security:090603]The certificate chain is invalid because it could not be completed. The trusted CAs did not inclu
    de CN=x509,OU=x509,O=x509,L=Wellington,ST=Wellington,C=NZ.
    at weblogic.security.providers.pk.WebLogicCertPathProviderRuntimeImpl$JDKCertPathBuilder.engineBuild(WebLogicCertPathProviderRuntimeImpl.java:669)
    at java.security.cert.CertPathBuilder.build(CertPathBuilder.java:194)
    at com.bea.common.security.internal.legacy.service.CertPathBuilderImpl$CertPathBuilderProviderImpl.build(CertPathBuilderImpl.java:67)
    at com.bea.common.security.internal.service.CertPathBuilderServiceImpl.build(CertPathBuilderServiceImpl.java:86)
    at jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source)
            Truncated. see log file for complete stacktrace
    >
    <15/01/2008 10:15:24 AM NZDT> <Error> <ALSB Security> <BEA-387022> <An error ocurred during web service security inbound request processing [error-code: Fault,
    message-id: 3917705281899426819-4368b1eb.117762cff6e.-7fd8, proxy: DexServiceX509-Stub/Proxy Services/DexServiceX509-ProxyService, operation: null]
    --- Error message:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><soapenv:Fault xmlns:wsse="http://docs.oasis-open.or
    g/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"><faultcode>wsse:InvalidSecurityToken</faultcode><faultstring>Security token failed to validate. weblo
    gic.xml.crypto.wss.SecurityTokenValidateResult@3c5347b[status: false][msg [
      Version: V1
      Subject: CN=x509, OU=x509, O=x509, L=Wellington, ST=Wellington, C=NZ
      Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
      Key:  Sun RSA public key, 1024 bits
      modulus: 13052787793731294943682394984664645854838424340012907077330623....
      The 'System Error Handler' from 'Invocation Trace' in ALSB test console is something like
    [pre]     
    $fault:
    <con:fault xmlns:con="http://www.bea.com/wli/sb/context">
         <con:errorCode>BEA-386201</con:errorCode>
         <con:reason>
              A web service security fault
              occurred[{http://schemas.xmlsoap.org/soap/envelope/}Server][Failed
              to get token for tokenType:
              http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3]
         </con:reason>
         <con:details>
              <err:WebServiceSecurityFault
                   xmlns:err="http://www.bea.com/wli/sb/errors">
                   <err:faultcode
                        xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
                        soapenv:Server
                   </err:faultcode>
                   <err:faultstring>
                        Failed to get token for tokenType:
                        http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3
                   </err:faultstring>
              </err:WebServiceSecurityFault>
         </con:details>
         <con:location>
              <con:path>response-pipeline</con:path>
         </con:location>
    </con:fault>
    So is this a feature not supported in ALSB 2.6 yet or am I missing something dead simple?
    Thanks in advance
    Sam

    Instead of specifying policies for input and output separately you could place the policy reference only once in the operation element. Maybe will this solve your problem...
    http://e-docs.bea.com/alsb/docs26/security/ws_policy.html#wp1061166

  • Designing art for both RGB and CMYK

    I need to make some artwork that might be viewed in both RGB and printed with CMYK. I know I can switch the color mode after making the artwork, however, I'm concerned with color shifting when changing from RGB to CMYK or the other way around. How do you design something that you can both print and display on screen without compromising the colors?
    Thanks.

    Generally, is there much if any color shift when going from CMYK to RGB?
    Even if a given color is within the gamuts of both CMYK and RGB color spaces, that does not necessarily mean that color shifts will not occur.
    You can't think of the RGB and CMYK versions of "a color" as "equivalents." There is not just one set of CMYK values for a given set of RGB values. A simple way to think about it is this: Take the product of three numbers. Now divide that number into four factors. Obviously, there is more than just one set of four values possible.
    So switching back and forth between RGB and CMYK color spaces in willy-nilly fashon is not good practice. The software has to make a translation decision out of many possibilities. It does it according to your so-called "color management" settings. Even then, the software does not keep a breadcrumb trail of all of your switches back and forth. So colors can still drift.
    Design for print first. Then repurpose for web. Color is not the only reason for this.
    JET

  • BAPI for return/supplement the funds for both overall and fiscal year.

    I have a development requirement for following and I am new to Investment ,management and Project
    Systems functionality.
    Your help will be appreciated
    The new transaction will use the upload data to create returns and/or supplements to Marketing budgets.  The following is what the transaction will do per request:
    •     Verify funds are available to shift.  The program will do this by creating an error log for items that do not meet this criteria.  The program will process all line items that have available funds (IM52).
    Q pls let me know what BAPi/FM to use to verify whether funds are vailable or not
    •     Return the funds for both overall and fiscal year (IM52).
    Q Pls tell me BAPI for same
    •     Supplement the funds for bother overall and fiscal year (IM52).
    Q BAPI for same
    •     Deactivate the availability control for the WBSE’s affected (CJBW).
    Q  How to do that and BAPI/FM for same
    •     Activate the availability control for the WBSE’s affected (CJBV).
    Q  How to do that and BAPI/FM for same
    •     Add appropriate text from the data in the upload spreadsheet (this may be a concatenation of data from the columns in the upload) (IM52).
           Not clear what user is trying to say
    •     The transaction needs to be able to handle whole dollars as well as numbers that might include up to two decimals:  e.g. .01 (IM52).

    I am answering my own question since i completed the above development by using the FM KBPV_POST_DATA .
    It will post to all the BP tables and is tested successfully.

  • Can we define users for both studio and integrator server

    Can someone please let me know how can we define users for both studio and integrator server so that the user can be used to view UI page but not modify it.I want to define user in studio which will access the Page but not modify it. And the user in integrator server should be able to view scheduled jobs.
    Thanks a lot.
    Regards,
    Amrit

    Amrit,
    Both Studio and Integrator Server support LDAP. See http://docs.oracle.com/cd/E35976_01/studio.240/eid_studio_users/toc.htm#Integrating%20with%20an%20LDAP%20System%20to%20Manage%20Users for details about implementing LDAP in Studio. For Integrator Server, see "LDAP Authentication", p. 38 (document pagination; p. 44 pdf file pagination) in the Integrator Server Guide (http://docs.oracle.com/cd/E35976_01/integrator.240/DataIntegratorServer.pdf).
    RLJII

  • PGI for both main and sub items (Sales BOM)

    Hello SD friends,
    I'm trying to map some BOM scenario.
    Only main item should be relevant for princing.
    Here's what I've done :
    1. Create sales BOM via CS01
    2. Maintain item category group ERLA for main item and NORM for sub item MM01
    3. Maintain item category TAQ for main item and TAE for sub item VOV4
    When I wanna do PGI, system creates material document only for main item.
    Which means that PGI has not been done for sub items.
    Is there any way to make PGI possible for both main and sub items ??
    Regards,
    Bahia.

    Can you clear, that why you want to issue both Main item/Sub Item, where your pricing is @ main item level.
    in Main item level Pricing, Main item itself includes components. Once you issue the main item. from Inventory this main item wil be reduced.
    Eg:  In Case of Main Item- Computer (Assume Components - Monitor , Keyboard , CPU & Mouse)
    Price for Computer - $1200.   Component prices individually- $300 , $100, $700, $100 - These prices applicable only when you sell as BOM at Subitem level Pricing Or Seperately )-
    In SO: - Order Computer (System explodes Components to verify,which are the subitems consists in Main Item)
      DEL:-  Components will be copied in Delivery , but not for dispatch (Sch Line Cat:CT has these controls)
    Inv: Only Main item will be displayed for print.
    NOTE:  for your requirement, you can change the Schline Category from CT - CN- which is relevant for delivery with movement type i601 -in SO. Then you can dispatch components & these components will not copied into Invoice ,as they are not relevant for billing.
    If you want CN has to determined automatically, maintain Schline Category determination accordingly.
    Hope it helps,
    Any info, please revert

  • Updated 2.3.3 for both x10i and x10a (ALL KITS)

    Updated 2.3.3 for both x10i and x10a (ALL KITS)
    http://www.topsony.com/forum/local_links.php?catid=4556
    download FlashTool
    http://forum.xda-developers.com/showthread.php?t=920746
    or
    http://androxyde.github.com/Flashtool/
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)
    Solved!
    Go to Solution.

    this is how to add more Internal Memory it's a long process but its worth it
    1) backup everything (Check above)
    2) backup your SD card
    on your PC
    1) open any folder -> click on tools -> properties -> view -> show hidden files
    2) mount the SD card, go to your SD card, press Ctrl + A then Ctrl C, on your desktop create a new folder, open it, then press CTRL + V
    now this is where it gets AWEOME-ER
    Guide to using Link2SD on your Xperia smartphone
    This guide may seem lengthy, but trust us when we say it is straightforward. All steps have been documented which makes it look daunting. Read each section carefully and follow the steps outlined to install Link2SD.
    1. PREPARATION
    Please make sure you have completed all of the following before starting the tutorial.
    On your PC:
    – Install the necessary drivers for your Xperia smartphone onto your PC/laptop. The easiest way to do this is to ensure that Sony Ericsson PC Companion is installed on your PC. Once installed, connect your phone to complete the process.
    – Download and install MiniTool Partition Wizard onto your PC or laptop.
    On your Xperia:
    – Enable USB de-bugging mode: Setting –> Applications –> Development –> Tick ‘USB debugging’
    – Enable the ability to install unknown apps: Setting –> Applications –> Tick ‘Unknown sources’
    – Install Link2SD from Android Market onto your Xperia smartphone. It is a free download.
    2. ROOT
    3. BACKUP MEMORY CARD
    As we will be creating a partition on your microSD memory card, make sure you create a backup just in case anything goes wrong.
    a) Create a new folder on your PC and name it anything you want, such as ‘SD_Backup’
    b) Connect your phone to the PC, navigate to your memory card and copy the contents to the backup folder.
    4. CREATE SECONDARY PARTITION
    You now need to create a secondary partition on your microSD memory card that will enable you to use Link2SD.
    Note: We will use MiniTool Partition Wizard to create a secondary partition on your microSD card. This partition can be ext2, ext3, ext4 or FAT32. We will use FAT32 as it is supported on all phones and should lead to less troubleshooting later. You can use any partition manager of your choosing, but the steps below guide you through MiniTool Partition Wizard.
    There is no need to wipe your memory card when going through this process, just ensure you have at least 0.5GB to 1.0GB of free space to make it worthwhile. You also do not need to use a microSD card adaptor as the process below creates the partition whilst the phone is connected to your PC.
    a) Connect your handset to the PC via USB and then launch MiniTool. You should see the details pop up under ‘Disk 2′.
    b) Click on the memory card under Disk 2 in MiniTool and then in the left pane, press ‘Move/Resize Partition’. On the blue bar under ‘Size and Location’, move the right arrow towards the left to create the size of the secondary partition desired. In the example below we created a secondary partition with 1018.63MB of space. This value can also be typed in manually in ‘Unallocate Space After’.
    c) Once this is done you should see that your memory card is now split into two partitions under Disk 2 of MiniTool. Right click this new partition and then press ‘Create’.
    If you see this pop-up below, just press ‘Yes’ to continue.
    d) You should then see this ‘Create New Partition’ window. Under ‘Create As’ click Primary and then under ‘File System’ click FAT32. Leave the cluster size as default and you can assign whichever drive letter you want. Once finished press OK.
    e) This should bring you back to the main MiniTool screen. Now hit the ‘Apply’ button on the top-left of the screen, denoted by a tick symbol.
    This will bring up another pop-up window and will take several minutes to both resize and create the secondary partition.
    If successful, you should see message below. Congratulations your card is ready to use in conjunction with Link2SD.
    5. LINK2SD
    This application makes it easy for users with root privileges on their phone to move applications to the SD card.
    a) Open the Link2SD app on your phone. You should be greeted with the following menu, check the FAT32 option and click OK.
    You will then see the Superuser Request, click ‘Allow’.
    Once you see the following message, restart your phone. The app should now be ready to use.
    b) To make sure everything is installed correctly. Click the Menu button and go to ‘Storage Info’. This will show you the internal memory and your two partitions on the memory card. In our case, you can see that the second partition has 1GB free.
    c) Now you need to move the apps of your choice to the memory card. Click the Menu button and press ‘Multi-select’.
    Choose which apps you want to move by clicking the tick box next to the app. System apps are greyed out and cannot be selected. Link2SD can only move apps that are already on the internal memory. If you have apps already on your SD card, you will need to move them back to the internal memory before you can link them with Link2SD.
    If you want to move all of your apps, pressing the menu button will bring up another menu allowing you to do this.
    d) Once you have chosen which apps you want to move, you then need to hit the menu button and press ‘Actions’, which will bring up the following menu. Press ‘Create Link’.
    Leave all three check boxes ticked and press OK. Link2SD will now do its work and move/link the selected apps to your memory card.
    Once finished, you should see that the apps you have moved have ‘Linked -> SD Card’ in red font in the Link2SD app list. Reboot your phone.
    e) Congratulations your phone is now using Link2SD! You should now go to Settings by pressing the menu button and configure how you would like Link2SD to work. The main decision here is whether you want to Auto Link newly installed apps to the memory card. Given that you’ve gone through the hassle of installing Link2SD we suggest you enable Auto Link and make worrying about your internal memory a thing of the past.
    Special Thanx to the Xperiablog
    http://www.xperiablog.net/2011/12/12/link2sd-guide-never-worry-about-internal-memory-limits-again/

  • I have partitioned my time capsule, but I can't get it to work as a Time Machine back up and permanent media server for both mac and PC. What format do I need to partition the drive to so that it works for both mac and windows and so that it will be visab

    I have partitioned my time capsule, as I want part of it to act as a media server for both mac and windows. However I don't know what format that I need to partition it to. I also can't make it a permanently accesible drive. I want to restore the drive to the original format (which I don't know) and start again and re-partition the drive in a format that can be used for media by both mac and PC and for time machine back-ups and make the media part of it permanetly accesible so I can add and acccess my files.
    Thanks

    You are mixing up a couple of things here.
    The TC drive cannot be partitioned without removing it.. did you do that?
    If you partition it you must use a Mac disk utility and use the HFS+ ie standard Mac format. And GUID partition table not windows type.
    You can select erase disk in the airport utility.. that will take the disk back to original format. No partitions. TC is deliberately not partitioned as it is not a media server.. it is a backup device for TM. Over time .. the disk will be filled with TM backups so you have a long history of file changes to your computer.
    There is no media server in the TC.. it is merely disk storage.. you can serve files from it to a media device.. but the TC itself is dumb as dumb.
    Now the actual format of the drive is irrelevant to the PC.. The TC offers SMB file services to the network. You can copy files to and from the TC as if it was a local disk without caring one iota about the format. The TC handles that .. it is not a local disk .. it is a network drive.
    Although you cannot partition the TC. you can still copy files to it.. this does have implications for TM.. but as long as there is plenty of free space should not be a major issue.
    You can create a disk image via the disk utility in a Mac.. and as stated you can create partitions if you do it on a Mac with the disk directly connected which means breaking warranty if any exists on the TC.

  • I have Photoshop Elements 12 for both PC and Mac (I use both). I have a new camera, Nikon D810. I downloaded the latest version of Camera Raw, 8.8. My D810 is listed as a supported camera model. However, when I try to open a raw photo in Photoshop Element

    I have Photoshop Elements 12 for both PC and Mac (I use both). I have a new camera, Nikon D810. I downloaded the latest version of Camera Raw, 8.8. My D810 is listed as a supported camera model. However, when I try to open a raw photo in Photoshop Elements, I keep getting the message "Could not complete your request because the file appears to be from a camera model which is not supported by the installed version of Camera Raw. I have tried reinstalling Camera Raw many times, and have tried to open many different raw files in Elements, and still get the same error message. Please help.

    How did you try to install ACR 8.8.  The only way I know of that works with Elements is to use the Updates Choice on the Help menu.
    There are two charts supplied by Adobe that explain your RAW dilemma.  This one tells you what your camera needs:  http://helpx.adobe.com/creative-suite/kb/camera-raw-plug-supported-cameras.html   This one tells you what version of software you need:  http://helpx.adobe.com/x-productkb/global/camera-raw-compatible-applications.html
    In your case, the Nikon D810 needs Adobe Camera Raw (ACR) 8.6 or Lightroom 5.6.  (Congratulations on buying a new camera!)
    To get to that level with Photoshop Elements, you will need to replace your Photoshop Elements 12 with version 13.   Adobe caps ACR updates on version 12 at 8.5.
    The most convenient way to get around it without spending any money is to use the FREE from Adobe DNG Converter.  Download and install it from here for FREE:  http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=5855&fileID=5890  Once it is installed you can convert your D810 raw files to an Adobe RAW version with the .DNG file extension that most, if not all, versions of the various Adobe software programs can use.  That includes old versions of Photoshop, Elements and Lightroom.  DNG converter can be used as the tool to move your files from your memory card to your computer, is efficient, will convert in batches and is completely lossless.  There is no risk of any image quality degradation or RAW functionality.

Maybe you are looking for