Class not being created when running from jar

Hi all,
Tech info first:
IDE: Sun Java Studio Enterprise 8
Plaform: windows xp
I have created a Swing app, that connects to a com port(using the RXTXcomm). now, when I run the app in the IDE, everything is fine and dandy, but, when I run the jar file, the application loads, but the class in the app which deals with the com port is not created. here is the code:
    private static void createAndShowGUI() {
        //Make sure we have nice window decorations.
        JFrame.setDefaultLookAndFeelDecorated(true);
        Main receiver = new Main();
        receiver.getPropertiesFromFile();
        //Create and set up the window.
        frame = new JFrame("R�FILOG RFID Empf�nger");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setContentPane(receiver.mainPanel);
        frame.setJMenuBar(receiver.createMenuBar());
        frame.addWindowListener(receiver);
        frame.setLocationByPlatform(true);
        //Display the window.
        frame.pack();
        frame.setVisible(true);
        portListener = new RFIDReaderComm(receiver, "COM3");
        portListener.getConfiguration();        
    public static void main(String[] args) {
        //Schedule a job for the event-dispatching thread:
        //creating and showing this application's GUI.
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                createAndShowGUI();   
portListener in the createAndShowGUI() function is an interface level parameter and is the class that is not being created. There is no error message.
If I move the two lines that deal with the port listener before the frame.pack() line, then the GUI is not even loaded, and when I view the processes in the task manager, the process starts and then quits without anything becoming visible. So from this I guess there is a problem with creating the class when running from a jar, but without any error messages, I have not a clue where to start...can anyone help?
thanks in advance.

Well, some more info, so maybe someone can come up with some tips for me...this is really important, and any help is greatly appreciated.
This is obviously a classpath problem. After running the my jar file with java -jar I finally got the error NoClassDefFoundError
Kind of obvious I suppose. But, I cannot seem to get the two jar files I need into the classpath. I have tried the following:
Updating my computers CLASSPATH with the relevant paths - not working
Trying to get the Sun Java Studio Enterprise to build the required jar files into the final package - cannot get this to work
Tried updating the manifest.mf in the following way:
Created a text file Manifest.txt with the lines:
Class-Path: RXTXcomm.jar
Class-Path: BrowserLauncher2-10rc4.jar
ran the command (in the same directory as Manifest.txt):
jar cfm RUFILOGScanner.jar Manifest.txt classes/*.class
but this does not work either. When I run: jar tf RUFILOGScanner.jar all I get is:
META-INF/
META-INF/MANIFEST.MF
classes/
classes/CRCCalculator.class
classes/Main$1.class
classes/Main.class
classes/RFIDReaderComm.class
classes/URLDialog$1.class
classes/URLDialog$2.class
classes/URLDialog.class
the classes I want added are not there. Plus, (I think this is because I am running SE8) the manifest.mf is not in a folder called META-INF. In fact, I have no folder called META-INF. Is this significant?
Please, can anyone help me?

Similar Messages

  • BeanInfo not being found when running from a JSP in WebLogic 6.1

    Hi,
    I wrote a BeanInfo base class for dynamically building HTML Tables using an array of beans. I wrote the code and tested it all using the command line and verified that the Beans were dynamically loading and displaying based upon the rules I had defined in the base class. Basically I was using the Introspector to find the class. When I transfered the code into a JSP running on WebLogic 6.1 it is never finding my BeanInfo. I even tried having the end BeanInfo be the bean itself (Had the Bean extend the BeanInfo). Still didn't find it and keeps giving me the default (or GenericBeanInfo) class to represent my Bean when calling the Introspector.getBeanInfo. I am making sure that my Introspector.setBeanInfoSearchPath is being done correctly. Like I said it is working ont the command line.
    Why is the Introspector not finding the correct BeanInfo class for my Bean when I do it inside of a JSP?

    Never mind, I figured out what is wrong. It always returns the GenericBeanInfo but it still goes throught the motions of calling the underlying BeanInfo.
    So, ignoe. I can't delete the topic.

  • Jdbc connection blocks when run from jar

    The following code establishes a connection EXCEPT when run from within a jar file:
    String jdbcDriverName = "oracle.jdbc.driver.OracleDriver";
    String dbConnectionURL = "jdbc:oracle:thin:@192.168.2.7:1521:PRISM";
    String userName = "mdo";
    String password = "mdpass";
    // Load the JDBC driver and create a connection to the database
    Class.forName( jdbcDriverName );
    OracleDataSource dataSource = new OracleDataSource();
    dataSource.setURL( dbConnectionURL );
    dataSource.setUser( userName );
    dataSource.setPassword( password );
    connection = dataSource.getConnection();
    When run from a jar file, the application does not execute beyond the line:
    connection = dataSource.getConnection();
    No exceptions are thrown, it just appears that getConnection never returns.
    Do I need to do anything different to execute this code from within a jar file?
    Thanks in advance,
    Phil
    <><

    When building the JAR file, I inadvertently included files from two Oracle JDBC driver versions (1.2 and 1.4). I was building a single jar file with all files in it.
    I am guessing same named files existed in both driver JARs and caused "confussion" when combined into the single JAR.
    Still, I would have expected an exception to be thrown or a null connection to be returned instead if the thread just blocking.
    Thanks for all replies,
    Phil
    <><

  • Parent members not being updated when running AGG

    I have a scenario where eventhough the bottom level members change the parent members are not being updated when we run an agg
    For example if the bottom level member was 150 and we run the aggregate the numbers are fine. If the bottom level member was changed to #Missing then the parent members are not updated when we run the agg
    IN the script below we use CALC DIM(COstCenters,SpaceTYpe)
    My concern is the setting SET FRMLBOTTOMUP ON i use, because it looks like it's skipping that block. HOw can work around this issue without affecting the performance too much. For example using SET CREATEONMISSINGBLK ON might help, but will have a performance impact
    Here are the details of the script
    SET MSG SUMMARY;
    SET FRMLBOTTOMUP ON;
    SET CALCPARALLEL 4;
    FIX("Budget","Version1", "FY2011", "RSF","No_Period","M3","M6","M9","M12",@IDESCENDANTS("$1"),@LEVMBRS
    (SpaceType,0),@LEVMBRS(CostCenters,0))
    CALC DIM (ManagedBU,AllocatedBU);
    ENDFIX
    FIX("Budget", "Version1", "FY2011", "RSF","No_Period","M3","M6","M9","M12",AllocatedBU,ManagedBU,
    @LEVMBRS(SpaceType,0),@LEVMBRS(CostCenters,0))
    "$1";
    ENDFIX
    /* Aggregating numbers for the report so it could be viewed n a top cost center level */
    FIX("Budget", "Version1", "FY2011", "RSF","No_Period","M3","M6","M9","M12",@IDESCENDANTS(AllocatedBU),@iDESCENDANTS(ManagedBU),@IDESCENDANTS("$1")
    CALC DIM(COstCenters,SpaceTYpe);
    ENDFIX
    /* Aggregating numbers for the report so it could be viewed in a top regional level*/
    FIX("Budget", "Version1", "FY2011", "RSF","No_Period","M3","M6","M9","M12",@IDESCENDANTS(ManagedBU),@IDESCENDANTS(AllocatedBU),@IDESCENDANTS(SpaceType),CostCenters)
    @IANCESTORS("$1");
    ENDFIX

    yes Aggmissg will work with from bottom up. As for performance, believe it or not, having Aggmssg on is quicker that off. That is because when off, it has to look at the children blocks to determine if there are data values present that need to overwrite the parent value where hen it is on, it does not look it just does it.

  • Program doesn't show icon when run from JAR

    Hello,
    I have a working program with menu and toolbar buttons with icons. When I compile and run the JAR it runs fine with all icons showing up. The icons are located in a folder named icons. They are referenced inside the Java code by "icons/iconName.png". However, after I make a JAR file of the program, it runs normally, but the icons do not show up.
    I use the command line command :
    jar cvfm Program.jar manifest.txt *.class"
    Then I open the JAR with WinRar and place the icons folder in the archive.
    My manifest.txt looks like this:
    {code}Manifest-Version: 1.0
    Class-Path: .
    Main-Class: MyMainClass
    SplashScreen-Image: splash.png{code}
    Any ideas what I did wrong?
    Thanks.

    I was having similar problems. If you use an IDE, such as NetBeans BE SURE to copy that image/ folder into the build/classes in the right place in the hierarchy. In any event, not having resource files such as textfiles and images over in the classes will prevent the IDE from executing a java run. That is obvious and easy to remedy.
    And then the discovery: what works in .class files won't work in .jar. I found this link and tried the following code in a synchronized thread (you want the images loaded before going further with any inits such as frame.setLocation(), or panel.setSize(), etc.):
    ClassLoader cldr = this.getClass().getClassLoader();
    URL imageURL   = cldr.getResource("images/usa_small.png");
    icons[x] = new ImageIcons(imageURL);Where I found it:
    [Class Loaders|http://bits.netbeans.org/dev/javadoc/org-openide-modules/org/openide/modules/doc-files/classpath.html]
    That will help you on the implementation of proper technique. Not sure about adding files to .jar "after the fact".

  • User Home Directory not being created when "Create Home Now" button hit...

    This is a cross post, since I was not sure where this should end up since it touches two pieces- Open Directory and User Management. Any help would be appreciated!
    I am running OS X Server 10.5. All of my user accounts have been migrated over along with their home directories. Problem is that when creating new users and then assiging a home directory the system does not actually create the directory.
    Currently all users are setup to have their home directory setup here:
    afp://172.16.110.100/Users/'username'. The Users folder has been setup to automount, and all users that have folders can be accessed without issue.
    The problem is when I create a new user, select the aft://172.16.110.100/Users option and then select "Create Home Now" button and save as it requests... it does not create the directories.
    I have even tried to change the Home patch to make it local to see if it was an network issue, and used the /Users choice and it will not create the directory in that way either- both location go to the same place.
    The system was obviously able to create the local admin account and directory admin account home folders without issue when the system was installed.
    The permissions for the "Users" folder are as follow:
    directory admin = Read and Write
    local admin= Read and Write
    system user (root)= Read and Write
    admin group= Read Only
    everyone group= Read Only
    The system is in production, so any kind of server resets need to be done after 5pm, so I have not been able to reset AFP service.
    Currently the only services running are AFP, SMB and Open Directory.
    All users have their entire home directories located on the server, and login over Directory Access on their clients, so all user accounts are stored on the server. No one is having issues accessing their files or logging in.
    I just can not create new home directories when I create new accounts.

    You do not have to be logged on as the root user to do this. Launch the terminal and type-
    sudo createhomedir -a
    I run an XServe with Tiger server ( 10.4.11) and this has been the workaround I have been using.
    Good luck.

  • VO substitution not taking effect when running from Jdev

    Hi,
    I made a VO substition. However, when running the page from Jdev, the substition is not in effect. When I press "about this page" I see the original view objects - not my own.
    I have verified that my .jpx file contains the substitution.
    I have tried followed the instructions in the OAF user guide and added -Djbo.project=<myprojectname> to the project runtime java options.
    However - if deploying the jpx file on the server with jpximport, the substitution is working. But why is it necessary to deploy that substition on the server when running locally. Also, that should not be necessary according to the user guide.
    Any ideas?

    When running locally u don't need to dceploy substitution on server.You only need to add substitutions in jdev and added -Djbo.project=<myprojectname>
    Note that
    the Name value is the .jpx file name without the .jpx extension (for example, ExtendLabSolutions). Be
    sure to include a space between any existing options and the new option.Also confirm u have put correct jpx file name.
    When I press "about this page" I see the original view objects - not my own.
    This is because about this page must be picking VO definations from DB, and since ur extended files are not in jdev... it will not reflect here.--Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • "Class not registered​" Error when running Windows Explorer

    Hi, 
    I've been having trouble running Windows Explorer + any related programs (Control Panel, Internet Explorer, etc.).  Whenever I try to run such programs, a popup containing the following comes up:
    C:\Users\<username>\AppData\Roaming\Microsoft\Wind​ows\Start Menu
    Class not registered
    Any help?  I've tried using a registry cleaner, and the command regsvr32 ExplorerFrame.dll didn't work.  I don't recall installing anything, and everything else seems to be fine.
    Thanks in advance. 
    EDIT: I've tried System Restore, didn't work. 
    Message Edited by NuclearTide on 01-20-2009 04:45 PM

    Specs: 
    Lenovo 3000 N100
    Windows Vista Home Premium
    Genuine Intel (R) CPU T2080 @ 1.73 GHz (2 CPUs)
    1014 MB RAM
    DirectX 10
    Intel(R) GMA 950 

  • Spark Classes and Skins not being included when running FlexUnit task via Ant

    I have a series of unit tests that run on a spark component. This spark component has a custom skin defined for it, and that is working beautifully.
    Inside that component is a spark list... By default, after digging into the list code, spark lists should use a default skin called "BorderContainerSkin". When I run the application that uses this component directly (whether compiled via FlashBuilder or via Ant/Hudson), the component itself runs and looks exactly like I would expect. When I run my unit tests in the browser (via Run As Web Application command on my TestRunner), the unit tests all perform as expected.
    However, when I run the FlexUnit tests via Ant (either through windows non-headless, or linux headless), an exception is thrown with the following error:
    Error: Skin for FromToList132.FromToListSkin133.VGroup134.fromList cannot be found.
        at spark.components.supportClasses::SkinnableComponent/attachSkin()[E:\dev\4.x\frameworks\pr ojects\spark\src\spark\components\supportClasses\SkinnableComponent.as:632]
        at spark.components.supportClasses::SkinnableComponent/validateSkinChange()[E:\dev\4.x\frame works\projects\spark\src\spark\components\supportClasses\SkinnableComponent.as:405]
        at spark.components.supportClasses::SkinnableComponent/commitProperties()[E:\dev\4.x\framewo rks\projects\spark\src\spark\components\supportClasses\SkinnableComponent.as:419]
        at spark.components.supportClasses::ListBase/commitProperties()[E:\dev\4.x\frameworks\projec ts\spark\src\spark\components\supportClasses\ListBase.as:785]
        at spark.components::List/commitProperties()[E:\dev\4.x\frameworks\projects\spark\src\spark\ components\List.as:907]
        at mx.core::UIComponent/validateProperties()[E:\dev\4.x\frameworks\projects\framework\src\mx \core\UIComponent.as:7933]
        at mx.managers::LayoutManager/validateProperties()[E:\dev\4.x\frameworks\projects\framework\ src\mx\managers\LayoutManager.as:572]
        at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\4.x\frameworks\projects\framewo rk\src\mx\managers\LayoutManager.as:730]
        at mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\4.x\frameworks\projects \framework\src\mx\managers\LayoutManager.as:1072]
    (Note: fromList is the id of the spark list used in the FromToList component.)
    The issue is that the "BorderContainerSkin" class isn't ever getting imported along the way. I did several things that worked to "fix" the problem, but they are all hacky and don't explain the root problem:
    1- If I explicitly import that skin into my test file, then everything works great.
    2- If I add the <includes> directive into my mxmlc task in the Ant file, and again specifically call out that skin class, then again it will work.
    However, how would I know what skins from the spark library are going to get included and which aren't? How would I know that a default skin isn't included or where to find it or even what it is?
    It seems like either I'm missing something in my Ant file or there is a serious bug here with the FlexUnit task. Can anyone shed light on if this is a known issue, any permanent fixes (that don't involve keeping track of a long list of strings of class references), or anything that I might be missing?
    Thank you for any help!

    Guessing the ant tasks aren't forcing the include of the spark skins libraries... which is a little silly. I would assume the compiler would take care of this but it is something we can investigate...
    Not 100% sure as to why, but this is what it sounds like.
    Mike

  • External projector not being detected when running Leopard

    We have recently upgraded a number of our instructor laptops to Leopard. Since the upgrade, we have confirmed an odd problem.
    We have a number of multimedia carts in classrooms. The carts use an Extron VSW2 splitter to supply video to a ceiling mounted NEC LT280 projector. One input on the Extron device gets video from a CPU in the cart, the second input is for the laptop.
    We have tested identical computers (2 - PowerBook G4 12" laptops, and 2 - MacBook Pro 15" laptops). In each case, one laptop is running OS 10.4.11, the other 10.5.1.
    The computers running 10.4.11 detect the the projector and mirror the display. The computers running 10.5.1 will not detect the projector. The computers running 10.5.1 blank the screen when the video cable is attached, but nothing is displayed through the projector. System Profiler reports under 'Hardware -> Graphics/Displays -> Display Connector:' No Display Connected.
    If I bypass the VGA splitter (plug the laptops into the VGA port at the wall plate which goes to the projector), both the 10.4 and 10.5 computers function perfectly.
    If I do not have a desktop connected to the VGA splitter, both the 10.4 and 10.5 laptops seem to work fine.
    I have contacted the vendor that installed the units – Extron has never heard of this problem.
    Right now this issue is affecting several instructors, but later in the term, as students need to give presentations, this will turn into a major impediment.
    My speculation (unfounded, at this point) is that Leopard may be reducing the signal/voltage being delivered to the video port; the result being that there is not enough signal to trigger the switchover in Extron device.
    Any guidance or direction would be greatly appreciated.

    I think that Extron has an loop through on Input 1 for a monitor. You're probably using it for the CPU on the cart. Try running the Macs into Input 1 instead of Input 2. You may get it to work. The proj output on Extron stuff is usually buffered so that the projector doesn't pass info back to the computer. If you go into input 1, the computer will "see" the monitor and output properly.
    Maybe.
    Mind you, that doesn't help a whole lot 'cause you need the monitor for the CPU, right?

  • JavaHelp not rendering HTML when run from Fatjar

    I'm experiencing a strange problem with JavaHelp: when I run my app from Eclipse and open JavaHelp, the html help pages render just fine. If I Fatjar the app and run it from the fatjar, however, then when I open the JavaHelp, my html help pages are displayed as raw text, HTML tags and all. For some reason it's not rendering the HTML. I'm guessing that maybe the fatjar is messing up the JEditorPane's ability to detect the content-type of the help pages, but I have no idea how to fix it if that's the case.
    I'm using a plain vanilla HelpSet file, pretty much straight out of the JavaHelp User's Guide.
    Anyone have any idea what might be causing this or how I might fix it/work around it? Has anyone else seen this problem before?

    For whatever it's worth, I am seeing this problem as well. It doesn't seem to have to do with FatJar, as I'm seeing it when I simply do the following:
        HelpSet helpSet = null;
        final ClassLoader cl = this.getClass().getClassLoader();
        try {
          helpSet = new HelpSet(null, HelpSet.findHelpSet(this.getClass().getClassLoader(), "IdeHelp.hs")); // XXX bogus for now
        } catch (final Exception kaboom) {
          helpSet = null;
        if (helpSet != null) {
          final HelpBroker helpBroker = helpSet.createHelpBroker();
          final ActionListener helpItemActionListener = new CSH.DisplayHelpFromSource(helpBroker);
          final JMenuItem primaryHelpItem = new JMenuItem("Help\u2026");
          primaryHelpItem.addActionListener(helpItemActionListener);
          helpMenu.add(primaryHelpItem);
        }I suspect it's a problem with the classloader, but I haven't dug to find out what exactly.
    Best,
    Laird

  • RTF template does not format properly when run from Concurent Manager

    Hi
    I have complex RTF template; many stuff in are in header in word table format,body section again fields are in table format and Footer again in word table format.
    When I run BI Publisher report as concurrent request half the content like header and footer are not displayed. I can see copmlete report when I preview using XML data in word. Is there any limitaions that certan fonts, word format features not supported in RTP template. What is the best way to put header, body and footen in main body area rather using Header and Footer features of word?
    Thanks and regards

    You can use the start:body etc syntax to move your header/footer into the main part of the document. This way you can use form fields.
    Regards,
    Gareth

  • Tag not being created after upgrade from 9i to 10g

    We're upgrading from 9i to 10g - about time - and we've hit some "unexpected behaviour".
    If I run
        SELECT  xmlelement("TestMsg",
                        XMLFOREST(m.tx_id   "MsgNum",
                                  m.tx_type "MsgTyp"
                                  ) MESSAGE -- this is the alias for the XMLFOREST item
                        ) ut_xml
        FROM (select 1 tx_id, 'test' tx_type from dual) mon my 9.2.0.4 database I get
    <TestMsg>
      <MESSAGE>
        <MsgNum>1</MsgNum>
        <MsgTyp>test</MsgTyp>
      </MESSAGE>
    </TestMsg>- an extra tag is created based on the alias of the XMLFOREST item.
    on my 10.2.0.4 database I get
    <TestMsg>
      <MsgNum>1</MsgNum>
      <MsgTyp>test</MsgTyp>
    </TestMsg>no MESSAGE tag.
    Some of the XML parsing we have is taking account of this MESSAGE tag and hence is now breaking.
    I guess my question is whether we've messed up the install of XMLDB or whether the 9i behaviour was incorrect and we should amend the parsing to the 10g behaviour.

    Behavior change...?
    SELECT  xmlelement("TestMsg",
                        xmlelement("MESSAGE",
                        XMLFOREST(m.tx_id   "MsgNum",
                                  m.tx_type "MsgTyp"
                        )) ut_xml
    FROM (select 1 tx_id, 'test' tx_type from dual) m
    will give output in 10.2.0.4.0 EE
    UT_XML
    <TestMsg>
       <MESSAGE>
          <MsgNum>1</MsgNum>
          <MsgTyp>test</MsgTyp>
       </MESSAGE>
    </TestMsg>Edited by: Marco Gralike on Mar 29, 2011 1:07 PM

  • XMP files not being created with DNGs...

    I'm used to using Bridge with ACR to process Nikon NEFs. But a recent camera update has me experimenting with converting the D3's NEFs to DNG files and editing them with CS2 and Bridge 1.04 which works better on my system. I've also experimented with CS3 and Bridge 2.1.1.9 with the same DNG files.
    In both cases XMP files are not being created when working with DNG files. I have enabled "Save image settings in : Sidecar ".xmp" files" turned ON. But they do not seem to be generated and I assume the ACR adjustments are being embedded in the DNG file. Meanwhile doing edits on NEF files continues to create .xmp files as expected.
    I find .xmp files to be very useful and I'm wondering why they're missing with DNG files? Are they hiding somewhere other than in the same folder that the images reside in?
    Thanks.
    Russell

    > The information contained in the XMP file is stored in the DNG file so there is no need for a separate file.
    Aww, yuck!! That's a real drag...
    When editing lots of files (yesterday's shoot produced 8GB) I back everything up to off-line storage and then, after doing all my edits and crops in ACR, I only have to copy over the small XMP files which takes no time at all.
    So if I re-edit the DNG with ACR I have to re-copy ALL the files again to the off-line storage.
    I used to sometimes even save 2 versions of the xmp files when I needed 2 different crops of the same images, such as doing a wide screen 'cinema' crop for a corporate client's Intranet presentation of their event, as well as more standard crops to be used for their newsletters.
    Guess I won't be using DNG any more..
    Thanks for the help Kees :-)
    Russell

  • "Could not find the main class" when running a jar

    Hi, I'm trying to create and run a jar from my application, but I can't figure out how to properly set an entry-point. Looking at the Java Tutorials http://java.sun.com/docs/books/tutorial/deployment/jar/index.html I still can't get it to work.
    I have a directory myApp, which contains a directory images and some class files, including mainClass.class. I also have a manifest Manifest.txt in the directory myApp with the following line:
    Main-Class: mainClass.class
    + one empty line
    I create a jar successfully, while inside the myApp directory, with the following command:
    jar cfm myApp.jar Manifest.txt *.class images\*.*
    I then proceed to run the jar with the following command:
    java -jar myApp.jar
    and receive the following error:
    Exception in thread "main" java.lang.NoClassDefFoundError: myApp/class
    My completely uneducated guess is that there is something wrong with my manifest. The tutorial says that the line should be:
    Main-Class: MyPackage.MyClass
    I'm assuming that I get the error because I didn't specify a package, which I didn't do because I didn't know what to put there. Do I even have a package?
    Can anyone tell me what I've done wrong? thanks.
    Message was edited by:
    SmurfZG

    One problem is you are specifying a file name instead of a class name. It probably should beMain-Class: mainClassA good test is to run your app before jaring it - if you run it with "java mainClass" then the Main-Class attribute must be mainClass.
    Also class naming conventions say that class names should start with a capital letter - MainClass for example. It is just a convention, but it is easier to get help when you follow conventions.

Maybe you are looking for

  • How to increase on(press) movie Clip value

    I have a variable at frame 1, var a=0; i have a movie clip and i am writing a code on it on(press){ a=a+1; trace(a); bt the tracing value is showing NaN, how can i increase that value ?? even if i am doing the same thing with button then its working

  • Can i send images by email as attachments rather than embedded in email

    can i send images by email as attachments rather than embedded in email

  • IAS with Resonate

    We are putting Resonate in front of iWS+iAS to provide load balancing and fail-over between two servers. We are trying to set up sticky session for our iAS applications. I was told that we need to modify the session cookie name used by iAS. Is there

  • Ping response

    Please be gentle with me thiss is my first post and I'm not really sure if I'm in the right place - if I'm not let me know and I'll repost!! I have an iMac with a time capsule that I am using for back-up extra storage and wireless internet, I think I

  • Want to degrade project quality & force content to fit on a dual layer disk

    I have a project that is around 19 GB in size, according to my DVDSP 3 meter. I want to degrade the quality of the video and force it to fit on a dual layer disk. Is this possible? Or, should I send the project to Toast and compress it there, forcing