Question about some effect

Hi,
I was trying to find out  how it's made the effect from the website below, I mean the one from the packages in the middle of the website (Domain names, Email hosting ect), on mouse over the image is brighter, is it just a 'image swap' effect but how they put the text then? The second question is about the fade in and out of the text on the bottom of the website (Where is: Why choose Fasthosts) is it possible to do it in Dreamweaver or is this flash animation?
Website: http://www.fasthosts.co.uk/
Regards

Ok, Gary gave the right answer about the middle section. Case closed.
About the effect you're talking about at the bottom (I suppose it's the "Why choose Fasthost?" section), it's in JavaScript.
To answer the question "is it possible to do it in Dreamweaver", you can do it by using Spry effect: Select the element you want to animate and in the Behaviors panel, select Effect and then the Appear/Fade (or Blind, which is similar). Enter the settings, and you have a Fade In effect (you may need to change the event, for example to use onLoad instead of onClick).
You can go further (for example, to have many sentences like the other website does) by looking at http://labs.adobe.com/technologies/spry/samples/htmlpanel/html_panel_two.html
If you don't want to use Spry, other JavaScript libraries (like jQuery) surely supports that.
Also, you can look at their code...:
2ticker.js
3Scrolls the "Why choose Fasthosts" content in the footer
4************************************/
5
6var intTotalItems = 0;
7var intLastNumber = 0;
8var objDiv, objContentDiv;
9var tickerDelay = 4000;
10
11function startTicker() {
12 objDiv = document.getElementById("contentscroller");
13 objContentDiv = document.getElementById("displayedcontent");
14
15 if (objDiv && objContentDiv) {
16 /* Loop through the contentscroller UL, give each LI
17 an ID and save the list in an array */
18 for (var i = 0; i < objDiv.childNodes.length; i++) {
19 var item = objDiv.childNodes[i];
20 if (item.nodeName.toLowerCase() == "li" && item.id == "") {
21 item.setAttribute("id", intTotalItems);
22 intTotalItems++;
23 }
24 }
25
26 // Add first load of content
27 objCurrentContent = document.getElementById(intLastNumber);
28 if (objCurrentContent)
29 objContentDiv.innerHTML = objCurrentContent.innerHTML;
30 intLastNumber++;
31
32 // And change it in ten seconds
33 setTimeout("changeContent()", tickerDelay);
34 }
35}
36
37// Display the next content snippet in the list
38function changeContent() {
39 objCurrentContent = document.getElementById(intLastNumber);
40 startOpacityChange('displayedcontent', 100, 0, 1000);
41
42 setTimeout("startOpacityChange('displayedcontent', 0, 100, 1000)", 1000);
43 setTimeout("document.getElementById('displayedcontent').innerHTML = objCurrentContent.innerHTML;", 1005);
44
45 if (intLastNumber == (intTotalItems - 1))
46 intLastNumber = 0;
47 else
48 intLastNumber++;
49
50 // Now do it all again (in ten seconds time)!
51 setTimeout("changeContent();", tickerDelay);
52}
53
54function startOpacityChange(strId, intOpacStart, intOpacEnd, intMillisec) {
55 var intSpeed = Math.round(intMillisec / 100);
56 var intTimer = 0;
57
58 if(intOpacStart > intOpacEnd) {
59 for(i = intOpacStart; i >= intOpacEnd; i--) {
60 setTimeout("changeOpacity(" + i + ",'" + strId + "')",(intTimer * intSpeed));
61 intTimer++;
62 }
63 }
64 else if(intOpacStart < intOpacEnd) {
65 for(i = intOpacStart; i <= intOpacEnd; i++) {
66 setTimeout("changeOpacity(" + i + ",'" + strId + "')",(intTimer * intSpeed));
67 intTimer++;
68 }
69 }
70}
71
72/* Change the opacity of a div (allowing for different browsers) */
73function changeOpacity(intOpacity, id) {
74 if(!IE7) {
75 var objLI = document.getElementById(id).style;
76
77 objLI.opacity = (intOpacity / 100);
78 objLI.MozOpacity = (intOpacity / 100);
79 objLI.KhtmlOpacity = (intOpacity / 100);
80 objLI.filter = "alpha(opacity=" + intOpacity + ")";
81 }
82}
83
84/* Detect IE7 to disable text fade */
85var IE7 = false;
86if(navigator.userAgent.indexOf("MSIE 7") != -1) IE7 = true;
and it's application:
<div id="helpquote">
<div id="contentscrollercontainer">
<ul id="contentscroller">
<li id="displayedcontent" style="opacity: 1;">Affordable web hosting for small businesses.</li>
<li id="0">We're the UK's largest web hosting company.</li>
<li id="1">Secure, reliable web hosting comes with experience: Established 1999.</li>
<li id="2">Small business web hosting services, from a company that knows your needs.</li>
<li id="3">Expert 24x7 email & national rate phone support for all customers.</li>
<li id="4">Affordable web hosting for small businesses.</li>
<li id="5">30 day web hosting money back guarantee & free instant online setup.</li>
<li id="6">Instant web hosting, including easy to use website builder.</li>
<li id="7">Internet access, domain registration, email hosting and web hosting all in one place.</li>
<li id="8">UK web hosting with UK servers.</li>
<li id="9">Secure, reliable, quality web hosting.</li>
<li id="10">Integrated domain name registration and web hosting.</li>
<li id="11">We're the largest UK domain name registrant.</li>
<li id="12">UK domain registration and web hosting gives priority search rankings.</li>
<li id="13">UK web hosting also offers you the best performance and reliability.</li>
<li id="14">Chosen by more web hosting professionals than any other hosting company.</li>
</ul>
</div>
</div>
Nelson

