Looking for a Flash Coder

Hello! I'm looking for a Flash Coder/Designer to Create Quantity of 5 Flash Animations which pull dynamic text from a XML File.
Here's the URL of the type of animation styles we like,
http://tinyurl.com/38r8wo2
Our finished animation graphics should have a fun look with easy interchangeable sponsors sponsors like the ones in these examples.
http://tinyurl.com/249gf5l
The 2 types of animations we require are, one that will display dynamic polling information, the other will be text scrolling horizontally and vertically in a smooth manor.
The selected designer will receive the .XML Files which the action script will pull the information from.
We would like the following animations:
1) Every time a new Text is added to the external XML file, that text is "SMACKED" on the screen, tiny from the distance to big on the screen, it will streak down the screen until it disappears off the bottom of the screen, this will be in a random manor, the text will have rotation angles of 140degrees. The font can be changed easily, as well as the background graphic. It should also contain a holder for a logo in the lower right hand corner which will jiggle whenever a new TEXT is detected.
2) Every time a new Text is added to the external XML file, it will jump up from the lower part of the screen and stop at the top of the screen, every time a new text comes in, it will stack below that, bumping the top one up. This will happen infinitely. There should be a holder for a logo in the lower right hand corner, this logo should Blink everytime a new text is detected.
3) Every time a new Text is detected is should scroll from right to left. In between each new text, a logo should scroll with the text. This scroll should easily be able to switch from right to left, and with logo and no logo.
4) If possible to create a 3D effect, the actual REAL 3D effect that people use to watch with those RED and BLUE glasses. This text would fly in from the far distance and appear big on the screen, it should use Depth of field so the text appear to be flying out of the screen.
5) Voting Poll Animation, should match the examples given in the URL.
Thanks! Budget is about $200 total. If interested please email me [email protected]

>>looking for a top flash developer with dream
actionscripting skills
Isn't everybody these days...
Wrong place to post this ->
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=38&catid=219

