Renumbering frames/layers cs-4?

Morning all, I have been importing QT video;'s via: Import video frames to layers, I then duplicate some of the layers as well as add others. Now, these show up in the layers column as i.e. layer 1 copy, layer 1 copy 2 etc, etc. In the animation (frames) section they do not show at all, is there a way of adding and re-numbering these additions in both frames and layers?
TKS Gary

is there a way of adding and re-numbering these additions in both  frames and layers?
I may be repeating myself, but if you »Delete Animation« and then »Make Frames From Layers« does that not include the new layers in the animation?
Are you saying that this is done manually or there is an auto process that can accomplish it?
A Script can handle this.
The following might work (but only on top level layers, groups would necessitate a slightly more complicated approach); I would expect that vastly better renaming Scripts are available in the Photoshop Scripting Forum, though.
If you want to give it a try, paste the following text into a new file in ExtendScript Toolkit (part of Photoshop’s installation, Applications/Utilities/Adobe Utilities/ExtendScript Toolkit CS4) and save it as a jsx-file into Photoshop’s Presets/Scripts-folder.
After restarting Photoshop the Script should be available under File > Scripts and can be assigned a Keyboard Shortcut directly, recorded into an Action, (in CS4) be used in a Configurator-Panel or started from ExtendScript Toolkit directly.
// rename top level layers;
// use it at your own risk;
#target photoshop
if (app.documents.length > 0 && app.activeDocument.layers.length > 1) {
var myDocument = app.activeDocument;
var theLayers = myDocument.layers;
var theNumber = 1;
for (var m = theLayers.length - 1; m >= 0; m--) {
theLayers[m].name = "layer_" + bufferNumberWithZeros(theNumber, 3);
theNumber++
////// buffer number with zeros //////
function bufferNumberWithZeros (number, places) {
var theNumberString = String(number);
for (var o = 0; o < (places - String(number).length); o++) {
theNumberString = String("0" + theNumberString)
return theNumberString

Similar Messages

  • Take 2_Newbie question re. tables/frames/layers

    Hi all
    I have created this as a new post as the original one by
    DummyPete has become a bit too long and the topic has altered
    somewhat :)
    DummyPete orignially wrote:
    "Basically, I'd like to create the fairly common design where
    the left sidebar has hotspot buttons and remains static/consistent
    across all pages, along with the top header banner. The sidebar and
    the banner are sizeable GIFs, so I don't want to keep reloading
    them for every page.
    I tried frames, but couldn't get the images to lineup and all
    the separate HTML files to work; besides, the book says to avoid
    frames. Then I tried layers, but neither Firefox nor IExplorer
    displayed my basic layout properly; I didn't even get as far as
    hyperlinking the regions. I was able to create the desired effect
    with tables, but I can't seem to figure out how to update only one
    cell of the table when clicking the different hotspots in the
    adjacent sidebar cell -- is this even possible?
    I have a similar query:
    I am trying to create a online folio where you click an image
    with a link on a menu and it opens up a larger image on the page.
    Like DummyPete If I use links it jumps between pages. What is the
    easiest way to make such a gallery?
    I have found a site to show what I am trying to do:
    http://www.nolovelost.co.nz/main.html
    I believe this uses frames. Is there a way to do this kind of
    thing without frames? Are there any major problems using frames?
    The responses i have had so far are:
    HI! I think this is what you want unless you have a larger
    gallery.
    http://javascript.internet.com/miscellaneous/gallery-viewer.html#source
    Sales
    Webcan design
    http://www.webcandesign.com
    and
    that opens a new window resized to the actual size of the
    larger image...
    this extension will allow you to do that:
    www.dreamweaverfever.com/grow/
    No need to use frames at all.
    Nadia
    Adobe� Community Expert : Dreamweaver
    Thank you to those who posted:) much appreciated. It isn't
    quite what I was looking for.
    I have read may other posts about this subject and most point
    to pre made galleries. I am happy to have each image as a separate
    page. All I want to do is have a link and when it is clicked it
    opens somewhere else on the pages without the rest of the page
    jumping. When I create each image on a separate page (eg
    image1.html, image2.html) with the same navigation setup on each
    page it flicks as the each page loads. I really like how in the
    example i posted you click the text link on the left and the image
    opens to the right - how can i do this?
    thanks
    Poppit

    Investigate either the FREE ShowPic extension from PVII -
    http://www.projectseven.com/
    or do it yourself using the SetTextofLayer behavior in DW,
    using the method
    demoed here -
    http://dreamweaverresources.com/tutorials/settextoflayer.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "novice dw" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi all
    >
    > I have created this as a new post as the original one by
    DummyPete has
    > become
    > a bit too long and the topic has altered somewhat :)
    >
    > DummyPete orignially wrote:
    > "Basically, I'd like to create the fairly common design
    where the left
    > sidebar
    > has hotspot buttons and remains static/consistent across
    all pages, along
    > with
    > the top header banner. The sidebar and the banner are
    sizeable GIFs, so I
    > don't
    > want to keep reloading them for every page.
    >
    > I tried frames, but couldn't get the images to lineup
    and all the separate
    > HTML files to work; besides, the book says to avoid
    frames. Then I tried
    > layers, but neither Firefox nor IExplorer displayed my
    basic layout
    > properly; I
    > didn't even get as far as hyperlinking the regions. I
    was able to create
    > the
    > desired effect with tables, but I can't seem to figure
    out how to update
    > only
    > one cell of the table when clicking the different
    hotspots in the adjacent
    > sidebar cell -- is this even possible?
    >
    > I have a similar query:
    >
    > I am trying to create a online folio where you click an
    image with a link
    > on a
    > menu and it opens up a larger image on the page. Like
    DummyPete If I use
    > links
    > it jumps between pages. What is the easiest way to make
    such a gallery?
    >
    > I have found a site to show what I am trying to do:
    >
    >
    http://www.nolovelost.co.nz/main.html
    >
    > I believe this uses frames. Is there a way to do this
    kind of thing
    > without
    > frames? Are there any major problems using frames?
    >
    > The responses i have had so far are:
    >
    > HI! I think this is what you want unless you have a
    larger gallery.
    >
    >
    http://javascript.internet.com/miscellaneous/gallery-viewer.html#source
    >
    > Sales
    > Webcan design
    >
    http://www.webcandesign.com
    >
    > and
    >
    > that opens a new window resized to the actual size of
    the larger image...
    > this extension will allow you to do that:
    www.dreamweaverfever.com/grow/
    >
    > No need to use frames at all.
    >
    > --
    > Nadia
    > Adobe? Community Expert : Dreamweaver
    >
    > Thank you to those who posted:) much appreciated. It
    isn't quite what I
    > was
    > looking for.
    >
    > I have read may other posts about this subject and most
    point to pre made
    > galleries. I am happy to have each image as a separate
    page. All I want
    > to do
    > is have a link and when it is clicked it opens somewhere
    else on the pages
    > without the rest of the page jumping. When I create each
    image on a
    > separate
    > page (eg image1.html, image2.html) with the same
    navigation setup on each
    > page
    > it flicks as the each page loads. I really like how in
    the example i
    > posted you
    > click the text link on the left and the image opens to
    the right - how can
    > i do
    > this?
    >
    > thanks
    > Poppit
    >

  • View stage boundaries | select objects in multiple frames/layers

    I've got 2 things where I've typed every query I can think of into Google  and can't find an answer. In both cases I'm sure there's a simple answer that  I'm missing.
    #1
    When I add a graphic or picture that's larger than the stage, the stage is  hidden. I've got no idea where it is and therefore what's viewable.
    At the minute I'm creating a temporary extra layer on top to outline where  the boundaries are, but surely there is a function in the software to show the stage boundaries?
    #2
    I've added a picture, converted it to symbol, created another keyframe,  changed the alpha on that, created another keyframe, changed the alpha on that,  applied lots of tweening. Now I want to move the image elsewhere.
    Currently, I'm applying the transformation independently for each of those  frames which just seems a bit daft.
    Is there a better way?

    1.  right click in the stage region and tick rulers.  you can click and drag vertical and horizontal lines from the left and top ruler.
    2.  create a movieclip of your tweened object.  place as many instances as you like any place you like.

  • How do you frame Layers

    I am sorry if this is a dumb question, but I cannot find
    anywhere how to frame a layer. I just need to outline the layer
    around text.
    Thanks,
    Ryan
    [email protected]

    The term you want is border. Use CSS to specify the thickness
    and color.
    "ryancl8" <[email protected]> wrote in
    message
    news:f3ageo$gu5$[email protected]..
    >I am sorry if this is a dumb question, but I cannot find
    anywhere how to
    >frame a layer. I just need to outline the layer around
    text.
    >
    > Thanks,
    >
    > Ryan
    > [email protected]

  • Frames within Layers

    Hi, thanks for reply. Is it possible to insert a frame within
    a layer? I have a fireworks created index page, I want to add a
    layer to in DW and be able to have a separately updatable html page
    in this layer. Any suggestions gratefully received...
    Thanks
    Frank

    You're giving me the shakes! 8)
    Frames, layers, AND FW HTML?
    You cannot add a frame to anything other than a frameset
    page.
    You can add an IFrame to a layer, but beware - I smell real
    trouble with
    this plan, especially with FW HTML.
    Using either frames OR IFrames is a burden, however, for you
    as the builder
    and for your visitors.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "desnmolly" <[email protected]> wrote in
    message
    news:ebai0n$lnd$[email protected]..
    > Hi, thanks for reply. Is it possible to insert a frame
    within a layer? I
    > have a
    > fireworks created index page, I want to add a layer to
    in DW and be able
    > to
    > have a separately updatable html page in this layer. Any
    suggestions
    > gratefully
    > received...
    >
    > Thanks
    >
    > Frank
    >

  • Animated Gif - Problem with Frame Delay

    Mac OS X 10.5.8 
    PSE 6.0
    I just created an animated gif by following the steps in PSE Help.  It says that I should be able to adjust the rate at which the images rotate by changing the Frame Delay measurement but I am unable to change it.  In fact I am unable to change anything in the Animation section of the dialog box. 
    When I check Animation, the options appear to become active (they're no longer greyed out) but I can neither uncheck the Loop option nor change the Frame Delay option.  All other sections of the dialog box work fine.
    Your help would be most appreciated!
    Beth

    Unfortunately this is broken in PSE 6 and PSE 8. You can tab into the frame delay box if you start above it someplace on that side of the screen, and it appears to let you change the rate, but your choice doesn't really affect the actual frame rate. The only workaround is to duplicate frame layers that you want to stay onscreen longer (so it will be changing just as fast, but not visibly).

  • Layers in Animated Gif Question...

    Been going crazy all night
    I'm trying to create an animated gif. I made a BG image that I want the video to go on top of. The video is 136 frames (layers). I duplicated the BG image 136 times and pasted the videos 136 layers on top of the BG image.. Here is my problem.. I need to move the video frames (136 of them) onthe background so it lines up better... How do I move them all at once. Meaning if I move the frame on layer 1, the frames will move on EVERY layer. There has to be a way to move them so they all move to the same location at once. There is no way I could move each one separately and get them in the exact same location...
    PLEASE HELP!!!
    Thanks in advance...
    GT

    Sorry... Using PS CS4 Extended.. Not sure what you mean by click the purple icon and then the red button.... I know it will be a bit choppy, but that is alright for this project.... I know with imageready (in the past) you could drag the image and it would move the image in every frame.... There has to be a way to move the image on layer one so that the image will move to the exact spot in each layer..... Atleast, I hope there is.. Thanks for getting back to me
    Jeff
    Date: Sat, 20 Feb 2010 12:37:05 -0700
    From: [email protected]
    To: [email protected]
    Subject: Layers in Animated Gif Question...
    Click the purple icon and then click the red button. Click the OK box below it if you like the result.
    It would help to know what program you are using and it might help to post in that program's forum.
    Beware that you are grossly abusing the GIF format. It is not intended for video. You could experience choppy playback and/or a lousy color palette.
    >

  • Is there a way to view all frame thumbnails in a video layer?

    I'm aware of the "frame animation" option, but video layers are much more convenient. Ever since this addition Photoshop is nearly on par with TVPaint for drawn animation, but my only problem is that even when fully zoomed in I can't see my video layer frame by frame. Does anyone know if there is an option, script, or plugin to make this a reality? It's hard to know where to hold, insert, or remove a frame without being able to see the one coming up next, and even if I scrub through to see I constantly find myself second guessing that I'm in the right spot.

    You can flatter video into frames but then I do not think they will be playable. Digital Video is not like a frame animation or even like a movie reel of film.  There are actually   whole frames only every so often.  To be able stream video you need to keep the data rate low so video need to be highly compressed. So whole frame are the exception in between frames are partial frames the part that had motion the parts that changed.  To give you some idea if the size difference.  Animated Gif only support 256 colors.  I took a couple seconds from a cilp my wife shot with our canon 1D Mk IV.  1920x1080 with sound  I timed it down to two seconds.  and rendered it  as a h264 mp4 using Photoshop Video Preset High Quality.  The mp4 produced was around 6MB is size had beautiful Color and sound.  I then flattened the video into frame layers and was able to make a Frame animation. I save the frame animation all 58 frames 1920x1080 as an animated Gif the file was around 24MB the color awful and there was no audio.

  • Create Smart Object /Frame Layer from open file in PSE8?

    I'm loving the trial version of PSE 8.  Several features that I don't want to live without!
    One thing that I find more difficult is creating a Smart Object or a Frame Layer (did those get replaced?) from an open file.  Because I digital scrapbook in different aspect ratios (12x12 for print and 15x9 for my photo frame) I want to maintain independent resolution of my pictures so I can change the crop, size etc.  My regular process (pse6) is to open a bunch of pictures and elements (papers, embellishments, etc), adjust the pictures as I desire (usually Smart Fix, plus a little midtone contrast), drop the elements into a blank file or template from the layers palette so they will not be frame layers, but drop the photos in from the Open Files bin as Frame Layers.  Then I simply resize the frame itself to match what I want on the page, and adjust the picture inside the frame.
    With PSE 8 I found I can drop a file from "Show Files from Organizer" and they will become Smart Objects (File: Place works too).  However, they have to be saved first, and I often don't save all my changes.   I would like to be able to create a Smart object or Frame Layer from an open file.
    Also, is there any way to change the size/zoo of the picture within a Smart Object?    Or crop it?  If not, does this really mean I have to crop my file, save it, and then add it as a Smart Object?  Ugh.  (Or create a rectangle for each SO and group them to form a clipping mask, I suppose. Either is a pain).
    Any recommendations for a better workflow that maintains independence?
    Thanks,
    Lisa

    Thank you!  This is very timely as I've been playing around with digital scrapbooking a lot more.  I've been having luck with using a grouped layer to "crop" the photo.  This way I can actually crop out what I know I'll never use, but use the layer mask to keep some edges that I might want around.
    Do you have any opinion on whether it's better to use a smart object or not?  I'll try both, I guess, and see what it does to my file size.
    Lisa

  • How can save 600 frames in photoshop CS6

    i have about 600 frames in timeline in photoshop cs6
    i want to make Create Frame Animatiom
    but photoshop not allow to save more 500 frames
    what can i do?
    thanks

    Photoshop does have limits. When you run into one of them you can summit a request to Adobe to up the limit.  I made such a request for Alpha channels I would be very happy with a limit like 500 instead of the Alpha channel limit of 53.  Adobe seems to feel that 53 is a large number and can not see where user would want more, 500 must be a huge number then.  My advice is to look for a small freeware program for doing timelaps sequences and use Photoshop to save your frame layers combos as frame file then use the freeware to make the animation.  It does not make much scene to make an Animated gif with something like 600 frames.  If you want a 600 frame animation on the web you would want to stream a video type file..

  • Flash CC to canvas and spreading code over several frames

    I know about the relationship between flash and CreateJS, and I know that I could step away from the flash interface for A LOT of what I'm after and simply use it to create a nifty library of assets and have all my javascript as external files. That's not what I'm after (although using a text editor with proper syntax highlighting would be wonderful!). I wish to keep as much of my workflow as possible inside of the Adobe Flash CC interface.
    The question comes in two parts, the second being a followup question:
    1) Where I before used to save code in external as files, since now the external javascript gets created (combined) when publishing the flash project, I thought I'd better keep all my code inside of flash. Is this a mistake? I'm after ease of use and keeping my projects structured.
    2) If I keep my code inside of flash I'd never nest it in movieclips. I'd keep it all on the main timeline strictly. Back in the golden flash days for decent but smaller apps I'd put general helper functions and imports on the first frame, then maybe some preloading graphics on frame 2 with minimal code for that. Finally "the app" on frame 3 with more specific code to manage the interface. This made everything load quickly and I could spread the app functionality naturally over a few frames to make it easier to visualise and manage. But exporting for canvas/javascript I can't even get code on one layer to recognise the functions on another. Do I really need to scope main timeline functions on creation to get it to work?
    I'm really after basic advice on workflow and project structuring.
    Thanks!

    1) that's a strange question considering you prefaced it by saying you want to keep everything in flash.  so yes, given that requirement (ie, you want to put everything, if possible, in flash), put all your code inside flash.
    2) you need to scope everything. there's no problem (from flash/exportJS) spreading code over different frames/layers, if that's what you want to do.  you probably just need to be more careful with your scoping if think code in one layer won't recognize functions in another layer.  ie, in your top layer, use:
    var tl = this;
    // and then use tl to reference the main timeline in your functions (and elsewhere).

  • Show movement in area from 30m video, smart objects - stack mode - range - 90k frames

    Hey,
    So I have a real challenge and need help figuring out the logistics of how to get it to work sensibly.
    I'm trying to visually show the movement through a space (which will later be generated into a 3d form etc..)
    To do this I think the best way would be to use photoshops smart objects - Stack modes - "Range"
    A final image to show movement through the area.
    Lighter where people walk more often and darker where people walk less often
    http://help.adobe.com/en_US/Photosho...44D6937Ca.html
    Range basically shows everything that has moved between the layers.
    If you import a video frames into layers in photoshop, make them a smart object and apply the range stack mode it shows peoples movement and where they walk.
    So thats what I'm going to do unless there is a better way to do this in something like after effects or premiere pro that I don't know about?
    - I've done the photoshop way before and it worked very well - but on a very small scale.
    I have a 30 minute video recording (considering longer but not sure if its viable), it was shot on a tripod and seems ok but can always do it again differently if needed!
    The video was shot at 1920 x 1080 50fps which with 30 minutes (1800 seconds) makes 90,000 frames total for the video.
    The problem
    I need the info from ALL the frames - any less and the movement is too 'choppy' and isn't very useful.
    So how can I make use of 90,000 frames/layers in a smart object for the range stack mode?!
    I heard photoshop has a layer limit of 8k.
    I have access to 6 high spec brand new mac pros (not 100% sure of the spec).
    I'm thinking the solution would be use scripts and break it down into manageable chunks then flatten then merge them together.
    Possible Solutions
    1. Merging frames from each second or few seconds and then blending - not sure what blend mode I would use and also not sure if it would affect results
    2. chop the image down into sections, process each section, flatten and merge together. for example split it into 4 quarters. - Don't think this will help, its more the limits in layers than anything else
    3. Find an alternative method to deliver the image such as after effects.
    on a side note I know I could have done a long exposure, done many before, but they don't really show movement, they simply blend the frames. The downside of long exposures for this exercise is that things could cancel each other out, for example; a man with a white top on walks past then a man with a black top walks past, these would cancel each other out to some degree.
    The Range smart stack mode is brilliant because it directly shows movement and people don't cancel others out.
    Help
    Where can you help?
    So basically if this is the correct way to do this then can anyone help with this and suggest any ways of breaking it down that wouldn't affect the final result?
    Someone that knows more of how range stack mode works.
    Correct me if I'm wrong with any of this and please let me know if you can help at all
    Thanks!
    Luke.
    Context
    For context the final thing has to be something that doesn't change in time, i.e. not a video but an image or model. This image will then be skewed a bit so its a plan view. It will then be used for another script in a 3d package like rhino which will create a number of points in space, the x and y axis being the location in plan view and the Z axis being the value of the pixel. I will then generate a solid form from the points and then smooth it out a lot so I should end up with a 3d wave model directly generated from the movement of people through the site. I will then architecturally design the form into spaces etc... This will form the surface of my final project
    Heres an example of the first 500 frames (500 frames limit on video frames to layers import)
    The footage isnt the best as I moved the camera slightly and the angle isnt amazing - ideally I want a plan view but will skew the final image to do this.

    But I have a concern that if I break it down to 300 images (6 seconds of footage) then stack then flatten the stack until its dont the whole 30 mins then use these flattened ones to create a new stack it would affect results as it will then be working with images like the above.
    That should be easy enough to test (if maybe not exactly proof) – for Range it seems to make no difference, for Variance it seems to do.
    Also why use 16 bit image mode?
    To reduce the accumulated effect of the necessary rounding of pixel values.

  • Why do some PDF's show whats under layers when opening?

    Hi,
    I work in ID 5.0.2. I distill my brochure to PDF. This is to keep the file size small for emailing and Web uploads. I have many text boxes and frames layered on certain revised sections of the document, my question: when we open the PDF in the office or on the Web, the brochure opens fine, however, we have a client that when he opens the same file, can see the contents which was covered with frames when he first opens it.
    Why does this happen, are there settings I should be addressing when I distill the brochure?
    Thank you in advance for your feedback.
    Barb

    When printing (which is what you do when you create PDF via distillation of PostScript) or when exporting PDF, all page content, even that which is completely "covered" by other content, is output. No attempt is made to optimize to eliminate output of objects that won't "show through." Thus, all the "old stuff" you are covering over is indeed in the resultant PDF file, regardless of how you produce it.
    Whether or not that content "shows" when being displayed depends very much on the particular PDF reader being used but more so, on the "power" (processor speed, amount of memory, etc.) of the system on which the PDF file is being displayed. Adobe Reader and Acrobat display whatever is provided in the file, including what is covered over. Thus, for a very complex page combined with not enough system power, you might see underlying content.
    The solution is to eliminate old, obsolete material from your InDesign document itself or put such material on non-printing layers.
    - Dov

  • CS5-duplicate layers get automatically merged

    I have multiple objects on multiple layers. How can I copy all objects to a different place on my workspace while keeping every object in the original layer?
    If I just select all the objects and copy/paste them, all objects are in the current layer. So to copy the object, I need to either loose the layer information or copy (and align) every layer seperately.

    copy and paste the frames.  you can use shift-click and drag to select multiple frames/layers.

  • PSE11 GIFs won't play beyond 3 frames once saved.  They play perfectly in preview.

    I'm trying to make an instructional GIF with 1sec intervals between 18 frames at 640x480 or smaller, 72dpi.  Three of the wordier frames / layers are duplicated to allow ppl time to read them.  The file plays fine in preview, but it won't save and play beyond 3 frames seemingly no matter how I change the save parameters.  Help!  I've made smaller faster gif animations before with no trouble.

    Go to the editor preferences>general and click this button, then restart the editor. If that doesn't do it, what operating system?