Similar Messages

  • A question about some of the features

    I have Vista so therefore am unable to use the trial version of photoshop elements. Before I go ahead and purchase the software, I had a few questions about its features.
    I'll mainly be using photoshop to create digital scrapbooks. I know that photoshop comes equipped with themes and images, but I would like to know if I can use my own backgrounds and images. If I am able to use my own backgrounds, can they tile?
    Another thing I would like to know is if I can create my own projects with custom dimensions.
    Lastly, I'll be using photoshop to sprite. Is elements well suited for spriting? More specifically, does it have a color selection/replacement tool?

    I use PSE for digital scrapbooking. Instead of using the "built in"
    creations and albums, just create your own PSD files with layers of
    whatever images/embellishments/background papers you want. You can
    specify whatever size of creation you want when you create your PSD file
    (you only have the choice of certain sizes when you use the built in
    stuff).
    Not sure about what you mean about making your backgrounds tile, but I
    think it is possible. You can take a "background" paper, do a selection,
    and then define a pattern and fill it. Or, if you mean layer your
    background papers - yes you can do that too. (Here is my online
    scrapbook pages, all of which were done in PSE 4 or 5:
    http://www.scrappersguide.com/forums/gallery/showgallery.php?cat=500&ppuser=413)
    You can select by color (using the magic wand tool) and you can replace
    color, but it may not work exactly as you expect. (I also don't know
    what spriting is.) But, many people just use a hue/saturation adjustment
    layer to change colors.
    -Trish

  • General but very urgent question about After Effects...

    I registered for an online course with my college called "Motion Graphics."
    The class description states that the course teaches Adobe Flash and Adobe After Effects,
    and requires the "Classroom in a Book" textbooks for both applications.
    Part of the class description says, "Students will learn how to manipulate text, produce simple animations,
    incorporate audio and video, and learn the necessities of Action Scripting."
    I don't know much about After Effects; I signed up for the class to learn Flash because I am interested in using it
    to create games, mobile apps, and embedded web content. I have no interest in making flash movies.
    After the course opened up today online, it says only the After Effects textbook is needed,
    and that the Flash textbook is not required because Flash has been "phased out" of the course.
    I have been intending to take the ActionScript course after this completing this Motion Graphics course.
    This Motion Graphics course is actually a prerequisite for the ActionScript course.
    Does that even make sense considering Flash has been "phased out" of the course?
    As I said, my intention was to learn Flash and move on to learning ActionScript for the purpose of
    creating games, mobile apps, and embedded web content. Should I even be bothering with this class?

    I contacted the course instructor about the situation, to which she replied:
    "So sorry, summer was the last time flash would be taught. Advanced Flash, after this semester, will not longer exist either.
    It will be renamed "Advanced Motion Graphics" however, the number for the DIG class will remain the same.
    It will only cover After Effects, as flash can no longer work with creating many "apps" and other applications do not except flash.
    If you want to take a flash course, maybe the college offers a weekend course, maybe?
    Classroom in a book is a great book to learn on, so if you want, you could keep the textbook and learn it on your own.
    Again, sorry for your disappointment, but this class will only cover after effects."
    What does she mean by "It will only cover After Effects, as flash can no longer work with creating many "apps" and other applications do not except flash."?
    Why would she say this?

  • A few questions about After Effects and CGI (Computer-generated Imagery)

    Hi,
    I'm very new to After Effects and this forum. But I have a few questions.
    Now, I have recently started a movie project with my friend at a workshop. It's an action/sci-fi film and I'm probably going to be the editor and if needed in charge of visual and/or special effects. This sounds like a pretty big job for a noob, but we don't have a time limit with the project so there's time to learn.
    But to my questions. I've thought of introducing CGI to myself (very simple of course). I've studied the use of blender, and I think I'll use it for the modelling and animation. But should Ae be used in any stage of producing the CGI or should everything be done in blender? If I do, how? Am I going in the wrong direction (wrong kind of software, etc.)?
    Also, I'm not talking of fully producing the scene with the computer, but adding things like characters or items, maybe special effects.
    I'm hoping for an answer to all my questions, but if you have just one or two answers I'm happy to hear them too. You're also welcome to correct me if I've misunderstood something. Please ask for further specifications if you need any!

    pek859 wrote:
    1. I'm very new to After Effects and this forum. But I have a few questions.
    2. Now, I have recently started a movie project with my friend at a workshop. It's an action/sci-fi film and I'm probably going to be the editor and if needed in charge of visual and/or special effects. This sounds like a pretty big job for a noob, but we don't have a time limit with the project so there's time to learn.
    3. But to my questions. I've thought of introducing CGI to myself (very simple of course). I've studied the use of blender, and I think I'll use it for the modelling and animation. But should Ae be used in any stage of producing the CGI or should everything be done in blender? If I do, how? Am I going in the wrong direction (wrong kind of software, etc.)?
    4. Also, I'm not talking of fully producing the scene with the computer, but adding things like characters or items, maybe special effects.
    5. I'm hoping for an answer to all my questions, but if you have just one or two answers I'm happy to hear them too. You're also welcome to correct me if I've misunderstood something. Please ask for further specifications if you need any!
    1. Welcome to the family. AE is big, Really big. It's hard. Really hard. You have no idea how hard AE is to learr and to master.
    2. No time limit is good but you will need some money.
    3. This is not a Blender forum. You want to explore filmmaking, CGI and Blender-specific forums for that kind of assistance.
    4. AE is for your compositing and special effects. But you will need to learn how both apps work before you can decide how to divide up your project. A comparison would be shooting your film. Are you using a DSLR? Do you know why? Or are you using a GoPro? Another example might be Apple's Final Cut Pro. You can edit audio in it but it's better to use an audio application. You can do some special effects in FCP but it's best to do complex stuff in Motion of After Effects. How do you know what app is appropriate Lots of experience. Lots of failures.
    5. We were all new to AE and to vidoe editing and to special effects at one time or another. The user forums are not places to learn how to use these applications. You do that with tutorials and books and tons of time. Learning to use Blender to make a robot move is one thing. Making the robot into a character that compels the audience to care about it is quite another. Using AE to create a layer of clouds is one thing. Having those clouds react to the bow waves created by your flying robot as it approaches sonic speeds is quite another challenge.

  • Question about after effects

    hi im new to after effects and trying to learn a few step,iv been using youtube for help but this aspect i want to find out about i dont know what to look up to find my answer.
    my question is when im making an intro for a video
    i have design 1, design 2, then design 3 ,then my name appears .then i want to keep my name on the screen but dissapear the design 1.2 and 3  behind the name then start a dif design behing the name . how to i get from my name along with the 3 designs to my name with no designs and then be able add more designs ?
    sorry but above is the best way i feel i can describe it :/ .
    is it to do with a new layer or solid  that i put after my name to seperate the two ?
    if someone can find a video on youtube they feel can show me rather than tell me it would be appreciated!.
    thanks!

    Don't go to YouTube. Go here: Getting started with After Effects

  • Question about some statement

    Hello Gurus,
           as for a statement "The MBW job BI_BTCH__FX_PAYMENT_DATA=X10M and itu2019s child job ended with completed Abnormally status.", I have some question as follows:
         (1) where does they check out this job " BI_BTCH__FX_PAYMENT_DATA=X10M " ?  what do that "="  and "X10M" and "BI_BTCH__FX_PAYMENT_DATA"   mean ?
        (2) how does " MBW job BI_BTCH__FX_PAYMENT_DATA=X10M "  match some BW object?
        (3) what is  itu2019s child job ?
    Ma

    Is the associated select-statement returning rows or not?
    If yes -> delete is deleting
    If no -> delete is just using CPU-cycles
    To tune the delete-statement, you have to tune the corresponding select-statement. To tune the select-statement, you want to read the thread When your query takes too long ...

  • Quick Question about fade effect

    Quick Question:
    If I wanted to add a Fade Effect from one state to another
    when a button is pressed.
    How would I do that within the code?

    quote:
    Originally posted by:
    atta707
    You can do something like on the click of the button:
    var fader:Fade = new Fade(targetUIComponent);
    fader.duration = 1000;
    fader...;
    fader.play();
    or listen for currentStateChanging event and write the same
    similar code.
    or define transitions from one state to another like:
    <mx:Transition id="toOneOnly" fromState="*"
    toState="OneOnly">
    <mx:Sequence id="t1" targets="{[p2]}">
    <mx:Iris showTarget="false" duration="350"/>
    <mx:SetPropertyAction name="visible"/>
    <mx:SetPropertyAction target="{p2}"
    name="includeInLayout"/>
    </mx:Sequence>
    </mx:Transition>
    Hey,
    I would like to use the "transition from one state to
    another", but if you can explain each part for me that would be
    helpful.
    If you can comment on each line of that code that would help
    thanks

  • Question About Title Effect

    Using only the titler in Premiere Pro CS5 (no After Effects), would it be possible to have titles fade in, from left to right, a line at a time, and then fade out from left to right a line at a time?
    If so, how would this be accomplished?
    TIA!

    Create a separate title for each line of text.  Use the Linear Wipe effect to bring each line on, and each line off.  Add some feather so soften the edge.

  • Question about the effective radiated power of WRT54G wireless router

    Dear Sir,
    As I knew that the output power of this router is 18dbm (about 64mW), can I have more technical information of the WRT54G wireless router as follow :
    Q1) What is the effective radiated power output of WRT54G ?
    Q2) What is the gain of each antenna in the WRT54G wireless router ?
    Q3) Are there any antenna product of your company which offer higher dB gain and can be used in this router?
    Q4) Are there any router product of your company which has higher effect output power.  If yes, can you please offer a soft copy of the specification (including the effective radiated power output) of such router ??
    I should be grateful if you can answer me through this forum
    Many thanks.
    Regards
    Patrick from Hong Kong
    (Mod Note:Removed email address.)
    Message Edited by daikunzeon on 06-01-2007 03:02 AM

    This is a community forum. Here are the people who use Linksys devices. Nobody from Linksys is here. For those details you have to contact Linksys. Go to their website and look for the "Contact Us" page.

  • Question about special effects

    I bought this programe yesterday so I could make pictures black and white and add a burst of color to one object  but I cannot find out how to do this I have photoshop elements 12

    One way is to be in the Expert mode in the pse 12 editor, select the Smart Brush Tool, set The Presets to Reverse Effects and chose Turn Your Image black and white in reverse.
    Then paint on the part you want in color.
    more about the smart brush tool:
    http://helpx.adobe.com/photoshop-elements/using/adjusting-shadows-light.html
    http://www.adobepress.com/articles/article.asp?p=1997856&seqNum=7

  • Question about some date

    Hi there:
    My sales order was created on 11/12,then I went to schedule line item and selecing shipping tab,I found that delivery date is 11/23,goods issue date is 11/22,loading date is 11/19,material available date is  11/18,transportation plan date is 11/18,my question is what kind of setting leads to that dates? Or how the system calculate these date by what logic? Thanks.

    There are plenty of threads you can see if you search the forum/google using backward/forward scheduling.
    For example check the link in the WIKI forum [Available to Promise (ATP)|http://wiki.sdn.sap.com/wiki/display/ERPLO/AvailabletoPromise+%28ATP%29]
    [What is Forward and Backward Scheduling?|http://www.sap-basis-abap.com/sd/what-is-forward-and-backward-scheduling.htm]
    The data are obtained from the following;
    1) Replishment lead time from material master MRP 3 view (or MRP2 view depending on whether the material is procured externally or produced internally).
    2) Transit time and transport lead time - you can find the details in the route definition (path - spro->logistics execution -> shipping -> basic shipping funtion -> routes -> define routes ->define routes and stages
    3) Loading time and pick/pack time - they are defined in the shipping point configuration at SPRO -> Enterprise  structure->definition -> logistics execution ->define,copy,check shipping point. The same can also be seen in  logistics execution -> scheduling section.
    Regards

  • Question about some packages in arch

    Hello
    Where do I report/ask about packages in arch *like in AUR there is a comment section*
    The reason is because well the package (sdl) didn't had PulseAudio support so I was wondering where to report it and KTorrents didn't bring any plug-ins with the package (plus I can't compile it since there is a phonon error I don't get)
    sorry if this wasn't the section,
    Thanks

    alright, thanks fukawi2, wonder
    well, i'm compiling them alright, but not ABS *need to read the wiki*
    Last edited by akurashy (2009-08-16 15:30:33)

  • Questions about After Effects CC (12.0.1)

    Having now licensed AE, I got some errors reported due to ray shading. Reboot stopped that. Then I get random errors during app startup at the cleaning up ray tracing step. And, still no improvement on warp stab performance. I need some guidance here. Thanks...

    I am having the problem in AE, I tested PP to see if the problem existed there and it did not. In the PP case, it appears that PP executes the warp stab itself rather than farming it out to the Analysis Server in a separate process.
    Problem may very well be with Mavericks but the net result is that an interaction between Adobe software and Mavericks is causing a problem that your customers will fault Adobe for.
    However, more information for you. It appears only to be a problem with a sequence that I drag and drop from PP to AE (dynamic linking). If I import the PP project into AE using File->Impot->Adobe Premiere Pro Project, warp stab runs with Adobe Analysis Server at 100% CPU and completes in a reasonable amount of time (20 minutes). Using dynamic linking I started warp stab last night after my last post and four hours later it was 50% complete and AAS was running around 10% CPU.
    I was hoping for a workaround, but it now seems that I am informing Adobe of a potential problem that a bug report needs to be filed on.
    Thanks for pursuing this with me. I am posting my prefs you requested next.

  • Questions about After Effects CC (12)

    Went ahead and subscribed for the full monty. First startups produced a shader error about ray tracing. Reboot of the MacBook and that went away. However, I am still not getting multi cpu capability in warp stab. I have gone into preferences to enable multi cpu and 8 cpus are reported which is what I expect to see for my 15" MacBook Pro Retina. What do you suggest?

    1Password:
      Version:          4.0
      Source:          Mac App Store
      Install Date:          10/4/13, 6:08 AM
    1Password:
      Version:          4.0.3
      Source:          Mac App Store
      Install Date:          10/14/13, 9:46 PM
    Adobe Flash Player:
      Version:
      Source:          3rd Party
      Install Date:          10/14/13, 9:15 AM
    Adobe Photoshop Lightroom 5.2:
      Version:          Adobe Photoshop Lightroom 5.2
      Source:          3rd Party
      Install Date:          10/3/13, 6:33 PM
    AirPort Utility:
      Version:          6.3.1
      Source:          Apple
      Install Date:          10/3/13, 11:15 PM
    Brorsoft:
      Version:
      Source:          3rd Party
      Install Date:          10/6/13, 9:22 PM
    Carbonite:
      Version:
      Source:          3rd Party
      Install Date:          10/5/13, 7:46 AM
    Chinese Word list Update:
      Version:          1.9
      Source:          Apple
      Install Date:          10/3/13, 8:45 PM
    CUDA 5.5:
      Version:
      Source:          3rd Party
      Install Date:          10/21/13, 6:19 PM
    CUDA 5.5:
      Version:
      Source:          3rd Party
      Install Date:          10/23/13, 12:53 AM
    CUDA 5.5:
      Version:
      Source:          3rd Party
      Install Date:          10/23/13, 12:54 AM
    DaisyDisk:
      Version:          3.0.1
      Source:          Mac App Store
      Install Date:          10/9/13, 6:39 AM
    Digital Camera RAW Compatibility Update:
      Version:          4.09
      Source:          Apple
      Install Date:          10/3/13, 11:15 PM
    Digital Camera RAW Compatibility Update:
      Version:          4.09
      Source:          Apple
      Install Date:          10/22/13, 3:08 PM
    Evernote:
      Version:          5.3.0
      Source:          Mac App Store
      Install Date:          10/4/13, 8:10 AM
    Evernote:
      Version:          5.4.1
      Source:          Mac App Store
      Install Date:          10/13/13, 11:19 AM
    Flip4Mac:
      Version:
      Source:          3rd Party
      Install Date:          10/15/13, 8:55 AM
    GoProStudio:
      Version:
      Source:          3rd Party
      Install Date:          10/5/13, 7:37 AM
    HP Printer Software Update:
      Version:          2.14
      Source:          Apple
      Install Date:          10/7/13, 11:11 AM
    iMovie:
      Version:          9.0.9
      Source:          Mac App Store
      Install Date:          10/3/13, 5:52 PM
    iMovie:
      Version:          10.0.0
      Source:          Mac App Store
      Install Date:          10/22/13, 10:30 PM
    iPhoto:
      Version:          9.4.3
      Source:          Mac App Store
      Install Date:          10/3/13, 5:51 PM
    iPhoto:
      Version:          9.5.0
      Source:          Mac App Store
      Install Date:          10/22/13, 10:26 PM
    iTunes:
      Version:          11.1.1
      Source:          Apple
      Install Date:          10/3/13, 11:21 PM
    iTunes:
      Version:          11.1.2
      Source:          Apple
      Install Date:          10/22/13, 9:57 PM
    Java 7 Update 40:
      Version:
      Source:          3rd Party
      Install Date:          10/5/13, 4:54 PM
    Java 7 Update 40:
      Version:
      Source:          3rd Party
      Install Date:          10/5/13, 5:04 PM
    Java 7 Update 45:
      Version:
      Source:          3rd Party
      Install Date:          10/17/13, 6:34 AM
    Java for OS X 2013-004:
      Version:          1.0
      Source:          Apple
      Install Date:          10/5/13, 4:56 PM
    Java for OS X 2013-005:
      Version:          1.0
      Source:          Apple
      Install Date:          10/17/13, 6:35 AM
    Java for OS X 2013-005:
      Version:          1.0
      Source:          Apple
      Install Date:          10/22/13, 7:51 PM
    Keynote:
      Version:          5.2
      Source:          Mac App Store
      Install Date:          10/3/13, 11:27 PM
    Keynote:
      Version:          6.0
      Source:          Mac App Store
      Install Date:          10/22/13, 10:03 PM
    Lame Library v3.98.2 for Audacity:
      Version:
      Source:          3rd Party
      Install Date:          10/4/13, 2:33 PM
    MacBook Pro Retina SMC Update:
      Version:          1.2
      Source:          Apple
      Install Date:          10/3/13, 11:21 PM
    Nmap 6.40:
      Version:
      Source:          3rd Party
      Install Date:          10/21/13, 1:01 PM
    Numbers:
      Version:          2.2
      Source:          Mac App Store
      Install Date:          10/3/13, 11:30 PM
    Numbers:
      Version:          3.0
      Source:          Mac App Store
      Install Date:          10/22/13, 9:57 PM
    OS X:
      Version:          6.0
      Source:          Mac App Store
      Install Date:          10/22/13, 2:27 PM
    OS X:
      Version:          10.9 (13A603)
      Source:          Apple
      Install Date:          10/22/13, 2:46 PM
    OS X Update Combined:
      Version:          10.8.5
      Source:          Apple
      Install Date:          10/3/13, 11:15 PM
    Pages:
      Version:          4.2
      Source:          Mac App Store
      Install Date:          10/3/13, 11:32 PM
    Pages:
      Version:          5.0
      Source:          Mac App Store
      Install Date:          10/22/13, 10:11 PM
    Xcode:
      Version:          2.0
      Source:          Mac App Store
      Install Date:          10/7/13, 12:29 AM
    Xcode:
      Version:          2.0
      Source:          Mac App Store
      Install Date:          10/22/13, 10:11 PM
    XQuartz 2.7.4:
      Version:
      Source:          3rd Party
      Install Date:          10/21/13, 1:04 PM

  • General Question about some acronym in EM Context

    What the following acronym stand for
    EMD its related to agent but what is the full form of it.
    is it Enterprise Manager Data control or something else
    PBS is it Platform base services or Platform basic services. or anything else.

    I can't remember what EMD stands for but PBS stands for Platform Background Services.
    -Mughees

