Source attachment of swc file

Hi,
is it possible to specifie a zip or tar file (instead of folder path) in the source attachment of a swc in a library path ?
thanks,
vdelbart

The Windows Phone version of Whatsapp doesn't have sound files in its attachment options.
If you long-press the sound file, is there a share option in the pop-up menu? If so, check if Whatsapp is listed as a sharing option.

Similar Messages

  • SOURCE ATTACHMENT for multiple source paths

    I have a flex app project with the name AppProj.
    I also have a flex library with the name LibProj. It has no SRC folder of its own. It has 3 external folders as source paths ...
    C:\folder\codeFolder1\
    C:\folder\codeFolder2\
    C:\folder\codeFolder3\
    The Main Source Folder is  C:\folder\codeFolder1\
    The AppProj adds the LibProj in the Flex Library Build Path. I check the Source Attachment of the LibProj and it is pointing to C:\folder\codeFolder1\ which is LibProj's Main Source Path.
    Now if I hit F3 or CTRL+CLICK on a class that is in the C:\folder\codeFolder2\ or C:\folder\codeFolder3\ folder, I get the source not found in the swc error.
    How can I specify multiple source attachment or how do I solve this problem.
    Thanks

    In textLayout_build.zip is the source code. http://sourceforge.net/projects/tlf.adobe/files/3.0/current/textLayout_build.zip/download
    All versions of the source code contain CONFIG statements, including the internal ones.

  • How to attach a word file in JAVA mail? Please help

    I am a JAVA rookie and I have problem attaching a word file using javamail. I searched almost all the forum but still couldn't find the solution.
    Sorry for the reposting. But can anybody please help me out? Your any words or links will be highly appreciated!
    Lakobe

    If you want to include an attachment with your message, you need to build up the parts, quite literally, because the name of the applicable interface is Part. The content of your Message will consist of multiple parts within a Multipart object. Part one of the message is a BodyPart that contains the message content. Part two of the message is a BodyPart that contains the attachment. The attachment itself is specified as a DataSource. You don't have to actually read the attachment.
    You start in the same way as you do for a message without an attachment. Create the message from the session and initialize the headers:
    Message message = new MimeMessage(session);
    message.setFrom(new InternetAddress(from));
    message.addRecipient(Message.RecipientType.TO,
    new InternetAddress(to));
    message.setSubject("JDC Attachment");
    However here you need to create the Multipart object:
    Multipart multipart = new MimeMultipart();
    For part one, create a BodyPart and set the text to be a message. Then, add the BodyPart to the Multipart you just created.
    BodyPart messageBodyPart = new MimeBodyPart();
    messageBodyPart.setText("Here's the file");
    multipart.addBodyPart(messageBodyPart);
    For part two, you need to create a BodyPart again, but this time you need to create a DataSource for the file.
    messageBodyPart = new MimeBodyPart();
    DataSource source = new FileDataSource(filename);
    Use a DataHandler object to attach the data source to the message. Simply create a DataHandler for the source and attach it to the message:
    messageBodyPart.setDataHandler(
    new DataHandler(source));
    Remember to set the filename of the attachment. This permits the recipient to know the name (and type) of the received file.
    messageBodyPart.setFileName(filename);
    Attach part two in the same way as part one:
    multipart.addBodyPart(messageBodyPart);
    And as a final step before sending, attach the Multipart to the Message:
    message.setContent(multipart);

  • Source Attachment Settings in Flash Builder

    Hello everyone,
    I am facing an issue with debugging. I don't want to step through the framework code in the debug mode. To avoid that, I removed the Source attachments, by selecting that node in the tree and clicking on remove. But it doesn't save the change settings. When I debug after saving these settings, it jumps to framework classes e.g. UIComponent etc. After looking at it again, I can again see the Source attachments. I tried looking at the entire checked out source, but not able to find out, how this Source attachment setting is working in Flash Builder. I don't want to jump through framework classes. Is it possible to do this ?
    Note: After the experiments above, I removed the Flex SDK and then copied all the swc classes and put them in a separate folder, still Flash Builder is able to find out the source attachment. Any light on how it works
    Thank you
    Chetan Sachdev

    Hi Chetan,
    Please use the Labs forums for questions regarding the beta release, as the Builder team won't find your post here. These forums are used for discussing development on the Flex framework and other Flex open source related discussions.
    Thanks,
    Vera

  • How to debug swc files in Flash CS5

    Hi, to coin a familiar phrase "I'm new to Flash developement". My question is very simple. How do I debug .swc files (that I've created in Flash Builder 4) in Flash Professional CS5. I've incorporated the .swc file in the Publish Settings->Flash tab. But when I attempt to consume the objects in the .swc file I get an error saying it "Cannot display source code at this location."
    Can someone tell me the best pratice for debugging .swc files. Do I debug them in Flash Builder or Adbobe Professional Flash CS5?

    I think I found the solution to my problem..... but dont know how to implement it correctly.
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/StageScal eMode.html#SHOW_ALL
    I believe I need to use the SHOW_ALL constant, but there isn't an example of how to do it
    Heres my code, it compiles without errors, but when I publish it as .exe I get the 'Error 1037: Package cannot be nested':
    package
              import flash.display.StageScaleMode
              import flash.media.Camera;
              import flash.media.Video;
              public class ScaleMode
                        public static const SHOW_ALL:String = StageScaleMode.SHOW_ALL;
                        var camera:Camera = Camera.getCamera();
                        if (camera != null) {
                                  videoTwo.attachCamera(camera);
                        } else {
                                  trace("You need a camera.");
              stop();
    Any ideas??

  • Localize new workspace ES lenguage: error compiling swc file

    Hi,
    I'm trying to localize Workspace ES to another language (in detail Italian). But when I launch the command line to compile the SWC file this following error appears:
    Loading configuration file C:\Adobe\Flex Builder 3\Flex SDK 2\frameworks\flex-config.xml
    Error: could not find source for resource bundle data.
    The compile command is:
    compc -locale=it -output=export/it/workspace_rb.swc -source-path ./it "C:/Adobe/Flex Builder 3/Flex SDK 2/frameworks/locale/" -include-esource-bundles alc_wks_client_msg alc_wks_client_trace alc_wks_client_ui SharedResources collections controls core data effects formatters logging messaging rpc skins states styles utils validators --
    Anyone has a similar problem and how do you fix it?

    Hi,
    It appears to me that are you using Flex Builder 3? If so,
    it looks like your path to the Flex SDK 2 is incorrect...
    Try this:
    compc -locale=it -output=export/es/workspace_rb.swc -source-path
    ./it "C:/program files/adobe/flex builder 3/sdks/2.0.1/frameworks/locale/
    es_ES" -include-resource-bundles alc_wks_client_msg alc_wks_client_trace
    alc_wks_client_ui SharedResources collections controls core data effects
    formatters logging messaging rpc skins states styles utils validators --
    For more details, take a look also in the localization section at the guide at http://www.adobe.com/go/learn_lc_customizeWorkspace (page 21 for the command and page 36 for the localization steps).
    Hope that helps!

  • Accessing Movieclip from swc file

    Hi,
    i have one swc that have movieclip symbol , but  i cannot  acess that movieclip symbol .
    please help me accessing movieclip symbol from swc .

    Manikandan wrote:
    Hi All,
    I have one .dbf file which is not attached to any database. I have installed and created an Oracle 10g database. How can i attach that .dbf file to a fresh database or can i retrieve data from .dbf file and import into new database?Just one datafile? Well, you can't attach the datafile to a database just like that and start reading it. Oracle is not, as Billy has told you already, is not Access or Excel that you can just start reading its contents. Even if you attach it to some other tablespace, without ensuring that the datafile is self-contained , I doubt it would be much of any use.
    This is just my thought :- can i use HSODBC (I know this is for non-oracle database) in order to retrieve data ... Just askingNo.
    Aman....

  • Source attachment configuration -Java /J2ee

    Can anyone name the folder, jar or zip for viewing the source code for j2ee components.
    For viewing java source code we use jdk1.6.0/src.zip. Similarly can anyone provide the utility required for viewing j2ee components.
    Regards,
    Anees

    To attach source to a library folder:
    Select the project, and from its pop-up menu, select Properties.
    In the Properties dialog, select the Java Build Path page.
    On the Libraries tab, select the library folder to which you want to attach source.
    Expand the node by clicking on the plus and select the node Source Attachment. Click the Edit button to bring up the source attachment dialog.
    Fill in the Location path field depending on the location, choose between the workspace, an external file or external folder.
    Click OK.
    Other way which you are using should also work not sure why it is not working for that you can open a SR with Oracle might it seems to be a BUG.
    Regards,
    Kal

  • Source not found: The source attachment does not contain the source........

    Source not found: The source attachment does not contain the source for the file ClassLoader.Class
    Hey,
    I'm running eclipse Version: 3.2.2 Build id: M20070212-1330, on a Vista Home Premium Toshiba laptop. Everything was working fine before i installed the Java JDK 5 and JDK 6. Now all of sudden when i try to run one my programs that worked in the past i get the following error:
    java.lang.UnsupportedClassVersionError: Bad version number in .class file
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(Unknown Source)
         at java.security.SecureClassLoader.defineClass(Unknown Source)
         at java.net.URLClassLoader.defineClass(Unknown Source)
         at java.net.URLClassLoader.access$100(Unknown Source)
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    Exception in thread "main"
    I'm not sure where to go from here...I've looked up a few articles that mention going into some system.ini files...etc... to make sure the variable are ok but i feel like i'm getting in over my head.
    Thanks in advance for your thoughts,
    Struggling to Run

    Ok...after I thought everything was going well enough.... problems are arising.
    Here's where I'm at and that will include how i got a "nano" error. After a lot of late night messing around I ended up installing a few important component that seem to have done some good. Firstly i installed j2sdk-1_4_2_18-windows-i586-p and ended up with a few good things. Windows was happy when i changed the path variables in the environment setting to point to the newly created c:\program files\java\j2re1.4.2_18\bin folder. This allowed me to start up eclipse properly and use some functions in CMD. In CMD when i use the command java -version it reads Java version 1_.4_.2_1_8. Next i installed the j2sdk-1_4_2_13 jre 1.6.0 environment and ended up with a new folder in C:\Program Files\Java\jre1.6.0 as well.
    with the two environments installed i thought i was ready fro the next step.
    I got started on eclipse and now that it was opening i was feeling good. Next i opened window --> preferences --> java --> installed jre's and i started adding things like crazy. My current list of comprised of many things which I'm certain should all be there at this point so I'll list them:
    j2sdk1.4.2_13 - C:\j2sdk1.4.2_13
    j2re1.4.2_18 - C:\Program Files\Java\j2re1.4.2_18
    j2sdk1.4.2_18 - C:\j2sdk1.4.2_18\jre
    j2sdk1.6.0 - C:\Program Files\Java\jre1.6.0
    jdk1.6.0 - C:\Program Files\Java\jdk1.6.0
    I've set the preferred jre to be set to jdk1.6.0 - C:\Program Files\Java\jdk1.6.0 and it seems to work for all of my programs that do not have the input.scanner. However for the projects that do have this method i get a few different errors:
    1___________
    java.lang.NoClassDefFoundError: couponCounter/CouponCounter
    Exception in thread "main"
    2__________
    Exception in thread "main" java.lang.Error: Unresolved compilation problem:
         Syntax error, insert "}" to complete ClassBody
         at BensCalculator.main(BensCalculator.java:112)
    Now i feel like the second error is lying to me because i know that bit of code is written properly.... i believe it is related to a problem not locating the proper classes.
    Anyhow I'm still pushing along but some help at this point would be much appreciated. It's very weird some things with the scanner are working now..... I don't know I'm not totally convinced yet everything is OK.
    Thank you

  • Unable to generate the source while having xsdconfig file

    Hello All,
    I am trying to generate the source using ant script and I have a .xsdconfig file
    in the same folder as the XSDs. I am getting the following error:
    [xmlbean] error: Document /home/xsd/Development/config.xsdconfig is not an xsd
    config
    file
    I am attaching the .xsdconfig file just in case if you want to see what I am doing.
    Help appreciated.
    Thanks in advance.
    Kiran
    [config.xsdconfig]

    Hi Kiran,
    Did you get the solution to your problem...
    I am getting the same problem
    Please help
    Regards
    Manish Jain
    "Kiran" <[email protected]> wrote:
    >
    >
    >
    Hello All,
    I am trying to generate the source using ant script and I have a .xsdconfig
    file
    in the same folder as the XSDs. I am getting the following error:
    [xmlbean] error: Document /home/xsd/Development/config.xsdconfig is not
    an xsd
    config
    file
    I am attaching the .xsdconfig file just in case if you want to see what
    I am doing.
    Help appreciated.
    Thanks in advance.
    Kiran

  • Attaching a local file to an email

    I have been asked to develop the means to attach a local file as an attachment to an emails created and sent via Javamail.  This is a new task for me and I have managed so far to get everything working right except the part where I can upload and attach a local file to an email message.  I have a form page containing this field:   <TR> <TD><FONT FACE="verdana,arial" SIZE="-2"><B>Attach file</B></FONT></TD> </TD><TD><INPUT NAME="attachment1" id="attachment1"  type="file"></TD> </TR>.  I click "Browse" and the input field is filled with a string of text i.e. "c:\temp\readme.txt" stating the location and name of the local file to attach.  I click Submit and this code runs in my script that pertains to uploading and attaching a file:
    BodyPart messageBodyPart = new MimeBodyPart();
    messageBodyPart.setText(EmailBodyText);
    Multipart multipart = new MimeMultipart();
    multipart.addBodyPart(messageBodyPart);
    messageBodyPart = new MimeBodyPart();
    DataSource source = new FileDataSource(Attachment1);
    messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName(Attachment1);
    multipart.addBodyPart(messageBodyPart);
    try {
    message.setContent(multipart);
    } catch(Exception e) {
    e.printStackTrace();
    This works but only works on attaching a file that is stored on the server and not the one of my local drive.  If I wanted to attach c:\abc.txt that sits on my local drive to an email I can go through the motions of doing that but it does not work.  So I created another c:\abc.txt file but placed this one on the server where Javamail resides.  I clicked Browse, navigated to c:\abc.txt on my local drive, clicked Submit and it worked great.  But -  attached to the resulting email was abc.txt that sits on the server and not the one on my local drive.  What I now need is code that will actually upload a file from my local drive and attach it to my outgoing email.  Am rather new to Javamail so I do not know the details of how to do this particiulat task (uploading and attaching a local file to Javamail).  Am using Java 1.7, Javamail 1.4.5 and Tomcat 6.0.  Form is in JSP.   Other than my needing to attach a local file to an email Javamail is working great for me.  I hope I have stated this clearly; any help would be appreciated.  Thank you.

    You need to use an html form to upload the file to the server, store it somewhere, and then reference it in your JavaMail message.  JavaMail won't help you upload the file; that's more of an html/Servlet problem.

  • Including Source code in SWC

    Hi All,
    How do i include the source code in the generated SWC file
    with the help of Compc compiler through the command line? (and i
    know how to do it with the flex builder)
    Let me know is there any other way to do it through the
    command line.
    Thanks

    Hi there,
    Ihv dowloaded a WAR file and i want to see the other code files Canit be done???
    Plz tell me how?
    FUN@MY_SUN

  • SO_NEW_DOCUMENT_ATT_SEND_API1:How to correctly attach a PDF file

    I have an ABAP report that will send an email and attach the PDF file.
    - convery spool to PDF     : CONVERT_ABAPSPOOLJOB_2_PDF
    - to send email          : SO_NEW_DOCUMENT_ATT_SEND_API1
    How I execute SM36:
    1. SM36
    2. Job Name
    3. Spool List Recipient : select my own address as internal user (I didn't tick any of the check box for the general attributes)
    When I go to TCODE SO01(SAP Inbox)
    The attachment I see is just a link to the output of my classic ABAP view report, it's not a PDF File.
    But I in SO01, I create a mail and attach PDF file, receive it my SAP inbox and can also open the attached PDF directly by just double clicking it.
    Thanks.

    Hi  Jaime Cabanban,
    Please find the Below Sample Program,
    BCS_EXAMPLE_8
    Thanks
    Surendra

  • How to get the source code in PAR file

    Hi All,
    I used the PAR migration tool to migrate from PAR to EAR file. When I imported the EAR into NWDS 7.3, I was just able to see the structure and jsp files and could not find the java source code files. I would requires the java source code to make modifications so that deprecated APIs can be replaced and to also make the code compatible with JDK 1.6.
    I think the original 7.0 PAR file itself does not contain the source code. I decided to use the "Include source code" option when exporting the 7.0 PAR.
    I have the portal application DC project in my NWDS 7.0. However, when I try to export the PAR file using Export --> PAR File -- > Next... I am unable to select any project from the list. The list appears blank with disabled Next & Finish buttons.
    I also noticed that in the portal DC application structure, there is a .sda file under /gen/default/deploy. Also there is no PAR folder under /gen/default/public.
    How do I include the source in the PAR file so that I can edit the same after migrating to EAR format ?
    Regards,
    Melwyn

    DC and PAR/EAR stuff are different formats, SC/DC is an archive type used by NWDI, if I got it right.
    How do I go about generating the PAR file (with source) ?
    In fact through including the seources while creating the PAR/EAR in NWDS, but: no need to do that, you can also depack SDA (rename it to zip). If you wanna just see the Java sources you will find them there, otherwise decompile as Vijay already sad.
    cheers

  • How can I attach a PDF file to an email I am replying to?

    Hi!
    How can I attach a PDF file already saved on my iPad to an existing email I am replying to from my inbox??

    If you have the PDF stored on the iPhone as a separate file you obviously also have a third party app for reading it, so you should be able to e-mail it from there.
    If it's on an existing e-mail, forward the e-mail and just change the contents but include the pdf

Maybe you are looking for

  • Not just another file sharing thread......

    Running a forum search gives me a plethora of file sharing threads. Most of these threads are a one answer type of question or a simple "Preferences>Sharing>File Sharing type of answer. I am no expert here, I learn something every time I visit, but I

  • What is the best book to buy to learn PS

    Can any body recommend a good book to help with PS.

  • Overloaded operations in OSB..

    Hi, I have a .net web service. Its WSDL has defined overloaded operations. But when i create business service using the WSDL in OSB, OSB reflects one operation only when i create branching. Is OSB (10.3.1) able to handled overloaded operations? Thank

  • Missing setup cd

    I was thinking installing the Logic Pro to my iMac today, and i can´t find the Setup CD... I have the other cd´s and serial number, but missing the setup cd! Anyone who know if this can be downloaded somwhere?

  • Can't finish editing my playlist?

    Every time I try to finish editing my playlists, the "done" button doesn't work. All the other buttons work, but because of this I can't save the changes I have made. My iPod nano is 6th generation. Can anyone help me?