Maybe you are looking for

  • Document Signature - Popup on 2nd Signature

    I have a document that requires 2 signatures. The 2nd signer gets the following message popup: "The document contained certain rights to enable special features in Adobe Reader. The document has been changed since it was created and these rights are

  • Error in Inputting value in a table

    I am populating one of my table column with EVS  and we also have to give the functionality to user to input values free handedly but whenever user is putting value we are getting error The string "000000000007000000" is not in the quantity of allowe

  • Change Date Type Description and Re Arrange

    Dear Expert,      I would like to change description of each date type in block date and arrange date rows as new sequence in IC Web Client, I try to do it on t-code BSP_DLC_SDESIG_DL but I cannot, the transaction allow to adjust only field STRUCT.AP

  • How to change std. sap programs?

    Hi,       I am a developer in HR ABAP. Recently I came across a program MP000040, which is a part of an infotype screen.When i tried to change this program, it said " R3TR generated, changes possible" and i was able to modify it..but since this being

  • Standalone oc4j and oracle 9i database on the same windows xp machine

    I m trying to deploy my j2ee application in my local system using standalone oc4j container(Oracle Containers for J2EE 10g (10.1.3.1)).To configure OC4j,I had to mention ORACLE_HOME=d:\oc4j as a user defined env variable.after that the oc4j started r