Maybe you are looking for

  • Open as "Smart Object" from ACR to PS questions.

    I have 2 questions associated with opening from ACR as a Smart Object in Photoshop. I'm using CS4. 1. Is there a way to retrieve the original filename (complete with path) using a script or a setting somewhere to do this? I'm currently using Bridge T

  • Lost brushes in Photoshop cc

    After working in Lightroom 5 and photoshop cc for an extended period (6 hrs or so) I lose my brushes especially consistently in the liquify filter. Then, the whole photo has a red overlay as if a mesh-- and then after I close liquify window my image

  • ICR Proces 003 Functionality

    Hi friends Recently I m cuztomizing SEM BCS for financial statement consolidated, from some years ago in version SAP R/3 4.6c, the transaction code F.2E was used to, butin version 5.0 and 6.0 this funcionality there isnt, now Intercompany Reconciliat

  • Landed costs

    Hi All, This is a question on landed costs for imported materials. I have created a PO for an item having a value of INR 650, [ex.rate u2013 48/-] qty u201310. I have created landed costs after a/p invoice. I gave freight amt as 20 usd, customs  valu

  • Small issue in small program(code) that need to be fixed ...

    Hi Guys , i need ur help in some kind of issue( technique thing ;) ). i have done small program that ask for numbers then print them and told u how many Odd numbers. the issue that i have it, is that the program when print the result (the numbers) it