BUG  in package ????

I wrote a public class Time ( saved it in Time.java ) in a package amit.java.time and another public applet class TimeTest ( saved it in TimeTest.java ) which imports the Time class . Both the class and the applet class code compiled successfully . But when I run the appletviewer from command line the HTML file shows an error that the Time.class is not found .
THE PROCEDURE I FOLLOWED :--
1> I compiled (Time.java) with the command : javac -d \ Time.java
2> Then I set the classpath with the command : set CLASSPATH=\;
3> Next I compiled TimeTest.java with the command : javac TimeTest.java
4> Then I created the html file
<html>
<applet code="TimeTest.java" width=300 height=100>
</applet>
</html>
And I saved it as TimeTest.html
5> Finally I run the appletviewer with the command
: appletviewer TimeTest.html
ERROR:--
java.lang.NoClassDefFoundError:amit/java/time/Time     
Where is the BUG !!
Handling Packages in java proves to be a difficult affair to me :-)
Sorry pals I'm running out of dollars so dont press me on that ......THANK U.( AMITAVA )

I have my Time class in a packageSo it seems :)
so is my other class TimeTest (in
the same directory).SO ...So what exactly is in the package and where are the class files???
Is TimeTest a part of the package?
Where is TimeTest.class and the HTML file?

Similar Messages

  • Is this a bug in packaging luakit?

    I've recompiled webkitgtk2 without geoclue support, as it provided nothing (for me) but a bunch of extra dependancies. After compiling and installing was finished I have done "pacman -Rsn $(pacman -Qdtq) which removed geoclue with all its dependancies (enchant for example). It turned out luakit is hard dependant on (lib)enchant and was unable to run until I installed enchant.
    Luakit is dependant on libenchant (part of enchant package) but if you check what pacman says about luakit's dependancies you won't find it.
    Should I open a bug report as webkitgtk (one of the packages in question) is not the same on my machine and in the extra repo?

    Pacman doesn't list dependencies recursively.
    Most packages (including luakit) have a lot more dependencies than are listed when you do a 'pacman -Si <pkg>'. Each dependency listed by pacman will likely depend on other packages, and those packages will depend on still other packages, etc. etc.
    I believe luakit has over 150 actual dependencies.

  • EA2: bug in package run/debug dialog

    The PL/SQL block is not (re)generated correctly when switching between implementations of an overloaded func/proc:
    Whenever you run/debug a package from sql developer a dialog box is opened in which you can select a TARGET (any of the public function/procedures for the package).
    A pl/sql block to execute the the selected TARGET is then dynamically generated.
    If you have an overload procedure it is presented as
    FUNC1(1)
    FUNC1(2)
    FUNC2
    FUNC3
    If you switch between 2 overloads, the parameters to the left actually changes correctly. So it does notice the change
    However the PL/SQL below is unchanged. The variables are still valid for FUNC(1) instead of FUNC(2)
    Edited by: apodictus on Dec 11, 2010 10:08 PM

    I already noticed the bug is probably a bit more delicate then originally stated.
    I extended the original overload procedure for which I found the bug with a few more formal parameters.
    To my surprise after that alteration, the PL/SQL block was suddenly generated correctly.
    Might have been an initial invocation then...

  • [CS3] Bug in Package - missing includingHiddenLayers ...

    hi
    there is option in UserInterface - but there is no option in Scripting - is there ANY workaround ?
    I thought that this bug is only in VB - but it is also in JS ...
    robin
    www.adobescripts.co.uk

    By the white beard of Jove, you are correct. My bad. (I never use hidden layers OR packaging -- so I took the first search hit.)
    Fortunately, all you have to do is ... upgrade to CS4
    bool packageForPrint (to: File, copyingFonts: bool, copyingLinkedGraphics: bool, copyingProfiles: bool, updatingGraphics: bool, includingHiddenLayers: bool, ignorePreflightErrors: bool, creatingReport: bool[, versionComments: string][, forceSave: bool=false])
    includingHiddenLayers
    bool
    If true, copies fonts and links from hidden layers to the package.
    (from the CS4 help.)
    It sounds like you have to set all layers to visible, package, then hide the invisiblies again.

  • Bug Tracker Packaged application installation Error.

    Hi,
    I installed 11g (apex came with 11g) and 10g application server. Now, I am trying to install the bug tracker application that came on apex.oracle.com. I am getting this error right off the bat.
    SQL*Plus: Release 11.1.0.6.0 - Production on Mon Oct 29 16:59:51 2007
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> @bug_tracker_installer_0.9.sql
    APPLICATION 660 - Bug Tracker, 0.9
    Set Credentials...
    Check Compatibility...
    API Last Extended:20070525
    Your Current Version:20070525
    This import is compatible with version: 20060224
    COMPATIBLE (You should be able to run this import without issues.)
    Set Application ID...
    begin
    ERROR at line 1:
    ORA-20001: Package variable g_security_group_id must be set.
    ORA-06512: at "FLOWS_030000.WWV_FLOW_API", line 46
    ORA-06512: at "FLOWS_030000.WWV_FLOW_API", line 238
    ORA-06512: at line 4
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Can somebody tell me what I might be doing wrong here?
    Thank you,
    Rahul.
    edit:
    sorry, didn't mention this earlier, but, I got the same exact error when I was installing 'Issue Tracker' application too.
    Message was edited by:
    RPuttagunta

    Scott,
    It's been a while since I did this, so, forgot. I will go ahead with your suggestion. Thank you.
    Rahul.
    Message was edited by:
    RPuttagunta

  • Browser bug for package procedure named "delete"

    One should not use a reserved word when naming stored procedures, but while Oracle allows one to create a packaged procedure or function named "delete" (at least in 9.2 through 11.2), an object so named prevents the object browser and outline window from properly displaying all procedure and function names.
    Test case:
    CREATE OR REPLACE PACKAGE my_pk
    AS
    PROCEDURE delete;
    PROCEDURE p;
    END my_pk;
    The object browser shows the word "PROCEDURE" but not any of the procedure names.
    - Doug

    Hi Doug,
    Thanks for reporting this issue. I logged a bug for it:
    Bug 14474608 - FORUM - USING DELETE AS PACKAGE PROCEDURE NAME, NAV TREE RENDERS IMPROPERLY
    Also note that using something like "PROCEDURE delete(key NUMBER);" prevents any member nodes from showing in the package's tree. Many other "reserved words" like select, create, insert result in compilation failure in both SQL*Plus and SQL Developer, but apparently your case should work.
    Regards.
    Gary

  • ORA-02019 while using DBMS_FILE_TRANSFER Package.

    Hi,
    I am trying to transfer the datafiles from 10.2.0.3 database residing on File-system to 11gR2 database residing on ASM. Both the DBs are on Different machines across datacenters.
    I am trying to use Transportable Tablespace to move the data. As a part of it, I am trying to use DBMS_FILE_TRANSFER package to move the 10gR2 files to 11gR2 ASM.
    I am getting the below issue while doing so:
    SQL> exec sys.DBMS_FILE_TRANSFER.GET_FILE('sdir','data01.dbf','tdir','data01.dbf','RECDB');
    BEGIN sys.DBMS_FILE_TRANSFER.GET_FILE('sdir','data01.dbf','tdir','data01.dbf','RECDB'); END;
    ERROR at line 1:
    ORA-02019: connection description for remote database not found
    ORA-06512: at "SYS.DBMS_FILE_TRANSFER", line 37
    ORA-06512: at "SYS.DBMS_FILE_TRANSFER", line 132
    ORA-06512: at line 1
    Above SQL was executed from Target Host (11gR2) to GET file from 10gR2. The above directory objects point to correct locations on respective hosts.
    RECDB - it is the DB link which is owned by SYSTEM user and will connect to 10gR2 DB as SYSTEM user.
    Strange thing is when i am querying the source 10gR2 DB from Target DB using Db link, IT is WORKING fine
    SQL> select name from v$database@RECDB ;
    NAME
    POCREC01
    Elapsed: 00:00:00.15
    SQL> select * from dual@RECDB;
    D
    X
    Elapsed: 00:00:00.12
    I also have TNS entry in target tnsnames.ora as:
    POCREC01 =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = pocserver.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = pocrec01)
    SQL> create database link RECDB connect to system identified by <password> using 'POCREC01';
    Database link created.
    SQL> select * from all_db_links;
    OWNER
    DB_LINK
    USERNAME
    HOST
    CREATED
    SYSTEM
    RECDB
    SYSTEM
    POCREC01
    05-JAN-11
    So, I want help on whether above issue is a BUG with Package (checked in Metalink and cannot find anything) OR am I doing something wrong??
    Thanks

    Can you please use "create public database link " to create the db link as a PUBLIC link and retry.

  • Where are image files (Bug Tracker Application)

    I downloaded the Bug Tracker packaged application and in one of the list (Administration Tab), the list is presented with images. For example User Profiles item show the Image attribute as menu/user_red_32.gif
    I want to know where this image is actually uploaded? I cannot see this particular image in the Shared Components/Images
    What is "menu" in menu/user_red_32.gif
    Thanks,
    Jay

    Jay,
    menu is a folder in your images directory. That's where we store many of the artwork we ship with Application Express. It's a physical folder on your harddisk if you're using Apache or it's a folder in XDB when using 11g.
    Regards,
    Marc

  • Distrib -e "Arch(org|code|pkgs|aur|forum|wiki|bugs|.*)?" -- thoughts

    design the output of every tool we use to look like merge-able chains in a DSCM.
    this is something i've been thinking about long before i came to Arch.  i want to see next-generation package/configuration/change management in a distributed distribution.
    I am familiar with git, and most of what i have tried is relating with it; however. it's only because i know much about it.  other possibilities would be bazaar?/mercurial/fossil/etc.  i like fossil; i have not tried it but it looks closest to what i want to achieve.  i don't think it could scale to the levels we'd need however.
    ASSERTIONS
    ) all PKGBUILD are DSCM (git/?) based
    ) bugs should ride along with software, and be merge-able when branches merge
    ) cryptographic signatures for each user
    ) wiki for each software
    ) forum "channels" for each software
    ) P2P sharing of SCM (blobs/trees/commits in git) units
    ) P2P sharing of common SCM (packs in git) pack
    ) P2P sharing of user configs and ABS build trees; each user may host their own binary/source repo, and sign their packages)
    ) P2P and distribution are good
    essentially, everything is a branch/tree and we use facilities of DSCM with a P2P layer above.  the arch servers could become another node in the system and a long term record keeping peer.  others could add servers.  you could open the wiki/bugs/etc offline, in a web browser, and merge later.  when you edit your PKGBUILDS, they can be forked by others and improved, maybe pushed to the core/community repos.  official repo builds could be signed by an official Arch GPG key.  bring everything as close to source as possible, and spread it out.
    this is completely brainstorming right now, but i have done some tricky cool stuff with git.  i want to keep all/most of the logic/information withing the git DAG (commit graph).  i think we could do neat stuff with the git index, git grafts, and several operations could safely be done in parallel.  we could do mapreduce type calculations on the "ArchNet" to get crazy statistics and visualizations.
    i intend to actually build something soon-ish-awhile.  right now im working on an app that can produce 3D visualizations in VPython from any kind of input stream... i want to hook that kind of stuff up and visualize the arch/linux/gnu/buzz.
    another offshoot project for me was to use VPython (that app is really fun) to navigate and manipulate git repositories in real time.  imagine visualizing your system in 3D while working on it.  like a 3D admin panel where you overlay others configs and entire systems on to your own to see what changes/etc. DSCM can do this.
    thoughts?  what other kinds of things could we do if everything Arch behaved like a P2P super-repository?
    Last edited by extofme (2010-02-14 01:34:37)

    Anntoin wrote:Some interesting ideas. But you need to start small first and make a proof of concept before you try and tackle everything. A detailed plan of how packages are handled and a basic implementation would be a start for example (still not a small job though), then testing the behaviours that you are interested with that framework. You have an idea where you want to go with this but you will need to focus on a few core features and show their benefit before anyone will consider this.
    ah yes of course.  the first step is getting a distributed index, and a "package" format (packages become fuzzy items, below/above); this will be realized in the form of:
    "AUR3 [aur-pyjs] implementation in python (pyjs) + JSON-RPC"
    https://bbs.archlinux.org/viewtopic.php?pid=823972
    i have a package in the AUR for that [aur-pyjs], but it's old as i haven't been able to update in awhile, and won't be until i secure a development job in my new city (next week hopefully).  aur-pyjs will be built on top of the concepts i have outlined in this thread, and will in time become prototype.  check it out; pretty neat even though it can't do much yet :-).  soon though, i will update the package, and it will then be able to run as a native python desktop app (pyjamas allows the same code to run as a website or a desktop app).  at that point, it will be trivial to implement connectivity to the old AUR/repos, and we will in effect have a pacman+aur replacement.  from there i will tackle bugs+forum, of which there are already several implementations on top of DSCM sub-systems to research and learn from.
    stefanwilkens wrote:
    Dieter@be wrote:Interesting ideas, I think i like them.
    but trying to store too many big files (ie package files) inside a VCS seems like a bad idea.  space requirements will be much bigger then what we have now, unless you make the VCS "forget" about older versions or something...
    mostly this.
    the base of what you're proposing is a tremendous amount of data that would never be touched after a new version is released, how do your suggestions fit the rolling release model. Especially relatively large packages updated with high frequency (nvidia binary drivers, for instance) could cause the space requirement to increase rapidly unless moderated.
    packages are not stored in the DSCM, their contents are.  the package itself is simply a top-level tree object in git, linking to all other trees and blobs comprising the package state, and a reference to said tree.  this means everything and anything that is common between _any_ package and _any_ version will be reused; if ten unrelated packages reference the same file, only one copy will ever exist; blobs are the same.  however, some packages may indeed create gigantic, singular blob type objects that always change, and this will be addressed (next...).
    git compresses the individual objects itself, in gz format; this could be changed to use the xz format, or anything else.  it also generates pack files full of differentiated objects, also compressed. it would not always be necessary to have the full history of a package (if you look somewhere above, i breifly touch this point with various "kinds" of packages, some capable of source rebuild, some capable of becoming any past source/binary version, some a single version/binary only, etc.).  you would not have to retain all versions of "packages" if you did not want, but you could retrieve them at anytime so long as their components existed somewhere on the network.  servers could be set up to provide all packs, all version, effectively and automatically performing the intended duty of the "arch rollback machine".  the exact mechanism is not defined yet, but it will likely involve some sort of SHA routing protocol, to resolve missing chunks.
    git's data model is stupid simple; structures can be created to represent a package, it's history, it's bugs/status, and it's information (wiki/etc.), in an independent way so they do not depend on each other, but still relate to each other, and possess knowledge of how to "complete" and find each other.  it will not be structured in the typical way git is used now.  unfortunately this is very low level git stuff, and difficult to explain properly, so i won't go there; just know that ultimately the system will only pull the objects you need to fulfill the directive you gave it, and there will be rules to control your object cache.  your object cache can then be used to fulfill the requests of others; ie. P2P.
    since git itself is in a rather poor state when it comes to bindings, i will be using the pure python git library, dulwich, instead.  while in time this could be changed to use proper bindings, or some bits written as C modules, it's possible pypy will make all that unnecessary.  i don't need anything git core offers except its data structures and concepts; although, i intend to make the entire system (adding bugs/updating packages/editing wiki/editing forum/etc.) _completely_ 100% accessible from a basic git client.  for example, you could write a post in the forum by "committing" to a special branch; you could search the entire wiki, and its history from the terminal while installing; you could add a bug, and link a patch to it, directly usable and buildable by others for testing; this could all be done offline, and pushed once a connection was available... this will lead to all sorts of interesting paths...
    in one super run-on sentence:
    i intend to construct a "social", 100% distributed distribution platform, where everyone is a [potentially] contributing node and has [nearly] full access to all informations, each node's contributions are cryptographically verifiable, each node may easily participate in testing/discussion or lend computing resources, each node may republish variations of any object or collection under their own signature, each node may "track" or "follow" any number of signatures with configurable aggressiveness (no such thing as "official repos"; your personal "repo" is the unique overlay of other nodes you trust, and by proxy some nodes they trust; "official repos" degrade into an Arch signature, a Debian signature, Fedora, etc.), and finally, do all of this is a way that is agnostic to the customized distribution (or other package managers) above it, or it's goals, and eventually spread to other distros, thus creating a monstrous pool of shared bandwidth, space, ideas, and workload, whilst at the same time converging user/developer/tester/vendor/packager/contributor/etc. toward: person.
    piece of cake
    C Anthony
    Last edited by extofme (2010-09-11 05:23:46)

  • Serious flaw with new "Package" feature?

    How could this have been overlooked?
    The Flaw: The new package feature doesn't consider linked images that are in opactiy masks. They are not copied to the new folder.
    Can anyone else confirm this?
    To test:
    Create a new document.
    Link unique image-1
    Create a rectangle with a fill
    Link unique image-2 into rectangle's opacity mask
    Save file
    Then choose Package, everything checked
    When I do this, only 1 image is copied into the new links folder, image-1, while image-2 in the opacity mask is not copied and simply links to the original file/path. 

    Thanks, just submitted the bug, shown below. Hope it's fixed soon, was looking forward to this feature.
    Might also request a feature. I wish the "go-to-link" in the links window actually goes to  linked files that are in opacity masks, selecting it, not just center over it and leav you guessing which shape the opacity mask it is in.
    ******BUG******
    New "Package" feature in Illustrator for Creative Cloud users does not package linked images that are in opacity masks:
    Steps to reproduce bug:
    1. Create new document
    2. Draw Rectangle and fill with color
    3. Enter Rectangle's opacity mask
    4. Place linked image (JPG, PSD) inside opacity the mask.
    5. Exit opacity mask
    6. Save file to desktop
    7. Go to File > Package
    8. Check everything, such as to copy links and create a links folder.
    9. Save to new packaged folder
    Results: New folder with only the AI file and text report. Report shows there are no linked images.
    Expected results: New folder with AI file, Report file that mentions linked image, and  a sub-folder named "links" containing the linked image in the document.
    If the linked image is placed outside the rectangle's opacity mask, then Illustrator will copy the linked image to the new packaged folder. As is, this feature is broken. The first document I tried had 30+ linked images in opacity masks, none were packaged.

  • DM package dynamic script overlays all other packages with same proc. chain

    We have followed the How-To guide on passing dynamic parameters to script logic. (https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d01ce779-f1b2-2b10-07ba-da3734013245)
    The guide states that we should not have to create a separate process chain for each script file we want to execute through data manager.  We should be able to pass the logic file name in via the dynamic script in the DM package itself.
    So we created several DM packages that all reference the same process chain, and in each package script we would like to indicate a different LGF file. 
    However, we are finding that when we change the LGF file (in the TASK of the dynamic script), it is changing the LGF value for all other DM packages that reference the same process chain.
    Has anyone else run into this issue?

    Hi Ashley,
    There was a bug in Package table design in 7.0 when 2 Packages referred to same Application. It's fixed in 7.5.
    Regards,
    Gersh

  • The three main hurdles to porting existing Flash projects to iOS with AIR

    The purpose of this discussion is to identify significant problems currently preventing AIR for iOS from being a viable solution for porting existing Flash apps.  These issues have been largely ignored by Adobe, so I hope that everyone will add to this discussion if you have also run into these roadblocks in targeting iOS with the AIR SDK.  I hope that Adobe staff will address and provide some much needed information with regard to fixing these problems.
    There are 3 main problems with targeting iOS currently, which are probably affecting anyone who is trying to port a project that is both medium to large in size and makes use of SWF loading.  Pretty much any project that has a MVC architecture is going to load SWF assets that are compiled against a view class, so this is likely affecting many people.
    1. Bug - ADT packager runs out of memory when packaging "large" numbers of SWF assets
    https://bugbase.adobe.com/index.cfm?event=bug&id=3511656
    This is a blocking bug that prevents packaging projects with a large number of SWF assets.  It is preventing me from being able to package all the needed assets for my project.  I provided Adobe with my project to package a couple months ago so this bug can be reproduced in house and fixed.  The Adobe employee who was handling this never tried to reproduce the issue and has stopped responding to email and comments in the bug.  Adobe, please have someone take charge of testing and fixing this bug.  It seems like it would be a straightforward fix once the failure is reproduced within a debugger.
    Has anyone who has encountered this problem determined the number of files or classes where it starts to fail.  I've spent some time trying to reverse engineer what the packager is doing when it runs out of memory, so think I can determine how many classes it's working with, but obviously the size of the classes will be variable and so this number will probably be more of a range where we start to get into the failure state.
    Please let me know if you can reproduce this issue with your project with many SWF assets and upvote the bug if you are already aware of this one.
    2. Bug - SWF reloading when doing a "real" (AOT) compile
    https://bugbase.adobe.com/index.cfm?event=bug&id=3636385 
    There is already a forum post that covers the history of this issue (http://forums.adobe.com/message/4920638) but that also covers some issues in older AIR builds with loading of any SWF asset (previously fixed), where this bug deals specifically with reloading of SWF assets that include compiled bytecode (ABC).
    The expectation here is that all versions of the Flash runtime should handle SWF reloading with ABC in the same way, so that a single codebase can be used to target web and iOS (or any other platform).  This is the only issue of the 3 that has a legitimate work around, in my opinion, because the assets can be cached within the app within a loading manager layer.  All the application code that makes loading calls can stay the same, and a compiler flag can be used to enable this caching for iOS builds, with subsequent requests returning a new instance of the cached asset.  This can potentially lead to a very bloated memory footprint for the running app after a period of time, though, which could make some apps perform poorly, so a bugfix is ultimately needed.
    3. Unimplemented feature (?) - The constraint that a single ApplicationDomain is used when running AIR for iOS 
    I did ask about this in the same forum post as SWF reloading but didn't get an Adobe response.  Why does this constraint exist?  My guess is that the AIR runtime for iOS simply hasn't implemented multiple ApplicationDomain support at this point, and that this was done to focus resources on other high priority features for the iOS runtime.  It's possible that there is some aspect of the iOS operating system that makes it difficult or impossible to implement this feature, which may be why it's been avoided to this point, but obviously this is all conjecture without hearing from Adobe on it.
    This is a major issue that needs to be addressed.  For us, the problem is that our SWFs for multiple instances of the same type of asset use the same name for the AS export.  For example, each item an avatar can equip is a single SWF with multiple sub assets -- the parts which comprise the item.  Each of the parts will have an AS export name based on the avatar facing and where it is equipped, like "fv_head".  This naming is consistent across all items, so we will load a lot of assets containing "fv_head" simultaneously.  This normally works fine because the default behavior for Flash has always been that each SWF is loaded into a new ApplicationDomain instance, but for iOS a single ApplicationDomain must be used, causing these names to collide.  The last SWF loaded containing a given AS export name overwrites the previous ones of that name.
    The work around for this, and I use that term loosely, is to go through and uniquely name every AS export in every asset where sets of assets with the same export name is used. For us that is hundreds of items with multiple exports.  Maintaining unique naming across all these parts is also a very error prone process, not to mention all the code that manipulates the parts needs to be modified to handle the new naming and make sure it's referring to the now uniquely named assets.
    The expectation here is that all versions of the Flash runtime should handle asset loading in the same way and place each loaded asset into its own ApplicationDomain container as the default behavior.  I'd like an Adobe employee to address my assumption that this is an unimplemented feature of AIR for iOS at this point, and let the community know if a solution for this will be implemented.
    Summary
    All three of these issues in combination are a major roadblock to porting existing Flash games to iOS with AIR.  Issues with one can make it hard to test and try to work around others.  All need to be fixed, but If I could only pick one of these to fix, it would have to be issue 3 -- that lack of proper ApplicationDomain support when loading assets.  This issue is completely inconsistent with standard Flash behavior and creates a major roadblock to ports of existing applications with no viable solution for a workaround.
    I look forward to Adobe's feedback on each of these issues and hopefully fixes that will allow those of us working with AIR for iOS to get our products to market.

    About the 3rd issue being an AoT design limitation, I'm not sure I understand why it's necessary to know during AoT packaging what the domain is that a child will be loaded into to be able to have SWF loading work as on the browser.
    Isn't the ApplicationDomain an internal construct in the AIR runtime that you guys define in order to manage namespaces of loaded SWFs?  To be clear, when I say "runtime" I know that the resulting code isn't being interpreted within the iOS app, but clearly you have a set of AIR libraries that get compiled into the IPA that provides support for all the Flash APIs.  If that's the case, then wouldn't it be possible for the iOS version of the AIR libraries to define a new ApplicationDomain on the fly when code that has been cross-compiled to iOS native code loads a packaged SWF?
    I don't have a clear picture of how ApplicationDomains are managed internal to the runtime of course, but a little more detail would be very helpful.  Thanks.

  • I cannot edit project in project server after editing it in project professional

    Hi
    i cannot edit project in project server 2013 after editing it in project professional.
    i.e I created an enterprise project in project server and then edit it with project professional. after i published it to the server and open it with project server, it shows the changes. but when i click on a cell, suddenly the task list and gantt table
    hidden!!
    it happens even if I start a project with project professional.
    I'm the admin user.
    what's the problem?
    Thanks.

    CU means cumulative updates, which are intermediate bug fix packages between SP. The latest CU for Project 2013 was release on September 12th. See reference
    here.
    Can you try to reproduce the bug with
    IE in compatibility mode?
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • X11 not starting after upgrading to 10.5.4 using the combo update

    Because of a bug in Package Maker included with XCode 3.1 I ended up breaking my complete OS. After re-installing Leopard and using the Combo Update to 10.5.4 I am not able to run X11. I was able to use it prior to re-installing, but then I got the upgraded incremental via the online update.
    It reports this on the console (a lot)
    /usr/X11/libexec/x11-exec: Unable to find application for org.x.X11
    It seems that this has already been reported to Apple, who acknowledged it as a bug. Is there any new from Apple on if / when / how this issue can be resolved other then by installing a separate application ? Will installing the Xquartz package allow me to install the fix when it becomes available ?

    Search these forums for X11. There's been some recent traffic on X11.

  • Any freelance Actionscript people available?

    I need someone who can do some advanced action scripting for
    me. I have a small flash project that needs some advanced action
    scripting integrating excel spreadsheet functions into a .fla. I'm
    also looking for one or two people that I can use as "go-tos" for
    projects like this. Email me if interested I'll send you the
    project details for a quote, etc.
    Thanks,
    D.

    No. Mozilla has never had any Releases in packages like .rpm or .deb. If they were going to use something beside the simple to use tarball, it would have been autopackage. The problem with packages not made for the distro is that dependencies and different dependancy names across distros for same thing can be a pain in the but as a result.
    Some years ago I remember there was talk of making a place for people to check in finding packages made by they Linux distro though that never happened.
    They did consider .rpm builds for a time but it stalled out just over two years ago.
    For reading as bugzilla is not a discussion forums and not useful comments are bug/email spam.
    [https://bugzilla.mozilla.org/show_bug.cgi?id=649721 Bug 649721] - [tracking bug] RPM Packaging polish
    [https://bugzilla.mozilla.org/show_bug.cgi?id=600317 Bug 600317] - Fedora/Firefox - Repository setup for Firefox nightly and aurora
    [https://bugzilla.mozilla.org/show_bug.cgi?id=277066 Bug 277066] - Toolkit apps need to provide .package ('''autopackage''' files) for different linux distro users

Maybe you are looking for

  • Unable to create JAXBContext

    I'm using Oracle Enterprise Pack for Eclipse and WLS 10.3.3. I'm trying to write a web service to do a simple Oracle database query using JDBC and then return the results. I'm attempting to return the result in an array. Each element of the array con

  • I have upgraded to Mavericks and I now cannot import DV into FCP through the capture presets.

    Since upgrading to Mavericks, I cannot import DV vision through my Sony FX-1E. I have tried various connections - DV to Firewire 400 + 800 with no success. I now have to get the vision ingested at another facility and exported to a hard drive in orde

  • Photoshop and Illustrator batch commands missing in Bridge CS6

    Photoshop and Illustrator commands missing (eg batch and Live Trace) in Bridge CS6 tools, but they are there in CS5. Any thoughts much appreciated regards Tim

  • How to set buffer size mac?

    Video streaming is intermittent, BBC iPlayer. Cannot get info about router but have latest Apple Extreme modem in MacBook Air.

  • Change  font of text range

    I keep getting an error when I run this script. The error message reads: Can't set font of [string] to Verdana Here's my code: tell application "Adobe InDesign CS3" tell front document set thisStory to contents of story id 173 try set applied font of