Similar Messages

  • Hi, I am looking for the registration code to register on the Sony Essantials site.

    Hi, I am looking for the registration code to register on the Sony Essentials site. The TV is not connected to the internet, so I cannot get it from the TV. Model: KDL-52XBR9Ethernet MAC address: 00:24:BE4:CF:50 Please help! Thanks,Bob

    Hello bobm1234, thank you for your message. Welcome to SONY Community!
    Follow the steps below to register your Internet video device: 
    Hopefully this post helps you! Mark it "accept as solution" Mark it "accep as solution"

  • I'm looking for latest X-Code for Lion

    I'm looking for latest X-Code for Lion. AppStore shows me only 10.8.x and up.

    Go to this page: https://developer.apple.com/downloads/index.action?name=Xcode, sign in, and find Xcode 4.6.3 (it's on Page 2).

  • Looking for Great Flash Designer

    Hello,
    I am looking for a Flash designer that can create beautiful
    designs. Here are some examples of some sites that I like:
    http://www.garniernutritioniste.com/en
    http://www.minhlong.com/MinhLong08/
    http://www.voxhon.com/
    http://www.themontgomeryimprovementassociation.org/website/
    http://www.poseidonresorts.com
    If you can design a site of this quality, please email me
    some samples of your work and your prices to [email protected]
    Thank you

    Jon chu wrote:
    I have LabVIEW project experience and I do love it. So I want to join JKI when I graduate in September 2007.
    Thank you.
    [email protected]
    Please check out our openings, here.  To apply, please email us at jobs (at) jameskring (dot) com,
    attaching examples of your LabVIEW work and a current resume in HTML,
    Word, Plain Text or PDF format. In
    the body of the email, explain why you would be a good fit for this job.

  • Looking for some Flash tutorials

    I'm doing some webstuff in Flash CS5 using actionscript 3, and I could use some help with a couple of things.  Can anyone recommend some tutorials on how to make an effective image gallery?  Like with a picture slider or something?  But ideally nothing overly complicated to do.  I don't wanna just copy and paste code off of a website either, I wanna know how to actually make the code using Flash...maybe even just using the snippets if that's doable. 
    I'd also like to find a tutorial that'll teach me how to make a scroll bar so I can scan up and down text or images for another part of the project.
    I'm looking for either video tutorials or written tutorials.

    You can create mask for the movieclip as exactly as in your tutorial. and use below code (I think this is what you want).
    For using the below code you should create some user defined components.
    For Horizontal Scroll Bar:  create hscrollBG for scrollbar background and hscroller for scroller.
    For Vertical Scroll Bar: create vscrollBG for scrollbar background and vscroller for scroller.
    mask_mc is mask movieclip  and    content_mc is which the content you want to scroll.
    /**** code  ****/
    var hscrollbar:MovieClip;
    var vscrollbar:MovieClip;
    if (content_mc.height > mask_mc.height)
        drawVScrollBar();
       if(content_mc.width > mask_mc.width)
        drawHScrollBar();
    private function drawVScrollBar():void
       try
        removeChild(vscrollbar);
       catch (e:Error)
       vscrollbar = new MovieClip();
       addChild(vscrollbar);
       vscrollbar.x = mask_mc.width + 5;        //set scrollbar position
       var bg:vscrollBG = new vscrollBG();
       bg.height = mask_mc.height;
       vscrollbar.addChildAt(bg,0);
       var scroller:vscroller = new vscroller();
       scroller.x = 1;
       scroller.y = 0;
       vscrollbar.addChildAt(scroller,1);
       scroller.addEventListener(MouseEvent.MOUSE_UP, sc_mouseup);
       scroller.addEventListener(MouseEvent.MOUSE_DOWN, sc_mousedown);
       stage.addEventListener(MouseEvent.MOUSE_UP, sc_mouseup);
      private function sc_mousedown(e:MouseEvent):void
       var scroller:MovieClip = vscrollbar.getChildAt(1) as MovieClip;
       scroller.startDrag(false, new Rectangle(1, 0, 0,mask_mc.height- scroller.height));
       scroller.addEventListener(Event.ENTER_FRAME, updateScrollPosition);
      private function sc_mouseup(e:MouseEvent):void
       stopDrag();
       var scroller:MovieClip = vscrollbar.getChildAt(1) as MovieClip;
       scroller.removeEventListener(Event.ENTER_FRAME, updateScrollPosition);
      private function updateScrollPosition(e:Event):void {
       var bg:MovieClip = vscrollbar.getChildAt(0) as MovieClip;
       var scroller:MovieClip = vscrollbar.getChildAt(1) as MovieClip;
       var perc:Number = scroller.y * 100 / (bg.height-scroller.height);
       var ypos:Number = ( -perc * ((content_mc.height - mask_mc.height) / 100));
       content_mc.y = ypos;
      private function drawHScrollBar():void
       try
        removeChild(hscrollbar);
       catch (e:Error)
       hscrollbar = new MovieClip();
       addChild(hscrollbar);
       hscrollbar.y = mask_mc.height + 5;
       var bg:hscrollBG = new hscrollBG();
       bg.width = mask_mc.width;
       hscrollbar.addChildAt(bg,0);
       var scroller:hscroller = new hscroller();
       scroller.x = 1;
       scroller.y = 0;
       hscrollbar.addChildAt(scroller,1);
       scroller.addEventListener(MouseEvent.MOUSE_UP, hsc_mouseup);
       scroller.addEventListener(MouseEvent.MOUSE_DOWN, hsc_mousedown);
       stage.addEventListener(MouseEvent.MOUSE_UP, hsc_mouseup);
      private function hsc_mousedown(e:MouseEvent):void
       var bg:MovieClip = hscrollbar.getChildAt(0) as MovieClip;
       var scroller:MovieClip = hscrollbar.getChildAt(1) as MovieClip;
       scroller.startDrag(false, new Rectangle(bg.x, bg.y, bg.width - scroller.width,0));
       scroller.addEventListener(Event.ENTER_FRAME, hupdateScrollPosition);
      private function hsc_mouseup(e:MouseEvent):void
       stopDrag();
       var scroller:MovieClip = hscrollbar.getChildAt(1) as MovieClip;
       scroller.removeEventListener(Event.ENTER_FRAME, hupdateScrollPosition);
      private function hupdateScrollPosition(e:Event):void {
       var bg:MovieClip = hscrollbar.getChildAt(0) as MovieClip;
       var scroller:MovieClip = hscrollbar.getChildAt(1) as MovieClip;
       var perc:Number = (scroller.x - bg.x) / (bg.width - scroller.width);  
       var xcounter:Number = ( -perc * (content_mc.width - mask_mc.width));
      content_mc.x = xcounter;
    This code is reusable for many applications where we want scrollbar. In this code we can dynamically assign the scrollbars based on the content width and height.

  • Richter Studios looking for Director / Flash Developers

    Richter Studios is an award-winning multimedia firm based in
    Chicago.  We specialize in high-definition videos,
    presentations, web experiences and print materials for a wide
    variety of clients.  We are a broad-based creative firm that
    includes Animators, Cinematographers, Designers, Editors,
    Photographers, Programmers, Producers and Writers.  To date,
    our in-house production crews have shot in 24 states and 7
    countries.  We also develop and market our own PowerPoint
    killer called Presented By and sell our own stock video/imagery as
    well.  
    We are presently seeking seasoned Flash and
    Director/Shockwave developers (both full-time and freelance) to
    assist with a variety of projects. Flash candidates must have
    extensive knowledge of Action Script 2/3, object oriented
    programming, work with content management systems and the ability
    to create and extend classes. Knowledge of Flash Media Server
    technologies and server side scripting is a plus. Good animation
    skills are always welcome. Director candidates must have extensive
    knowledge of Lingo, offline/online database connectivity, Flash
    integration, object oriented programming and Xtra functionality.
    Multi-User experience and Xtra development would be a plus.
    No two days are typically the same at our studio. On any
    given day we can be working on interactive CD product demo’s,
    custom presentations, application development, animations, games,
    trade show experiences, recruitment tools, etc. We also create a
    lot of web experiences, either in Flash / HTML or various web 2.0
    technologies. Most of our web experiences involve interactive video
    content, so a genuine interest in working with Web 2.0 experiences
    is required.
    Our experience has made it clear to us that the right
    candidate would possess strong programming knowledge, is a genuine
    self-starter and committed team player (translation: overtime does
    occur from time to time). Excellent organizational skills are a
    major plus and, above all else, a fast work ethic is paramount.
    Finally, from a code standpoint we strongly believe that less is
    more. Ideally a candidate that can solve a complex issue with a few
    lines rather than an over complicated 5 page script is who we are
    looking for.
    Specific Skills
    - 2 to 4 years experience creating Flash or
    Director/Shockwave content
    Firm grasp of object oriented programming
    Innate ability to solve complex tasks with simple re-useable
    code.
    Innate desire to comment and document all code.
    Must be very detail oriented
    Working knowledge of Illustrator and PhotoShop.
    Excellent grasp of web technologies
    Proven fast work ethic
    ***We accept applications via our web site at:
    http://www.richterbrothers.com/submit_resume.php
    ***Please provide a resume detailing your previous
    development accomplishments.

    Job Opportunities forum is here:
    http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=38&catid=219&entercat= y
    Dan Mode
    --> Adobe Community Expert
    *Flash Helps*
    http://www.smithmediafusion.com/blog/?cat=11
    *THE online Radio*
    http://www.tornadostream.com
    *Must Read*
    http://www.smithmediafusion.com/blog
    "phenomblue" <[email protected]> wrote in
    message
    news:elbtdv$ah3$[email protected]..
    > Hey everyone. My client has a need for a good UI
    developer living and
    > working
    > in the Chicago area. They are a large, very successful,
    creative company
    > located downtown which is where the person they are
    searching for would be
    > working. This is not an offsite consulting opportunity
    but could be on
    > site
    > contract to hire. They are lookign for someone
    proficient in Flash and
    > Actionscript. My company is the primary .NET integrator
    providing all
    > software
    > development development and support so it would also be
    nice if the person
    > they
    > are looking for was familiar and/or comfortable working
    in asp.net as
    > well.
    >
    > Lastly, they are also looking for someone with a similar
    background
    > interested
    > in a managerial type role wrangling developers and
    designers. This person
    > I am
    > assuming would work directly with us as on the larger
    software projects as
    > well. This candidate would have great project management
    skills as well
    > as a
    > keen idea of the creative process and how to manage it.
    This person will
    > be
    > the liason between the business and the in-house
    development team.
    >
    > If anyone is interested in the positions described or
    knows a good place
    > to
    > post this message to get targeted prospects, let me
    know. I will take a
    > look
    > at resumes and pass them on to my client.
    >

  • I'm looking for Adobe Flash Professional CS6 through CC

    Hi everyone,
    I'm trying to looking for downloading Adobe Flash Professional CS6 through CC, but I don't know how it works through CC.
    Can someone tell me where can I download the Adobe Flash Professional CS6.
    Thanks.
    Dan

    Previous via Cloud http://helpx.adobe.com/creative-cloud/help/install-apps.html#previous

  • DV4-1125nr black screen on boot up looking for bios flash file taken off hp site or solution

    have black screen looking for sp41969.exe for dv4-1125nr to do blind flash.  on board diagnosis is 4 flashes (graphics controller malfunctioning) with amber sound and wireless lighting up by keypad not very good with computers so any help in dummy terms would be appreciated if you have the file i need please email to {Personal Information Removed} thanks

    HI,
    bmbrsoccer4 wrote:
    have black screen looking for sp41969.exe for dv4-1125nr to do blind flash.  on board diagnosis is 4 flashes (graphics controller malfunctioning) with amber sound and wireless lighting up by keypad not very good with computers so any help in dummy terms would be appreciated if you have the file i need please email to {Personal Information Removed} thanks
    Try the troubleshooting procedures on this HP web page.
    Best regards,
    erico
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Carnegie Mellon University looking for Mobile Flash developers opinion

    Hi folks, thanks for your interest.
    We are doing a research project on the mobile ecosystem
    in the Mobility Research Center at Carnegie Mellon Silicon
    Valley.
    Our main goal in our current study is to understand the
    decision-
    making process followed by mobile applications
    developers/start-ups.
    To start immediately the survey follow
    THIS
    LINK
    Below a short description of our project:
    We are particularly interested in how mobile apps developer
    decide
    upon platform(s), device (s), carrier(s), and market, as well
    as the relative importance of
    technology and business factors.
    Our research process includes a formal survey, a series of
    interviews, and a public wiki.
    In the fast moving mobile world Flash Lite is a news full of
    promise: your experience should be taken into account in our
    research.
    So we would like you to complete our SURVEY at
    this link
    http://www.questionpro.com/akira/TakeSurvey?id=1108623
    We think that it will take about 10-15 minutes to complete
    the survey
    and will close by the beginning of February.
    You can WIN A PRIZE and RECEIVE A FREE SUMMARY REPORT of our
    activity.
    We want to follow up with some people in more detail. If you
    would
    have about 30 minutes for an informal interview, please let
    us know.
    We've just started a wiki on this topic and encourage you
    to visit, contribute, and let others know about it.
    It's at
    http://mobiledevelopers.pbwiki.com/
    We are looking forward do receive feedback from you!
    Thanks for your help, and best wishes for 2009.
    PLEASE PASS THIS MESSAGE TO YOUR COLLEAGUES AND TO POST IT ON
    YOUR BLOG!
    Text

    Done! I built a restaurant recommendation application for the Apple iPhone. Unfortunately it wasn't approved by Apple due to their rather confounding approvals procedure. Hopefully your survey will lead to a better understanding of application development and deployment on mobile platforms. Several iPhone game developers that I know have also had trouble getting apps approved in the past.

  • Looking for INTIMATE Flash Player Knowledge, to explain something DELICATE

    Hello ::- ). I have stumbled upon a Flash Player behavior about which I have some assumptions & some questions, but I would like to discuss them with somebody who has VERY good knowledge of Flash Player. If you like a good brain teaser and like to see some living proof about how Flash Player works, read on CAREFULLY. I also present inside this post the SOLUTION, which I managed to find after 10 hours of torment.
    Sorry for the use of caps in this message but I wanted to emphasize some  things. Imagine that as I am writing this, I am outraged and desperate  ::- ).
    Ok, so here is the (very simple) situation:
    1. I got an ENTER_FRAME hooked on the Stage, in which sometimes, when the User moves the mouse, I move all objects on the Stage.
    2. Inside a Timer, I got a hit testing function in which I test against the EDGES of some objects.
    3. When the objects on the Stage are MOVED (in increments of 8 pixels / frame), this is what happens:
    dispObject.visible = false;  //I repeat, that's visible = false.
    dispObject.hitTestPoint(x, y, true); //Returns TRUE. Yes, despite the object being hidden, the hit test SUCCEEDS.
    dispObject.visible = true;
    dispObject.hitTestPoint(x, y, true); //Returns FALSE when the object is VISIBLE.
    Where X and Y are coordinates situated INSIDE the shape of the object, at the extremities (left or right). I got solid proof that they're inside the object, as I dumped the contents of the Stage to a BitmapData and investigated it. Without doubt, the hit testing occurs INSIDE the colored shape of the object but the result is FALSE when the object is VISIBLE=TRUE and TRUE when the object is hidden.
    Also, the Hit Tests that I am doing are based on 2 moving  objects: I am hit testing against a moving object (dispObject), and the X/Y location where I  am doing the hit testing are dictated by the position of ANOTHER moving  object.
    Now... I know very well how hitTestPoint works. The object I'm hit testing is ON the Display List (I only played with the Visible property).
    MY SOLUTION:
    Instead of doing the Hit Test in the Timer, I just queued it in an Array and I moved it inside the ENTER_FRAME event, PRIOR TO MOVING THE STAGE OBJECTS. This makes it work regardless of whether the Hit Tested object is Visible or not.
    QUESTIONS:
    1. Does Flash Player have an internal priority for event types? I am NOT talking about Event Listener Priority but about priority in executing entire TYPES of events.
    2. Case in question: does ENTER_FRAME *ALWAYS* execute PRIOR to TIMER?
    3. Why does hitTestPoint work differently with INVISIBLE objects? Let me rephrase that: why do INVISIBLE objects get moved AFTER the TIMER event??? Becaues obviously this is what happens. When the object is invisible, Flash Player moves it differently, so that's why the Hit Test succeeds. If the object is Visible, it gets moved in ENTER_FRAME and the Hit Test fails, EVEN THOUGH ON THE SCREEN, I actually SEE IT HIT the ACTUAL SHAPE of the object.
    Again:
    So yes, what I'm saying is that visibly, on the screen, it should NOT fail because I drawed some pixels at each location I am shape-hit testing and the pixels actually INTERSECT the SHAPE, but even so, the function returns FALSE. But when the object is HIDDEN, the hit test RETURNS TRUE. Okay, that's about all the ways I can explain it haha.
    Sorry for repeating myself a bit, but I really want to get the point home. To conclude: I managed to fix the problem but I wonder why, God, why did I have to lose so much time with this? So here's to hoping some Guru sees this thread and guides me through the mysteries of Flash Player internals, because this sure as heck isn't documented (I looked everywhere about Event Priorities and STAGE WORKFLOW but couldn't find anything!)

    If you have Flash Player issues you should post them in the Flash Player forum...
    http://forums.adobe.com/community/webplayers/flash_player

  • Looking for an ABAP-code for the customer-Exit Variable

    Hello,
    I have defined a Variable (Interval) which should be processed through Customer-Exit on characteristic Supplier-Date (date format). This Customer-Exit Variable is called ZDATE.
    We have another time characteristic Fiscal year / period (0FISCPER) which has single mandatory input variable for ex.  003.2011. This input variable is called ZFISCPER.
    Now I have to write an ABAP-Code where the customer exit variable ZDATE is derived (fiscal last year to last period) from input variable ZFISCPER in INCLUDE ZXRSRU01.
    Means when the input variable (ZFISCPER) is 003.2011 then the customer exit variable ZDATE should be calculated in INCLUDE ZXRSRU01 as 01.01.2010 u2013 28.02.2011 (fiscal last year to last period).
    Since I am quite new in ABAP, I will be grateful if you could write me sample ABAP for this.
    Many thanks.

    Hi,
    should be something like:
    DATA: l_s_range TYPE rsr_s_rangesid,
    input LIKE sy-datum.
    When 'ZDATE'
    CONCATENATE '0101' 0FISCPER+3(4)-1 into l_s_range-low. "You get 01012010
    CONCATENATE '01' Fiscper+1(6) into input.                            "You get 01032011
    l_s_range-high = input-1.                                                     "You get 28022011
    APPEND l_s_range TO e_t_range.
    Greetings
    Roman

  • Stepping Stones: Pacific Theatre is Looking For A Flash Developer.

    Hello Everyone,
    I'm Kevin, Project lead for the game modification Stepping
    Stones. You can check out our ModDB Profile here:
    http://mods.moddb.com/7326/stepping-stones-pacific-theatre/
    . I come here to ask if anyone will be willing to help with some
    animations for our soon to be launched site. At the bottom of the
    post you can see the WIP layout that one of the team members has
    made. Our site will be made with the
    Flipping Book extention, and it
    will be similar to a book. If you wish to help us, you should know
    Flash and Actionscript well, and e-mail me at [email protected]
    Thanks.
    To see our WIP layout, Click here:
    http://www.fileden.com/files/536/layout.jpg

    Nice design!
    I don't know anything about the
    Flipping Book component, but I would suggest checking into
    the
    FlashLoaded
    Page Flipper coponent before you buy the other one... just to
    make sure you're getting the best deal. I say it becuase I
    DO know about Flashloaded's stuff, and it is all amazing!
    Hope you get someone good to help on Flashing it out.
    :)

  • Looking for  good Flash Online course

    Guys/Gals,
    I am looking to follow an online Flash course. Flash CS3. I
    want a visual course, with demos, voice...I do not want to sit down
    and read my screen, I am a visual type, I want live examples. There
    are a few out there, and I am reluctant to choose one without any
    advice from experts.
    I already had a course on the basics of Flash. I have a good
    base. I don't want to learn how to use the paintbrush, I want to
    know how to create neat effects, neat buttons, scripts, create and
    include a database inside, etc. And most importantly, I want to
    follow them whenever I want.
    I may have to start over, which I don't mind if mandatory,
    but I want to make sure I'll get a lot deeper in the subject.
    Any of you would have one to recommend?
    Looking forward to your comments. Greatly appreciated.
    Jack

    You may also check out totaltraining.com.

  • Looking for a flash img zoom and pan component

    Hi i was wondering if anyone can help me find an image pan
    and zoom component like the one found in this website.
    http://www.thenorthface.com/opencms/...l=AL5X&site=NA
    I want it pretty much like it is on that website.

    your link is busted, but I got a better one for you. It's a
    view finder, you can resize it and tween it smaller so It gives it
    a zoom effect! so whatever is inside of it, is what you are going
    to see in your flash? cool eh, it's one of my most used objects?
    The prob is, I don't know a link for it. my friend give it to
    me. I can hook you up with it though a email though. SO since I
    can't find your email,
    Email me: [email protected] and remind me about this
    convo and ask for the Z-cam I have. Cool? peace.

  • Looking for sample java code for dvt:hierarchyViewer

    Hi.
    We currently use Jdeveloper 11g Build JDEVADF_11.1.1.1.0_GENERIC_090615.0017.5407
    Recently, we have seen some nice demos for Manager-Employees tree. Here is one @ http://jdevadf.oracle.com/dvt-faces-demo/faces/dvtTagGuide/ariaXml.jspx?_adf.ctrl-state=mmpgr9aco_4.
    If I construct hierarchyViewer from master-detail view objects, I can't achieve dynamic levels. So I believe I need to create a treeModel binding to recursively generate the hierarchy.
    Can someone kindly show me a working example for this implementation? Your help is highly appreciated. Now I have to reverse engineer it.
    Sam
    Edited by: user719281 on Sep 2, 2009 2:35 PM
    Edited by: user719281 on Sep 2, 2009 2:35 PM

    Hi Juan,
    Thanks for the quick reply. I already have a similar example http://blogs.oracle.com/shay/2009/07/exploring_the_hierarchy_viewer.html and I made my code work.
    However, I realize I must pre-define view objects (and their levels) to achieve this goal. What if I need to use managed bean to dynamically generate the hierarchy? In other words, the level of hierarchy is unknown at run time, the managed bean must be called recursively to generate the next level of nodes.
    In the current source code,
    <dvt:hierarchyViewer inlineStyle="width:100%;height:600px;" id="hv1"
    value="#{bindings.EventsView1. *treeModel* }"
    selectionListener="#{bindings.EventsView1. *treeModel* . *makeCurrent* }"
    layout="hier_horz_left">
    The hierarchyViewer seems to be built around treeModel but the closest I have found is Frank Nimphius's Re: Building a Tree Table using Recursive table
    Without recursive calling, i don't think I can get similar hierarchy in http://jdevadf.oracle.com/dvt-faces-demo/faces/dvtTagGuide/ariaXml.jspx?_adf.ctrl-state=rka5d3wx6_9. I have been investigating this for last few days. Correct me if I am wrong :-) Thanks again!
    sam
    Edited by: user719281 on Sep 1, 2009 5:17 PM
    Edited by: user719281 on Sep 1, 2009 5:18 PM

Maybe you are looking for

  • CRM 7.0 in partner determination procedure

    Dear all, In CRM 7.0 in partner determination procedure for an ITEM level am unable to set up procedure so that any partner will always be just mirror of the partner set on HEADER level. This functionality works only when the new order is created, th

  • Itunes update failed to install due to error - now says reinstall and its their screwup

    An update came up on my computer so started the installment - went thru removal then about half way thru installing update gave me error and went off screen.  Tried to open iTunes and says MSVCR80.dll is missing - reinstall program.  Said it was not

  • Error in PL/SQL documentation regarding multidimensional collections?

    Hi This is a small issue, but I think the following, from PL/SQL reference 11.2 (http://docs.oracle.com/cd/E11882_01/appdev.112/e25519/composites.htm#BABIBDDG), is wrongly calling the data types (and the variables created of those types) nested table

  • Green flag to Red flag in SXMB_MONI

    Hello experts, During the FILE -> BPM -> RFC scenario, i use a mapping step to intentionally throw an exception to make application errors visible in the monitoring logs (SXMB_MONI). This way a red flag on the outbound status field is shown if the co

  • Column count of dynamic query

    how can ı find column count of dynamic query is there a simple way thanks