Help running out of ideas

ok. let me put this simple:
basicaly what i want is to someome of you explain me (like ...to a baby) the procedute to put an applet of my own running, i've read some documentation, but somehow i can't find what i need...
1�Question: do i need to write my own app file to run with jcwde? If so tell me the AID can be anything (5-16bytes or something like that)? what's the format of AID?
2- After the compilation of java file i get the class file, everything ok so far, them i've convert it into CAP
to generate a script file, thats right?To generate the CAP, i can use a configuration file can you explain me that file? The AID, must be the same that in app file,right? and the method for the applet how do i calculate it?
3- Since i get the scr file, do i need to edit and insert into the file?
i've realize in this forum that the script generation misses powerup and down and the selection of installer, it's that right?if so, i've realized it's divided into RID and PIX. The RID contains the class and the instruction, my problem here is that i don�t want him to do nothing, all the instructions should be made inside the code (like DISPLAY_TEXT and GET_KEY...), so what do do?
About the PIX i'm sure (i guess) that AID must be the same that in app and scr file, it's this ok?
i know that i've asked to many and some stupid questions but if you could help i'll apreciate it, it's very important.
Thanks!

Thanx to reply.
1- you say that i can use c-ref, if that's right, so tell me way runnning a example with cref return error 6f and with a app made by me return 90.
2- you also say that i can use existing AIDs from examples, ok. but i do not want to pass any arguments(0x00, i know) i don't wnat to pass any inicial instruction, and i want to set the CLA and INS in my source code in order to do several things. how can i do this? writing directly to the APDU buffer starting at buffer[0]?
3- you also say that i must put this in scr file
1.powerup;
2.installer applet AID
3.scr generated by scriptgen
4.create applet
5.select applet
6.instructions to interact with ur applet in normal
APDU format.these will depend on the INS u have given
to ur functions in applet code.
7.powerdown;
- what is the installer applet AID and how do i calculate it? and the create applet anda de select applet? give me an example besides what comes with javacardkit.
- also explain me point 6
- about generating scr file with scriptgen:
can you explain me -applet on converter? i don�t know what those things means.Converter says that i must define applet AID and class defines the install method...how do i calculate those?
Thanx

