Recieving accordion event from the "outside"

hi;
i am using the accordion and need to keep track of events,
specificaly, the only thing i need right now is to know the new
currentPanelIndex of the accordion after someone clicked a panel.
what is the best way to do this?
i already tried hacking the spry.js(hacked into the openPAnel
function), it worked but i do not want to touch the JS file (so i
dont have to do this on every upgrade). i
also tried doing it from the "outside" but i could not get
it to work (after creating the accordion, i took the panels from
the accordion, looped and got the tab from each panel and used
addEventListener(tab,'click',myfunc,false) but in the first
iteration after the call to addEventListener the loop did not
continue ).
any help is appreciated.
thanks,

You can extend it from the outside by defining a function
that overrides openPanel() with a function that calls the original
openPanel() and then executes whatever code you want. The function
would look something like this:
function ExtendOpenPanel(acc)
var realFunc = acc.openPanel;
acc.openPanel = function(panel) {
realFunc.call(acc, panel);
/* Add your code or function call here! */
Then call the function after you create the widget:
var acc1 = new Spry.Widget.Accordion("acc1");
ExtendOpenPanel(acc1);
--== Kin ==--

Similar Messages

  • Add up Events from the outside

    I create a component to add to my applications; it's made by 3 buttons, that's it:
    [<img source=http://img65.imageshack.us/img65/8781/slyu2.jpg>|http://img65.imageshack.us/img65/8781/slyu2.jpg]
    on the component class I wrote the actionListeners on the side buttons to change the text of the central button.
    Now I'd like to set actions when the user press the buttons outside the component and to keep the old action; I'd like something similar:
    Slider.setClickEvent(){
    } without overwrite the component event to change the central button text. May I do this?
    Edited by: cassio_steel on Aug 25, 2008 8:32 AM

    Sorry, I didn't explained it very well...When the user click on the side button I'd like two things to happen:
    1) change the text of the central button
    2) run other istructions (example: something happens on the others components where my component has been added)
    The first one has been written on the component's class, and the second one i'd like to be written in a specific method outside my component's definition, like this:
    Mycomponent comp=new Mycomponent();
    comp.setAction(){
    panel.add(comp);Is it clear?

  • My wife recieved invite event from my PC Outlook. She accepted it, but it never showed up on her iCloud or iCal on our iMac. Then I removed her as an invitee and it did not remove the event from her iPhone. So now she has a event on her iPhone that can't

    My wife recieved invite event from my PC Outlook. She accepted it, but it never showed up on her iCloud or iCal on our iMac. Then I removed her as an invitee and it did not remove the event from her iPhone. So now she has a event on her iPhone that is not on either her iCloud or iCal. How do I remove it from her iPhone?

    1) You asked "Does she need to reconnect to that itunes/computer and if so what do we need to do to remove this folder of pics from her ipod?" Yes, you have to connect the iPod to that computer and go to the Photos pane for the iPod in iTunes and uncheck sync photos and the click on synce/apply. In the future do not check sync photos.
    iOS and iPod: Syncing photos using iTunes
    2)
    Create a NEW account for using these instructions. Make sure you follow the instructions. Many do not and if you do not you will not get the None option. You must use an email address that you have not used with Apple before.
    Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card
    Then on the iPod go to
    - Settings>Messages>Send and receive and sign out your ID and sign into hers. Make sure that only her ID email address is listed.
    - Settings>FaceTime sign out of your ID and sign into hers. Make sure that under You can be reached at only her ID email address is listed
    - Settings>iCloud and sign out and sign in with hers
    Contnue to use the commpn ID/account for Settings>iTunes and App stores.

  • A Thread manages a connection from the outside--help me to finish it

    **RUN THIS CODE AND HELP ME--- THANKS A LOT**
    EchoClient is thread which manage a connection from the outside.
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.PrintWriter;
    import java.net.ServerSocket;
    import java.net.Socket;
    import java.util.Random;
    public class EchoClient extends Thread {
         private ServerSocket listenSocket = null;
         private Socket manageSocket = null;
         private int[] port = new int[9999];
         private BufferedReader in;
         private PrintWriter out;
         private int line;
         private int count;
         // No needed to mention
                //private ClientNode[] clientArray = new ClientNode[9999];
         private ManageClient[] manageClient;
         private final int CONNECTED = 1;
         private final int CONNECTING = 11;
         private final int DISCONECTED = 2;
         public void run() {
              try {
                   manageClient = new ManageClient[9999];
                   listenSocket = new ServerSocket(903);
                   manageSocket = listenSocket.accept();
                   while (true) {
                        in = new BufferedReader(new InputStreamReader(manageSocket
                                  .getInputStream()));
                        out = new PrintWriter(manageSocket.getOutputStream());
                        line = in.read();
         // if Client send a variable(CONNECTING)
                // Server will send to Client a variable(CONNECTED) and port
                //to open a ChatFrame with that port
                        if (line == CONNECTING) {
                             System.out.print("have recieved");
              out.print(CONNECTED);
                         //randomize a port to send to client
              port[count] = (int) Math.ceil(Math.random() * 9999)
                        //creat a manageClient(Thread) to manage a seperate
                       // connection with a seperate Client
                             manageClient[count] = new ManageClient(port[count]);
                             manageClient[count].start();
                             out.print(port[count]);
                             count++;
              } catch (Exception e) {
                   e.printStackTrace();
         public static void main(String[] args) {
              EchoClient e = new EchoClient();
              e.start();
    }And a Login Frame which will send to server a varialble (CONNECTING) which requires to connect and keep waiting for a variable to Open a ChatFrame with a new port
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.PrintWriter;
    import java.net.Socket;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTextArea;
    public class Login extends JFrame {
         public ChatFrame chatFrame;
         private final int CONNECTED = 1;
         private final int CONNECTING = 11;
          * @param args
         public Login() {
              // TODO Auto-generated method stub
              setSize(50, 150);
              JButton loginButton = new JButton("Login");
              JPanel p = new JPanel();
              p.setLayout(new FlowLayout());
              p.add(loginButton);
              add(p);
              loginButton.addActionListener(new ActionListener() {
                   @Override
                   public void actionPerformed(ActionEvent e) {
                        loginServer();
         public void loginServer() {
              try {
                   Socket connectSocket = new Socket("127.0.0.1", 903);
                   while (true) {
                        BufferedReader in = new BufferedReader(new InputStreamReader(
                                  connectSocket.getInputStream()));
                        PrintWriter out = new PrintWriter(connectSocket
                                  .getOutputStream());
                        out.print(CONNECTING);
                        System.out.println("At here");
    //(***position***)
                        int line = in.read();
                        System.out.println("At here1");
                        if (line == CONNECTED) {
                             int port = in.read();
                             chatFrame = new ChatFrame(port);
                             chatFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                             chatFrame.show();
                             connectSocket.close();
              } catch (Exception exp) {
                   exp.printStackTrace();
         public static void main(String[] args) {
              Login login = new Login();
              login.show();
              login.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }and this is ManageClient Thread...
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.PrintWriter;
    import java.net.ServerSocket;
    import java.net.Socket;
    public class ManageClient extends Thread {
         private ServerSocket ssClient;
         private Socket sClient;
         private int port;
         public ManageClient(int port) {
              this.port = port;
         public int getPort() {
              return port;
         public void run() {
              try {
                   ssClient = new ServerSocket(getPort());
                   sClient = ssClient.accept();
                   while (true) {
                        BufferedReader in = new BufferedReader(new InputStreamReader(
                                  sClient.getInputStream()));
                        PrintWriter out = new PrintWriter(sClient.getOutputStream());
                        String s = in.readLine();
                        if (s != null)
                             out.print("have recieved");
              } catch (Exception e) {
                   e.printStackTrace();
    }my problem...
    At firts EchoClient will run.. and then Login but when I click to the Login button it has just only did before int line = in.readLine();(*** postion ***)
    I don't know why it doesn't continue. It stops here and the login button is still visible(cause code has not finish)..
    That's my problem...
    Somebody help me
    Edited by: rockfanskid on Oct 17, 2007 4:25 AM

    Somebody helps me to finish this project...
    thanks for racing this thread

  • If OSMFSettings.enableStageVideo true, then click event from the MediaContainer is not dispatch.

    Hi!
    I use org.osmf.vast.mediaVAST2TrackingProxyElement from the VASTLibrary for display advertising and use click to handle advertisement redirection.
    It's works for flash.media.Video.
    But after setting OSMFSettings.enableStageVideo = true, the click event from the MediaContainer is not dispatch.
    Can you please help?

    Actually, I looked briefly at the dev guide this week end, and Stage Video actually renders from the GPU under the Actionscript App.
    It could be something like this:
    Stage video is behind the Actionscript objects and one of them is as big or bigger than the video rendering rectangle and it is grabbing mouse interaction.
    Just speculating.
    Also, I'm not certain StageVideo can recieve mouse events...
    Hope this helps.

  • How can you erase a certain event from the iPad2 but keep it in iPhoto?

    I have two events that were split up by iPhoto when it synced to my iPad2. Collectively there re about 400 photos in the two events and they were split into over 50 separate events some labeled sequentially as 102IMPRT 103IMPRT....and so on, and otehrs labeled with the original event label.   I have not been able to regroup the events. they are still OK as two Events in iPhoto. My latest idea is to try to export the files from iPhoto without the geo and file name to a folder. Erase the events in iPhoto and then reimport them  into new events in iPhoto. Then sync to iPad.
    Before I did all that I wanted to remove the split events from my iPad. I tried to remove them from the iPad by unchecking the source events but checking all others in iTunes before syncing but that doesn't work probably because the pieces all have different names in the iPad. Maybe unchecking the events just doesn't sync them or make any changes..I thought that if you unchecke the events it would remove them. The real problem probably is that the spit events don't exist in iPhoto.
    I did remove them from the iPad once by checking sync with nothing by unchecking iPhoto in iTunes. But that removes the whole library of 10000+ photos. I did that and restored an old library from before the time the events were split (from Time Machine) then resynced with the newest iPhoto and it split the same two events again in pretty much the same way. I got nowhere and it took 4-5 hours to delete and reload the10,000 photos.
    Is there any way to remove events from the iPad that the crazy sync is creating, and don' t exist in your iPhoto library or on your iMac and iTunes without destroying the rest of the library of photos on the iPad??

    I tried syncing with the sources unchecked so no photos would sync. When it got done it erased all the library photos except the messed up events, they remain on the iPad. The Vacation photos are in two albums, one is called camera roll, and the other improted photos. None of the photos were taken with the iPad camera and should not show up in camera roll.
    At this point I am going to restore iPad2 to factory settings and sync from computer not backups and see what happens!

  • Error while deleting events from the integration event queue

    I am trying to delete all the events from the integration event queue after reading it, like this (this is in Java):
            IntegrationEventWS_DeleteEvents_Input input = new IntegrationEventWS_DeleteEvents_Input();
            input.setDateTime("");
            input.setLastEventId("");
            try {
                 ((Default_Binding_IntegrationEventWS)onDemandStub).deleteEvents(input);
            } catch (Exception e) {
                 log.error("Deleting events from integration queue failed: ", e);
            }Alas, I get the following error message:
    Invalid method parameter(s): 'File Id'(SBL-ODS-50007)What does this mean? What is this mysterious "File Id" it supposedly gets? I don't see it anywhere in the SOAP message I'm sending and it isn't mentioned anywhere in the docs.
    Thanks in advance for any input.

    Dont keep this attributes null
    input.setDateTime(""); //Put a Default Time way in
    the past. Ex:"1/1/2000"
    input.setLastEventId(""); //pass the eventIdThe documentation states that those two are optional (although they are not nillable, for some reason). I tried to set the date to today, but I got the same result. Since setting a date is supposed to delete all events older than that date, I don't think setting it in the past will delete anything.

  • Overflow Map has received an inexplicable event from the front map

    Hello, I am posting this to ask if someone can shed additional light on this error. Is it due to incorrect usage of the SafeNamedCache or an internal error?
    2006-12-07 20:33:59.190 Tangosol Coherence 3.1/339 <Warning> (thread=RMI TCP Connection(3)-127.0.0.2, member=1): Overflow Map has received an inexplicable event from the front map; such an event should not have been possible to occur. The Overflow Map will arbitrarily interpret the event in order to maintain its own internal consistency. The likely origin of the event is direct modification of the front and/or back maps managed by the Overflow Map, a MapListener making re-entrant modifications to its source map, or an ObservableMap implementation that reacts to the Map API in a manner inconsistent with the specification (e.g. actively modifying its contents in a manner that differs from the sequence of API calls made against it). This Overflow Map instance will not repeat this warning, and will attempt to silently compensate for subsequent similar event irregularities.
    Event: MapEvent{ObservableHashMap added: key=CalypsoCache|22845412, value=Lease: CalypsoCache|22845412 (Cache=TangosolLock._locks, Size=Unknown, Version=0/0, IssuerId=0, HolderId=0, Status=LEASE_UNISSUED, Last locked at Wed Dec 31 16:00:00 PST 1969)}
    Stack trace follows:
    at com.tangosol.net.cache.OverflowMap.warnUnfathomable(OverflowMap.java:2947)
    at com.tangosol.net.cache.OverflowMap.putInternal(OverflowMap.java:1001)
    at com.tangosol.net.cache.OverflowMap.put(OverflowMap.java:360)
    at com.tangosol.coherence.component.util.CacheHandler.ensureLease(CacheHandler.CDB:15)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.ReplicatedCache.lockResource(ReplicatedCache.CDB:29)
    at com.tangosol.coherence.component.util.CacheHandler.lock(CacheHandler.CDB:3)
    at com.tangosol.coherence.component.util.SafeNamedCache.lock(SafeNamedCache.CDB:1)
    at com.calypso.tk.lock.TangosolLock.acquire(TangosolLock.java:24)
    at com.calypso.tk.lock.DistributedReentrantLock.acquire(DistributedReentrantLock.java:50)
    at com.calypso.tk.util.cache.CalypsoCache.lock(CalypsoCache.java:1772)
    at com.calypso.tk.util.cache.CalypsoCache.getImpl(CalypsoCache.java:1325)
    at com.calypso.tk.util.cache.CalypsoCache.peekImpl(CalypsoCache.java:1320)
    at com.calypso.tk.util.cache.CalypsoCache.peek(CalypsoCache.java:244)
    at com.calypso.tk.util.cache.CalypsoCache.put(CalypsoCache.java:314)
    at com.calypso.tk.core.sql.BookSQL.putInCache(BookSQL.java:314)
    at com.calypso.tk.core.sql.BookSQL.loadAll(BookSQL.java:1494)
    at com.calypso.tk.core.sql.BookSQL.loadAll(BookSQL.java:1158)
    at com.calypso.tk.core.sql.BookSQL.load(BookSQL.java:1186)
    at com.calypso.tk.core.sql.BookSQL.getBook(BookSQL.java:545)
    at com.calypso.tk.core.sql.BookSQL.get(BookSQL.java:237)
    at com.calypso.tk.refdata.sql.UserDefaultsSQL$UserDefaultsLoader.buildObjectFromResultSet(UserDefaultsSQL.java:307)
    at com.calypso.tk.core.sql.SQLObjectPersistor.executeSQL(SQLObjectPersistor.java:399)

    It is quite strange, of course, to have confusion with which config is being used, which is why there is now a log message telling you which config was loaded. I think that the log message was introduced in version 3.1 or 3.2.
    The other thing that I do (at least when testing something) is specify the config on the command line, e.g.
    java -server -Xms128m -Xmx128m -Dtangosol.coherence.cacheconfig=C:\java\dev\test-cache-config.xml -cp coherence.jar;tangosol.jar;...
    BTW, I have downloaded 3.2.1 and will be using that for my tests. So presumably the warning/error will no longer occur? That is our expectation, since it would be a bug (unless you were doing one of the weird things mentioned in the message).
    Keep in mind that even with the message, the Overflow Map keeps going; it is just a warning (albeit a complicated sounding one) that indicates that some internal state (or event stream or lack thereof) is not what was expected as the result of one or more actions.
    I apologize for the inconvenience, and thank you for taking your time to clarify it. We do work hard to avoid this type of issue (or any related confusion), and we have continued to increase our unit and regression test coverage with each release, including with respect to this issue. With that in mind, please do not hesitate to contact us (on this forum if you would like) with suggestions and other feedback; we do want to be aware of the things that our customers are looking for and would like to see improved.
    Peace,
    Cameron Purdy
    Tangosol Coherence: The Java Data Grid

  • Best Practices for configuring ICMP from the outside

    Question,
    Are there any best practices or best recommendations on how ICMP should be configured from the outside? I have been cleaning up the rules on our ASA as a lot were simply ported over years ago when we retired our PIX. I noticed that there is a rule to allow ICMP any any and began to wonder how this works when the rules above are specific IP addresses and specific ports. This in thurn started me looking to see if there was any documentation or anything to help me determine a best practice. Anyone know of anything?
    As a second part how does this flow on a firewall if all the addresses are natted? It the ICMP traffic simply passed through the NAT and the destiantion simply responds?
    Brent                   

    Here you go, bro!
    http://checkthenetwork.com/networksecurity%20Cisco%20ASA%20Firewall%20Best%20Practices%20for%20Firewall%20Deployment%201.asp#_Toc218778855
    access-list inside permit icmp any any echo
    access-list inside permit icmp any any echo-reply
    access-list inside permit icmp any any unreachable
    access-list inside permit icmp any any time-exceeded
    access-list inside permit icmp any any packets-too-big
    access-list inside permit udp any any eq 33434 33464
    access-list deny icmp any any log
    P/S: if you think this comment is useful, please do rate them nicely :-)

  • [SOLVED] Can't access my home server from the outside

    Hi all,
    I have installed Arch on a Raspberry Pi and am trying to set up a home server. Right now, I am running a simple HTTP server (using node.js, if that matters) on port 8080. From my LAN, I can access the server all right.
    From the outside, it seems that the traffic does actually reach the computer (I conclude this from the blinking diode indicating network traffic). However, all requests time out. Interestingly, if I kill the server while a request is pending, the timeout occurs right away.
    I have no idea what is causing this. I have checked for iptables rules, but there seem to be none. What is blocking the traffic and how can I find out?
    EDIT: Nevermind, I was testing incorrectly -- the traffic did reach the Raspberry Pi, but the return traffic did not reach my test computer because it was blocked by the router's firewall. Testing from TOR works just fine.
    Last edited by MrAllan (2013-12-24 12:01:42)

    I too am having problems accessing Directory server from Netscape Console installed on Winxp.
    If I try to open Directory server it doesn't give any error. No windows nothing.
    If I try th same from the machine on which it is installed everything is fine. What is strange is that it did open a couple of times. But at the same time I can open the admin server, Netscape Messaging server from the xp box. Searching all over for a solution. Any help/pointers would be greatly appreciated.
    Config details:
    iDS4.13, iMS 5.0, running on Sol 8 box
    Netscape Console 4.2 on WinXP.
    Thanks

  • ICal - I have all the events from the past decade listed for this week

    My iCal calendar has every event from the last ten years listed in every day - each event is tagged 'repeat Every day' and 'end Never'. I have a non-corrupted version on my iPhone. I have tried restoring from Time machine and this works but then reverts to this confusion. I even deleted the .plist.
    HELP - my Calendar is my life (and my history)

    Greetings,
    Remove the following to the trash and restart your computer:
    Home > Library > Caches
    Home > Library > Calendars > Calendar Cache, Cache, Cache 1, 2, 3, etc. (Do not remove Sync Cache or Theme Cache)
    Home > Library > Preferences > com.apple.ical (There may be more than one of these. Remove them all.)
    __NOTE: Removing these files will remove any shared (CalDAV) calendars you may have access to. You will have to re-add those calendars to iCal > Preferences > Accounts.
    If the events remain:
    Reset your Sync history: http://support.apple.com/kb/TS1627
    Then restore from your backup.
    If that does not work let us know.

  • I feel that other people use my computer from the outside without my permission. How do we know?

    I feel that other people use my computer from the outside without my permission. How do we know?
    Thanks for your help

    First thing to do is find the information you received on your internet service, which should have the info on logging in to your router itself.  Login, usually from a browser like Safari, and find where to change the admin password, not the netowrk or WiFi password.  Change the admin password from the factory default, and write it down so you don't forget it...if there is ever a problem with your service you have to have that.
    Once the router is secure, on your iMac how do you operate?  Did you just set it up out-of-the box without adding user accounts?
    With the router secure there is little risk of an intruder using your equipment...but it would be worth it to change your network password, especially the wireless part of the network, and to check to see what security method is being used.  The most secure is WPA2.

  • Blocking unsolicited echo-reply from the outside of firewall

                       What is the easiest way to stop unsolicited icmp echo-reply packets coming from the outside of an Cisco ASA 5500 firewall?

    Hi,
    The firewall should now allow any ICMP Echo replys through the firewall if it hasnt seen a Echo for that same reply.
    Instead of allowing Inbound ICMP from the WAN with an ACL you should configure ICMP Inspection
    In a very default ASA configuration they would be added in the following way
    policy-map global_policy
    class inspection_default
      inspect icmp
      inspect icmp error
    Hope this helps
    - Jouni

  • Reaching Tomcat from the outside

    I've just installed tomcat on my Win2000Pro box. Wish I had a Win2000Server though.
    I wanna reach it from the outside.
    This
    http://localhost:8080 gives me tomcat
    This though
    http://321.321.321.321:8080
    doesn't give me anything! (Let's assumes my ip is 321.321.321.321)
    What do I need to do in order to serve the entire net?
    Duke dollars to the first who gives me a valid tip.
    Morten Hjerl-Hansen

    When tomcat is running it is acting as a webserver on port 8080 (by default). So if it is not serving documents from other computers in your LAN, WAN or whatever, the problem is not with tomcat but with the network set-up itself.
    Can you ping 321.321.321.321?
    The only thing I can think of why this is not working is that you changed server.xml and setup one or more virtual hosts(With the Host directives) but failed to setup 321.321.321.321 also. Is this the case?
    Ylan

  • If is possible to add new local var to sequence from the outside?

    If is possible to add new local var to sequence from the outside?
    I mean insert a new local variable to Sequence.Locals list or via expression, or by LabView VI (Sequence Context). or any another way.
    Thanks.

    Hi,
    The simplest way would be to use the API TS method PropertyObject.SetValBoolean, PropertyObject.SetValNumber or PropertyObject.Set ValString. With the SequenceContext you create a PropertyObject using the method SequenceContext.AsPropertyObject, which you use as the reference for the the SetVal method.
    For the SetVal method, pass the full lookup string of your variable eg "Locals.MyString" and set the option parameter to 0x01 (insert if missing).
    If you are calling this from LabVIEW, then use the SetVal property VI.
    This will insert a varable into the Locals that is "in scope" of the step that is performing the task. 
    In the TestStand Help - "Using the API in Different Programming Languages" and in the TestStand User manuals there is more information to help you.
    This will only make a runtime version of your Local. ie when your sequencefile stop executing your Local will not exist in the Static version of the Sequence File.
    Hope this helps
    Ray Farmer
    Regards
    Ray Farmer

Maybe you are looking for

  • Error in recent Photoshop update

    I tried to update Photoshop and received an error in update twice. Now my Creative Cloud shows it updated but when I try to open my Photoshop CC (64 bit) I get an error that says "Photoshop.exe - Entry Point Not Found...The procedure entry point ?Ter

  • List_to_memory is not working in background

    Hi Gurus, i am trying to use function module list_to_memory in background.in foreground i am able to send list to memory,but when comes to background it is throwing an error message( i .e list has not been moved to memory) . please help me <<Text rem

  • Customizing JList Cell Renderer

    Hi all, I got a problem with JList not rendering properly in my program. basically I create a customized renderer by extending JPanel and implementing ListCellRenderer. but somehow i cannot get the tooltiptext from the JLabel inside my JPanel (the re

  • Issue with the authorization

    Dear all, There is one multiprovider. It points 2 cubes. Activity cubes and Opportunity cubes. Now reports works fine and if a person has SAP_ALL access. if a user has only access few roles then keyfigures from Activities cube is not being displayed.

  • How iPhoto handles Camera RAW images

    Ok, so iPhoto can import Camera RAW files from supported cameras. But then what happens to them? This is what I think is happening when I edit imported Camera RAW files from my Canon Digital Rebel (not XT). If anyone has anything to add, I would appr