Similar Messages

  • Trying to install visual studio on my mac and it is freezing during the install and I have to reboot, I have run out of ideas as to why it will not install. amy help with this would be greatly appreciated

    Trying to install visual studio on my mac and it is freezing during the install and I have to reboot, I have run out of ideas as to why it will not install. amy help with this would be greatly appreciated

    maybe something is wrong with your install or your computers hardware as in a periodic defect
    or the cd is dodgy
    installed
    vs express 2013 for desktop
    vs express 2013 for windows (metro)
    vs express for windows phone
    on my windows 8.1 think I installed them when I was still using win8 though
    without problems
    when the same bootcamp partition was windows 7 ultimate 64bit
    I was running
    vs 2010 pro
    and vs 2008 (for winCE)
    without problems

  • NEED Help Running Out Of Time+++Q:Opening a PSD file in Illustrator Question???

    Hello everyone!!! Hope everyone is staying dry and warm!!!
    I have some artwork im doing for screen printing and a friend has been sending me some artwork to work on. The problem we are having is some of the artwork will open in Illustrator or CorelX4 and stay editable but then he will send me some that when I open in Illustrator it gives me this message and then will not be editable:
                           """This document has greater than 8-bit depth it will be imported as an 8-bit flat composite""""
    Can anyone tell us why this is happening??? I have researched this with no answers so far??? He is using PSD2 and Im usin PSD4 and Illustrator4
    Please help!!!!! Running out of time for this artwork to be completed.
    Thanks
    Bobby

    Photoshop is capable of saving files that are 16 or 32 bit depth. This has to do with the amount of colors that are accessable. The message you are seeing is telling you that it will convert the file back to 8 bit color space for you. This bit depth is talking about per channel, not over all. So a cmyk file would have 8 bits for cyan, 8 for megenta, 8 for yellow and 8 for black. Having a higher amount of bits per channel, photoshop is then capable of doing things like smoother gradients, retreiving data from raw images to produce an image that shows more highlights and shadows without the clipping and so forth.
    Most basic monitors are only 8 bit, same goes for most printers. So unless you need to access the extra color depth, you should be fine in 8 bit. If you don't want to see this message, just tell your friend to send the images at 8 bit.

  • Problems Running out of IDE (Netbeans) LDAP SSL

    I am kind of new to Java and I have a problem with a code that is using a TrustStore. Basically if I run the code within Netbeans everything work but if I do the "Clean and Build" and execute the JAR file when I check my logger out when running out of the IDE I am getting the following exception.
    Mar 06, 2015 9:40:58 AM ad_pass_reset.AD_Pass_reset INFO: Bind error: javax.naming.CommunicationException: WIN-A321J1VGM4K:636 [Root exception is java.lang.ExceptionInInitializerError]
    Which is caused by this part
    public AD_Pass_reset() {   
                Logger logger = Logger.getLogger("MyLog"); 
                try {
                    Hashtable ldapEnv = new Hashtable();
                    ldapEnv.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
                    ldapEnv.put(Context.PROVIDER_URL, "ldap://" + serverIP + ":636");
                    ldapEnv.put(Context.SECURITY_AUTHENTICATION, "simple");
                    ldapEnv.put(Context.SECURITY_PRINCIPAL, DAUser);
                    ldapEnv.put(Context.SECURITY_CREDENTIALS, DAPass);
                    ldapEnv.put(Context.SECURITY_PROTOCOL, "ssl");
                    ldapContext = new InitialDirContext(ldapEnv);
                catch (Exception e) {
                    logger.info("Bind error: " + e);
                    System.exit(-1);
    And from what I have found the Bind error could be caused because the code is not able to use the Certificate, here is how I call the truststore
         String keystore = "C:\\Program Files\\Java\\jre7\\lib\\security\\securitycacerts";
         System.setProperty("javax.net.ssl.trustStore",keystore);
         System.setProperty("javax.net.ssl.keyStorePassword", "12345!");
         System.setProperty("javax.net.debug", "all");
    I know that my LDAP is works with the SSL because I can connect using the LDP.exe and in fact if I run my application using netbeans everything works.
    Does anybody know how to get around this?
    Thank you

    I am kind of new to Java and I have a problem with a code that is using a TrustStore. Basically if I run the code within Netbeans everything work but if I do the "Clean and Build" and execute the JAR file when I check my logger out when running out of the IDE I am getting the following exception.
    Mar 06, 2015 9:40:58 AM ad_pass_reset.AD_Pass_reset INFO: Bind error: javax.naming.CommunicationException: WIN-A321J1VGM4K:636 [Root exception is java.lang.ExceptionInInitializerError]
    Which is caused by this part
    public AD_Pass_reset() {   
                Logger logger = Logger.getLogger("MyLog"); 
                try {
                    Hashtable ldapEnv = new Hashtable();
                    ldapEnv.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
                    ldapEnv.put(Context.PROVIDER_URL, "ldap://" + serverIP + ":636");
                    ldapEnv.put(Context.SECURITY_AUTHENTICATION, "simple");
                    ldapEnv.put(Context.SECURITY_PRINCIPAL, DAUser);
                    ldapEnv.put(Context.SECURITY_CREDENTIALS, DAPass);
                    ldapEnv.put(Context.SECURITY_PROTOCOL, "ssl");
                    ldapContext = new InitialDirContext(ldapEnv);
                catch (Exception e) {
                    logger.info("Bind error: " + e);
                    System.exit(-1);
    And from what I have found the Bind error could be caused because the code is not able to use the Certificate, here is how I call the truststore
         String keystore = "C:\\Program Files\\Java\\jre7\\lib\\security\\securitycacerts";
         System.setProperty("javax.net.ssl.trustStore",keystore);
         System.setProperty("javax.net.ssl.keyStorePassword", "12345!");
         System.setProperty("javax.net.debug", "all");
    I know that my LDAP is works with the SSL because I can connect using the LDP.exe and in fact if I run my application using netbeans everything works.
    Does anybody know how to get around this?
    Thank you

  • Help please! Imac won't start and running out of ideas

    Help! My imac G4 Flat Panel running tiger won't boot or go beyond the grey screen, here's what happened,
    I went away on holiday for ten days and unplugged it, on return it worked fine for the first few goes however after leaving it with alot of photos open for a couple of hours I returned and the screen had gone funny, showed the app window on top but not properly and grey on the bottom two thirds, I could just about move the mouse which was ghosting and it sort of worked but not properly, I switched it off on the power switch and rebooted and it was okay for a few more sessions until getting stuck with the mail app open, I tried to force quit but couldn't and eventually turned it off on the switch, after which it won't boot or go beyond the grey screen every time I switch it on, I've tried all the following with no joy:
    -unplugged all peripherals
    -taken out airport card and extra ram I'd fitted myself about six months ago
    - done command, option, p and r on switching on, also command x and command option.
    - tried to boot from the original os x cd which came with it - this gives me a broken mac symbol and multicoloured spinning ball
    - boot from os9 disk which came with it this gives me a flashing question mark sometimes but most times just the grey screen.
    - boot from apple hardware test diagnostic cd which came with it, just says loading and hangs
    - boot from tiger dvd - shows the apple logo then a sign similar to no entry sign and spinning thing underneath.
    I've tried rebooting about 100 times now, as it once did a similar thing about eight months ago but eventually booted okay and then I ran check permissions etc. and never had a problem until now.
    I've put everything I can think of in in case any of it is important, apologies if there's too much extra info here but if anyone has any ideas I'd be very grateful, am a bit stuck without it, luckily I've backed up most of my stuff but there's some things I haven't. please help! thanks

    Sorry to hear about your problem and I wish I had happy news. Sounds like what I am going through. Just spent over 200$ getting the Tiger upgrade installed at a Mac repair place because I wanted it done right, and had the RAM upgraded. After two weeks of bliss I get a gray screen with a spinning gear. The CD drawer wont open, nothing. Take it back to the shop and I find my hard drive is done. This is the SECOND hard drive. My G-4 came with a 40 gig HD, the one that they replaced it with 2 years ago was an 80 gig. I hope thats not whats going on with yours but it sure sounds like it. I beginning to wonder if there isn't a design issue going on here. I am a casual computer user but my son is on it for hours at a time and I'm wondering about heat buildup and the hard drive. Gonna ask that question when I pick it up, good luck with yours.
    Pat

  • Help Please. Running Out of Ideas Trying to Make iTunes 7.6 Work

    Ok, I have literally spent hours trying to solve this problem and so far nothing is working.
    iTunes 7.6 (and 7.5) will install perfectly on my computer. However, when I go to run the program, nothing happens. If I look in the task manager, it shows that the iTunes process is running and using about 15megs of RAM. Despite this, nothing happens. No interface, no errors, nothing.
    Here is what I have tried:
    1)I have tried running the program with multiple users and the same thing happens, process is running, nothing happens.
    2)I went in and tinkered with the msconfig file to ensure no programs were conflicting with iTunes.
    3)I deleted and removed pretty much every Apple file from my system.
    4)I have tried doing a clean install of iTunes and Quicktime and it doesn't fix anything.
    Quicktime is working. The version of Quicktime running is 7.4, I think that is the newest version of Quicktime.
    At this point, I am pretty much flustered and stuck. I don't know what else to do, short of reformatting Windows and trying it then. I don't particularly want to do this though, especially when the problem started when iTunes 7.5 came out. iTunes 7.4 works though it also give me an error but at least it works.
    If anyone can help me, I would greatly appreciate it. Thanks.

    If iTunes.exe persists in the task manager even though iTunes doesn't launch, it means something is causing iTunes to hang during start up.
    Restart you PC prior to troubleshooting to ensure nothing is hanging when you start troubleshooting, or use the task manager to terminate iTunes.exe.
    You should run a virus and spyware scan as malware can do this although this is not particularly likey.
    Some firewalls have done this in the past, so try a start up with your firewall off, again not very likely thee days.
    After that a good first step is to establish whether iTunes will start in another account. This narrows down the possibilities a lot.
    The following ariticle on freezes tells you how and also how to proceed with troubleshooting once you know if the problem is account specific or system wide.
    http://docs.info.apple.com/article.html?artnum=302856
    I am going to take a guess that you will end up having to use MSConfig to look for conflicts.

  • Help - running out of time (Simulator vs. Burn)

    Quick background: running DVDSP 2.0 on 10.3.9, upgraded to 10.4.5 and DVDSP 2.0 (still). I did a clean install of DVDSP 2.0 back on 10.3.9, but problem still exists.
    Basically, I am using a Layered menu, everything works correctly inside DVDSP's Simulator but once a DVD or a DVD Image file (that is played in Apple DVD Player) is created, none and I mean NONE, of the links or connections work. I have deleted the PAR folder, deleted all of the connections and recreated them and I have even created a completely new project from scratch. But the same problem persists, which is that none of the links work outside of DVDSP. The Menu show correctly, I can select the Button properly, but the Button will not play the linked video.
    I have been making reels for our company for 8 months, I have never run into this problem. Existing projects, that use to work, done anymore. They end up with the same problem.
    Could there be a setting that I have missed, that was set back to the default during the upgrade? That could explain why a new install back on 10.3.9 would be experiencing the same problem and why old projects (that use to work) don't anymore. BUT WHAT COULD IT BE? I AM AT A LOSS AND PEOPLE KEEP ASKING ME WHEN WILL IT BE FINISHED.
    HELP PLEASE.
    Thanks
    Kalagan

    Without knowing a bit more about how you have set the layers up for your menu it is a bit hard to tell... but one thing to try is to make a standard menu and simply add a button to it (i.e. click on add menu then drag out a rectangle on the editor) add some text and set up a target for the button to go to. If this button works then there is not too much wrong with the linking within DVDSPs abstraction layer... the problem will be in the way you have constructed your menu.

  • Hard drive issues...running out of ideas...opinions?

    Hello everyone!
    Let me start by saying that I love all of my Apple products. I've been able to use an iPod mini, another iPod, an iPhone, a Powerbook G4 and a MacBook with no daily or otherwise recurring issue; however, the reason I now have a MacBook is because the Powerbook G4's hard drive died. Sad, but after 3 1/2 years of problem-free use in college...I could justify the upgrade.
    I purchased the MacBook from my university at a nice discount back in March of this year (this was right after the newest batch was released). I was comforted by the fact that I'd more than likely have another 3-4 years before a replacement would be needed. Now, I'm not so sure...
    One day last week, a tab that was opened in Safari froze up, and a song playing in iTunes began to hang. I attempted a force quit of both, but with no luck. Eventually I had no other option but to shut the computer down. Afterwards, I began getting the infamous flashing question mark upon booting back up. I realized that I'd probably had some damaged files as a result of the forced shut down, so I began working with Disk Utility/First Aid to correct the problem. Luckily, I had no important files or programs to worry about, so I went for the Erase option and hoped I could just re-install the OS.
    Unfortunately it was not that easy. Now my hard drive is not showing up as Verified under the S.M.A.R.T. status, and the volume "disk1s2" will not mount. I tried everything I could find on these boards, still with no luck. So, I went for Disk Warrior today and crossed my fingers. When the menu finally loaded, there were 2 options in the drop down menu: the disk warrior cd, and an Unknown Drive. When I chose the latter, this is what I was met with:
    Directory cannot be rebuilt due to disk hardware failure (-36,2268).
    I'm almost convinced that I need a new hard drive. However, when I run the Apple Hardware Test, everything checks out fine. I ran it twice. Also, when I run a test on the hardware in Disk Warrior, I get this message:
    This hard drive's built-in SMART diagnostics indicate the drive is functioning normally.
    Now, with my old Powerbook G4, the hard drive doesn't even show up in Disk Utility. That I can understand. It needs to be replaced. But with this MacBook, all the tests indicate the hard drive is fine. The only blatent message about hardware failure I get is when I try rebuilding the directory with Disk Warrior. I know I'm probably just in denial, but when my computer is only 5 months old...I think I have the right.
    So, what is your opinion? New hard drive for the 5 month old MacBook (grrr)? Or is there still hope left?

    SMART diagnostics are by no means all-encompassing, so it's quite possible for a drive to pass SMART diagnostics but still be defective. My advice at this point would be to boot from the Installer, go to Disk Utility, and see if you can erase, or if that doesn't work re-partition (normally you'll choose to create a single partition) the drive. A badly corrupted disk catalog might not be reparable, but reformatting may work.
    If that also fails, then the probability of the drive being defective is quite high and replacing it will probably be necessary. The tiny drives used in laptops are by nature of their very small components more prone to failure than are other drives, though as capacity and performance rise, even desktop drives are becoming more prone to breaking.
    Hope this helps.

  • Running out of ideas - how to stop iPhoto from constantly spinning!

    Help! I've got iPhoto 5.0.4 and it consistently appears to get stuck in a spin during normal use - usually when unmounting a camera, but also when switching between applications and sometimes when it's simply left by itself. I've tried a number of things to resolve this including resetting the preferences, rebuilding the library, running it as a different user, yet nothing seems to work.
    The only clue that I have is that if I sample iPhoto when stuck in a spin I see another thread that is not normally visible stuck on a semaphore when trying to perform a selector on the main thread, and the main thread is also stuck waiting for a semaphore. Presumably it's somehow managed to deadlock itself but I've no idea how to go any further...
    Any ideas on how to go about finding a solution for this problem would be greatly appreciated!

    Steve - I'm just another user like you - not a "pro" - but I think especially if your photos are all hi-res, i.e. over 1mb each in size, iPhoto may be choking on your library size. Just my 2c.
    You may want to break up your library into smaller pieces.
    Do this carefully - and be sure you have your library backed up before starting. There have been other posts in the past about a product called iPhoto Library Manager. It's a relatively inexpensive and very good product that facilitates this process. That's what I used when my library got too big.
    Good luck

  • Help, Running out of policers on 6500

    I know the dread qos on a 6500 with IOS issue, it's a pain to us all and I need help my friends.  Just upgraded a customer site to Sup32's and going to IPT, implemeted first closets and next morning awoke to emails of :
    %QM-4-AGG_POL_EXCEEDED: QoS Hardware Resources Exceeded : Out of Aggregate policers
      Customer is asking about switching to per vlan vs. per port and I honestly dont see a great definition of the difference, is it just the pool of resources ? can someone explain ??  Also I was told by another architect in response to this that the per vlan would not help, but to make it microflow policing vs. aggregate policing ?  In researching that all I could find is that going that route shows that there are far LESS resources available for policing per flow, than aggregate ?? Anyone familiar ??  Running 12.2(33)SXH6 on Sup32's and each day seems to be a new hurdle when it comes to QoS on these puppies.  I think we have 1GB of memory in these at the access layer.
    Thanks in advance for any and all assistance,
    Dave

    I know the dread qos on a 6500 with IOS issue, it's a pain to us all and I need
    help my friends.  Just upgraded a customer site to Sup32's and going to
    IPT, implemeted first closets and next morning awoke to emails of :
    %QM-4-AGG_POL_EXCEEDED: QoS Hardware Resources Exceeded : Out of Aggregate policers
    Customer is asking about switching to per vlan vs. per port and I
    honestly dont see a great definition of the difference, is it just the
    pool of resources ? can someone explain ??  Also I was told by another
    architect in response to this that the per vlan would not help, but to
    make it microflow policing vs. aggregate policing ?  In researching
    that all I could find is that going that route shows that there are far
    LESS resources available for policing per flow, than aggregate ??
    Anyone familiar ??  Running 12.2(33)SXH6 on Sup32's and each day seems
    to be a new hurdle when it comes to QoS on these puppies.  I think we
    have 1GB of memory in these at the access layer.
    Thanks in advance for any and all assistance,
    Dave
    Hi Dave,
    Check out the below link as per the recommedation from cisco for the above error message.
    http://www.cisco.com/en/US/products/hw/switches/ps700/products_tech_note09186a00801b42bf.shtml#qm_agg
    Hope to Help !!
    Ganesh.H
    Remember to rate the helpful post

  • Saaj - running out of ideas

    Running J2SE 1.4.2 I need to write a standalone SOAP client.
    Compiles fine, but getting lots of runtime errors. Some MessageFactory does not find some Impl class..
    I install, JAXM just to find out that now some other parts are missing.
    Can somebody please tell me what API's to install to get it to work.
    Already I have installed and my CLASSPATH is pointing to:
    saaj-api.jar(also tried with saaj-1_2-fr-api.jar (difference?)), saaj-impl.jar, mail.jar, imap.jar, mailapi.jar, pop3.jar, smtp.jar, jaxm-api.jar, jaxm-runtime.jar
    Please help.

    Ok, I realize you need some more info. Here is the prog.:
    import javax.xml.parsers.*;
    import javax.xml.soap.*;
    import org.xml.sax.*;
    import java.io.*;
    import org.w3c.dom.Document;
    import java.net.*;
    public class Testsoap {
    public static void main(String argv[]){
    Document document=null;
    MessageFactory msgFactory=null;
    SOAPMessage soapMessage=null;
    SOAPBody soapBody=null;
    SOAPConnectionFactory soapConnFactory=null;
    SOAPConnection soapConn=null;
    URL servicePoint= null;
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    //factory.setValidating(true);
    //factory.setNamespaceAware(true);
    try {
    DocumentBuilder builder = factory.newDocumentBuilder();
    document = builder.parse( new File("xml.txt") );
    msgFactory = MessageFactory.newInstance();
    soapMessage = msgFactory.createMessage();
    soapBody = soapMessage.getSOAPBody();
    soapBody.addDocument(document);
    soapConnFactory = SOAPConnectionFactory.newInstance();
    soapConn = soapConnFactory.createConnection();
    servicePoint = new URL("http://v.europeiske.no/Services/EurowizSale.asmx");
    soapConn.call(soapMessage, servicePoint);
    catch (SAXParseException spe) {
    // Error generated by the parser
    System.out.println("\n** Parsing error"
              + ", line " + spe.getLineNumber()
              + ", uri " + spe.getSystemId());
    System.out.println(" " + spe.getMessage() );
    // Use the contained exception, if any
    Exception x = spe;
    if (spe.getException() != null)
    x = spe.getException();
    x.printStackTrace();
    catch (Exception e) {
    System.out.println(e);
    } // main
    CLASSPATH=/home3/java/lib/saaj/lib/saaj-api.jar:.
    Compiles just fine, but I get the following runtime error:
    javax.xml.soap.SOAPException: Unable to create message factory for SOAP: Provider com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl not found
    I expand my CLASSPATH to be:
    CLASSPATH=/home3/java/lib/saaj/lib/saaj-api.jar:.:/home3/java/lib/saaj/lib/saaj-impl.jar
    Now I get the following runtime error:
    Exception in thread "main" java.lang.NoClassDefFoundError: javax/mail/internet/ParseException
         at java.lang.Class.getDeclaredConstructors0(Native Method)
         at java.lang.Class.privateGetDeclaredConstructors(Class.java:1610)
         at java.lang.Class.getConstructor0(Class.java:1922)
         at java.lang.Class.newInstance0(Class.java:278)
         at java.lang.Class.newInstance(Class.java:261)
         at javax.xml.soap.FactoryFinder.newInstance(Unknown Source)
         at javax.xml.soap.FactoryFinder.find(Unknown Source)
         at javax.xml.soap.MessageFactory.newInstance(Unknown Source)
         at Testsoap.main(Testsoap.java:31)
    Well, I dont give up. I download JavaMail and extend my CLASSPATH again which by now looks like:
    CLASSPATH=/home3/java/lib/saaj/lib/saaj-api.jar:.:/home3/java/lib/saaj/lib/saaj-impl.jar:/home3/java/lib/mailapi.jar
    Another runtime error stops the show:
    Exception in thread "main" java.lang.NoClassDefFoundError: javax/activation/DataSource
         at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.createMessage(SOAPMessageFactory1_1Impl.java:27)
         at Testsoap.main(Testsoap.java:33)
    And now I give up..............
    Can someone please tell me what API's to use??
    Thanks in advance
    Tr0nd

  • Complicated rig removal... running out of ideas...

    Hi guys,
        I am working on an aerial shot in which I need to remove some objects. I have tried many things and none of them have left the area looking real, here’s what I’ve tried:
    First, I tried to use the rotobrush tool in After Effects CS5.1 and then use an underlay of the texture that is supposed to cover it and that didn’t work due to seams in the underlay that I could not figure out how to blur together to look good, Next I tried going crazy with the clone stamp tool and attaching the clone to tracking data but the problem with that was that the source point did not attach to a tracking point (which I don’t see how you would do, so if someone could tell me, this would be ideal), after that I tried going through the footage frame by frame in photoshop with the clone stamp tool. That didn’t work because when I put them together in After Effects into a Cineon sequence, the floor looked like it was swimming, meaning that because each frame was cloned slightly differently, the clone source was again, moving and the exact pattern on the floor was moving around from frame to frame. Now, I am trying something which is a little bit more complex and may or may not work... it has been 3D tracked outside of after effects, then that tracking data was imported into after effects and attached to a null object (a sphere) and a camera was added. After that, I went to a frame where the most stuff that had to be taken out of view was in the frame and I used the clone stamp tool in Photoshop to remove the rigs that must be removed and masked out everything but the pattern of the floor. I imported that into after effects as a layer of its own and attached it to the tracking data of the 3D track, then made a mask of the layer and key framed the mask path, added a key framed curves color correction and I will add some shrubs into areas where the rigs are not able to be covered. This may not work due to the fact that there are multiple shadows on the ground area that need to stay but are currently covered by clean floor pattern but need to stay consistant with reality and how the shadows would be on the floor. Maybe I could rotobrush out the rigs that need to be removed and then place the clean floor underneath the layer which needs rig removal? What would be ideal is if I could find a way to attach a clone stamp source point to tracking data so that the source points I chose stick to the same spot as the camera moves around the set and the cloning sticks to the points where there are objects that need to be removed from the frame. As a note, this shot is a dpx sequence so it is already split up frame by frame. I am asking this question to anyone and everyone who has even the smallest idea. I have already done so much research and watched many tutorials that I thought would give me some enlightenment then didn’t because they were for shot that were far more basic than this. The camera flys around the set in a non-steady fashion and the rigs which need to be removed are sometimes behind trees and other things.
    Thanks in advance for any ideas you put forth to this project!
    Also, I am willing to work with other programs if it means I can get this done and have it look top-of-the-line.

    The tracking is all fine, I had to have it 3D tracked in a program called Boujou. Mathias, the problem isn't that it is not stabilized, just that the whole shot is a large scale rotating view of a house with a deck, I did try painting out everything where it is static, but once the camera moves, so do the chairs and therefore, we have lost covering the chairs and gone into covering random bits of the shot with nonsensical areas to cover something with. I watched your tutorial and since there is not very much overall movement, it didn't seem to help too much but I could give it a look again to see if I can try to apply something to this shot. Every frame of this shot is like the whole world was litterally picked up and shaken and swapped around, each frame is that different from the ones before and/or after.
    As I said, the tracking is fine and going through the trees is not so much the issue at the current moment, just getting the chairs to be consistantly covered realisticly while there is nothing obstructing the view is what I am trying to focus on as of now.
    NukeX 6.3 has a node called planar tracking, but for some reason, I can't really find anything like that in AE and I only have access to NukeX 6.2v6. I tried planar tracking in Mocha and that didn't work out very well, when the deck gets covered by the trees, the tracker gets confused and starts tracking the trees instead of the deck. I'm not quite sure why I think NukeX would be any better at it, but I sure wish I could try~

  • I've run out of ideas to fix this....

    Alright, so here's my problem: I installed the updates and had the (what seems like) typical major problems. My computer kept freezing up, my ipod freezes up, and itunes doesn't see my ipod. (My computer does see the ipod, and the software updater will install the updated verson, but only if I'm in disc mode)
    I'm pretty sure I've tried all the steps.
    -All 5 R's more than once.
    -Installed the programs that came with my ipod
    -Installed the updated versions
    -Brought it to an apple store
    All I have to show is an ipod that no longer has my 3000+ songs, computer that no longer has 4000+ songs, and an apple store empolyee that said (And I Quote Word For Word) "Wow dude, that ipod's crazy messed up."
    Will someone please tell me any more options. I can't get help from apple at all. Also, please just don't give me a link so one of the sites I've already read on here, because I've read them all.
    Thanks.

    I sure hope someone answers with a solution as I am solutioned out! I will make the trip to the apple store tomorrow now that I have restored, restarted and have nothing! All I have is a screen that says don't disconnect and but Itunes says there is no Ipod connected. What the hey.......Help someone.

  • I need help fleshing out an idea for a form

    I have a form I build for my agency that adds records to a database.  It's sort of an online survey that's used by different offices within my agency, and it's "recycled" every year or so.
    It consists of some info fields for the user filling it out (name, organization, etc) that are always there, but it also has some textarea fields that change whenever it's "recycled".
    It's a large form with a lot of serverside error checking, and it's a bit tedious to recode the HTML (not to mention the target page) everytime the form gets recycled, so I had an idea.
    My idea was to create a table in the database for the form, and have the following columns:
    field_type (i.e. text, textarea,  etc)
    field_name (for the name="" of the input tag
    field_label (for the <label> tag)
    field_size
    field_order (so I can control the order that the fields show up)
    Then use a query to have my CF page dynamically build the form.
    While I'm pretty sure the above would work, I'm not so sure how to code the target page, since the FORM.names won't remain the same.  I thought about tying to capture all the form fields in some sort of array, but I'm not really sure how to do that.  Any ideas?

    There is one answer. However, it makes the form even longer!
    Consider that the columns you've mentioned represent attributes of each form field. Then include hidden form fields to hold the values of these attributes. For example, for the text field named abracadabra, you will have something like
    <input name="abracadabra" type="text">
    <input name="abracadabra_type" type="hidden" value="text">
    <input name="abracadabra_label" type="hidden" value="mylabel">
    <input name="abracadabra_size" type="hidden" value="10">
    <input name="abracadabra_order" type="hidden" value="3">
    When the form is submitted, the values in the action page will be
    form.abracadabra
    form.abracadabra_type
    form.abracadabra_label
    form.abracadabra_size
    form.abracadabra_order

  • Safari font(?) problem - running out of ideas!

    Hi,
    I'm having some Safari issues. I've been through the forums, and tried everything, but it's still happening.
    The problem: certain pages are all jumbled, links aren't... well, aren't links. And some pages don't show text at all. Here's an example from my work email:
    What I've tried already:
    font finagler
    font smasher
    cleared the font cache
    never had Times Phonetic or Helvetica Fractions
    Disabled Helvetica Neue
    fixed duplicate fonts
    never use font sizes smaller than 9 in Safari advanced preferences
    no user-specified style sheet
    no safari enhancing programs (actually, I have Inquisitor, but the problem existed prior to installing it)
    it's happened both on the new safari beta and the latest official release
    Have tried both Western (ISO Latin 1) and Mac OS Roman Default Encoding.
    I've restarted after making each of these changes.
    Help! I'm sick of going back to Firefox every time I run into one of these sites!
    many thanks.

    Hi Lili and welcome to the forums!
    Can't guarantee that it will work, but it would do no harm to try this:
    Empty Safari's cache (from the Safari menu), then close Safari.
    Go to Home/Library/Safari and delete the following files:
    form values
    download.plist
    Then go to Home/Library/Preferences and delete
    com.apple.Safari.plist
    Repair permissions.
    Start up Safari again, and things should have improved.

Maybe you are looking for

  • Java Trial AND ABAP Trial

    I succesfully installed the Netweaver 2004s ABAP Trial. Now I want to also dig deeper into SAP Java, especially Web Dynpro Development. What am I supposed to do? Can I download and install the Java Trial in parallel with the ABAP Trial? Can I run the

  • English InDesign on Chinese Windows XP

    We are an Australian based company and we have a branch in HK. They wish to use our InDesign but the key we use does not work. When they enter the key during the install, they get a red cross. They are using our install files but they are installing

  • How to handle  a large table using a JTable

    I want to create a lookup for the customer master file. And there is over 5000 records. so, what is the way to handle this case? ( if adding the all elements to vector or array, i think it is very time consuming and request many memory) thank you.

  • How to clear cache of messageChoice?

    Hi all, In my application I am using a messageChoice which will display the list of available items. After delteing a particular item from that list ,the changes are reflected in the database but the deleted item is still displayed in the messagechoi

  • Missing nisDomainObject - Iplanet 5.1

    Sparc Solaris 8 E450 installing iplanet 5.1. Cannot add nisDomainObject for native ldap setup. When trying to import the following ldif (as noted in book): dn: dc=xxxx,dc=edu changetype: modify add: objectclass objectclass: nisDomainObject add: nisdo