Flash CS3 Site

Hi,
I'm building a portfolio website in Flash CS3 for a school
project . It's going well.
I have several .SWF movies that I'd like to place in my
portfolio website. Here's what I want to do.
You come to a page and see a screen shot from one of the .SWF
movies. Below the image is a play button to launch the movie. When
the user clicks the play button it launches the .SWF movie. Once
the movie is launched the user should have use of all of the
controls in the movie (pause, stop, etc).
If the user decides they want to check out another area of
the website (btw I'm only using Flash to build this) I need the
movie to stop playing (including audio).
So, in summary - I have a new Flash CS3 project that I want
to add .SWF movies to. Is there a tutorial out there that explains
how to do this?
Thanks,
mindforge

check the loader class. you can use it to load external
swfs.

Similar Messages

  • Encapsulate existing asp/html site within flash CS3...?

    Hi guys,
    I am trying to integrate an existing ASP/sql server driven
    site within an existing flash-only site.
    I have used getURL in some places to grab bits and pieces
    but, ideally, I need to have a couple of areas within the flash
    site that will access the existing ASP that generates the dropdowns
    for searching etc. then pull the results into a separate 'frame'.
    Is it possible to define an area within the flash movie that
    will enable me to directly retrieve and display the ASP generated
    HTML? I'm trying to avoid a whole interface re-write using flash
    components.
    Thanks in advance for any help, advice or examples.

    The easiest way would be to use FlashVars to pass data into your SWF.  Just add a parameter to your embed called FlashVars and pass key value pairs.
    Object Tag Example:
    <PARAM NAME=FlashVars VALUE="FName=Tom&LName=Johnson">
    Embed Tag Example:
    <EMBED href="display.swf" FlashVars="FName=Tom&LName=Johnson" ... (other parameters)></EMBED>
    I usually create my embed from the code-behind so I can add the data as needed and place everything in a label or literal on the front end.

  • How to add special characters in Flash CS3

    Hi, i need the help of some flash guru… these last weeks we were working with cloversites.com to build a community website… the interface is awesome etc etc however we in Malta have eight special characters (GCZ with a dot on top of them and an H with a second strikethrough). Those at cloversites wrestled with the problem, they could see the characters on their computers but when they entered the text in the site, flash couldn't render the special characters. Here is their message:
    I am extremely sorry about this, but we were unable to add in your characters. We attempted to add them into our software but they did not work. We worked on it all morning and realized that we need an extra add-on for our keyboards. Adding special characters is nothing new to us and have answered this request for many of our international users. For some reason, the Maltese characters did not work in our sites. For example, our "option-G" is the copyright symbol so it will need to be transferred over to international characters.
    Unfortunately, we thing that this has to do with Adobe Flash CS3. The software allowed me to embed the characters, but we were unable to render them on the web. Which led us to think it had to do with the version Adobe is running and its inability to render the text through its software on the web. None of the characters worked on the web, and it looks like its just an Adobe bug. So we are able to type and use the Maltese characters, but Adobe Flash is having trouble with them.
    Does anybody know of any possible solution?

    see if codepoints-to-string() is suitable for you ..
    Re: how to concatenate hexadecimal value to string in XQuery in PS Message Flow

  • How to creating a web banner in Flash CS3?

    Hi all,
    I'm very new to Flash CS3. Can anyone give me a step-by-step
    instructions on how to make a banner for a web-site? Or a link were
    i can find step-by-step instructions?
    I have googled it but found no real help. I have tryed
    "Youtube" hoping to even fine any one (most likely a child) with
    directions on how to do this. Funny thing is that it seems most 8
    year olds are better at Flash CS3 than I am & i'm 45.
    Anyway, if you can help please make it simple or for the
    simple minded. :)
    Thanks to all!!
    BJ

    I understand your pain...I just posted a similar request
    earlier today for help but finally figured it out on my own. I've
    done lots of searching online and used Adobe's Flash Classroom in a
    Book and also took an online ed2go class and I still don't have a
    good handle on Flash. Nothing seems to give clear step by step
    directions on animating images for web banners. You just have to do
    a lot of trial and error. These websites may help if you don't have
    time for the classes:
    http://www.smartwebby.com/Flash/default.asp
    http://animation.about.com/lr/flash_animation/150331/1/
    mek113

  • How can I create a photo gallery in flash cs3, Iam a beginner in flash

    How can I create a photo gallery to put into my current flash site Iam creating? Using  flash cs3, can anybody suggest any tutorials (noting complicated with me being new to flash cs3)
    When going on line I saw that maybe you can use Dreamweaver, XML, or even Photoshop can anybody explain the difference between using one or the other?
    THanks

    Indeed, google ftw.
    For example:
    +as3 photo gallery flash tutorial
    reveals many including this one:
    http://www.flashmagazine.com/Tutorials/detail/as3_photo_gallery/

  • AIR Intrinsic Classes-Tried and Proven Approach to building AIR applications   in the Flash CS3 IDE

    Hi everyone,
    For all of you out there who would like to develop AIR
    applications
    from the Flash CS3 IDE but aren't sure how to get those pesky
    intrinsic
    classes working, I have a technique that you can work with to
    create
    your classes and make fully functional AIR applications.
    First of all, those solutions out there that list
    "intrinsic" functions
    in their class definitions won't work. That keyword has been
    taken out
    and simply won't work. The "native" keyword also doesn't work
    because
    Flash will reject it. The solution is to do dynamic name
    resolution at
    runtime to get all the classes you need.
    Here's a sample class that returns references to the "File",
    "FileStream", and "FileMode" classes:
    package com.adobe{
    import flash.utils.*;
    import flash.display.*;
    public class AIR extends MovieClip {
    public static function get File():Class {
    try {
    var classRef:*=getDefinitionByName('flash.filesystem.File');
    } catch (err:ReferenceError) {
    return (null);
    }//catch
    return (classRef);
    }//get File
    public static function get FileMode():Class {
    try {
    var
    classRef:*=getDefinitionByName('flash.filesystem.FileMode');
    } catch (err:ReferenceError) {
    return (null);
    }//catch
    return (classRef);
    }//get FileMode
    public static function get FileStream():Class {
    try {
    var
    classRef:*=getDefinitionByName('flash.filesystem.FileStream');
    } catch (err:ReferenceError) {
    return (null);
    }//catch
    return (classRef);
    }//get FileStream
    }//AIR class
    }//com.adobe package
    I've defined the package as com.adobe but you can call it
    whatever you
    like. You do, however, need to import "flash.utils.*" because
    this
    package contains the "getDefinitionByName" method. Here I'm
    also
    extending the MovieClip class so that I can use the extending
    class
    (shown next) as the main Document class in the Flash IDE.
    Again, this is
    entirely up to you. If you have another type of class that
    will extend
    this one, you can have this one extend Sprite, Math, or
    whatever else
    you need (or nothing if it's all the same to you).
    Now, in the extending class, the Document class of the FLA,
    here's the
    class that extends and uses it:
    package {
    import com.adobe.AIR;
    public class airtest extends AIR{
    public function airtest() {
    var field:TextField=new TextField();
    field.autoSize='left';
    this.addChild(field);
    field.text="Fileobject="+File;
    }//constructor
    }//airtest class
    }//package
    Here I'm just showing that the class actually exists but not
    doing much
    with it.
    If you run this in the Flash IDE, the text field will show
    "File
    object=null". This is because in the IDE, there really is no
    File
    object, it only exists when the SWF is running within the
    Integrated
    Runtime. However, when you run the SWF as an AIR application
    (using the
    adl.exe utility that comes with the SDK, for example), the
    text field
    will now show: "File object=[object File]". Using this
    reference, you
    can use all of the File methods directly (have a look here
    for all of
    them:
    http://livedocs.adobe.com/labs/flex/3/langref/flash/filesystem/File.html).
    For example, you can call:
    var appResource:File=File.applicationResourceDirectory;
    This particular method is static so you don't need an
    instance. If you
    do (such as when Flash tells you the property isn't static),
    simply
    create an instance like this:
    var fileInstace:File=new File();
    fileInstance.someMethod('abc'); //just an example...read the
    reference
    for actual function calls
    Because the getter function in the AIR class returns a Class
    reference,
    it allows you to perform all of these actions directly as
    though the
    File class is part of the built in class structure (which in
    the
    runtime, it is!).
    Using this technique, you can create references to literally
    *ALL* of
    the AIR classes and use them to build your AIR application.
    The beauty
    of this technique is its brevity. When you define the class
    reference,
    all of the methods and properties are automatically
    associated with it
    so you don't need reams of code to define each and every
    item.
    There's a bit more that can be done with this AIR class to
    make it
    friendlier and I'll be extending mine until all the AIR
    classes are
    available. If anyone's interested, feel free to drop me a
    line or drop
    by my site at
    http://www.baynewmedia.com
    where I'll be posting the
    completed class. I may also make it into a component if
    there's enough
    interest. To all of you who knew all this already, I hope I
    didn't waste
    your time.
    Happy coding,
    Patrick

    Wow, you're right. The content simply doesn't show up at all.
    No
    JavaScript or HTML parsing errors, apparently. But no IE7
    content.
    I'll definitely have to look into that. In the meantime, try
    FireFox :)
    I'm trying to develop a panel to output AIR applications from
    within the
    Flash IDE. GSkinner has one but I haven't been able to get it
    to work
    successfully. Mine has exported an AIR app already so that's
    a step in
    the right direction but JSFL is a tricky beast, especially
    when trying
    to integrate it using MMExecute strings.
    But, if you can, create AIR applications by hand. I haven't
    yet seen an
    application that allows you to change every single option
    like you can
    when you update the application.xml file yourself. Also, it's
    a great
    fallback skill to have.
    Let me know if you need some assistance with AIR exports.
    Once you've
    done it a couple of times, it becomes pretty straightforward.
    Patrick
    GWD wrote:
    > P.S. I've clicked on your link a few times over the last
    couple of days to
    > check it out but all I get is a black page with a BNM
    flash header and no way
    > to navigate to any content. Using IE7 if that's any
    help.
    >
    >
    >
    http://www.baynewmedia.com
    Faster, easier, better...ActionScript development taken to
    new heights.
    Download the BNMAPI today. You'll wonder how you ever did
    without it!
    Available for ActionScript 2.0/3.0.

  • Flash CS3 Issues ..?

    Hi - General question ii hope some cna help me with.
    Recently downed Flash CS3 - Dreamweaver and PS
    No issue on install - things i thought were going fine
    Comps got a fresh OS and updated drivers new - 2 gig of
    memory.
    i've been noticing little things like - when i save my fla -
    i updates other .fla's in the same folder - (not with the same
    name)
    I just built a CF and now - with no change to the swf - when
    i saved the .fla after a minor update - it changed all the other
    versions of .fla and the .swfs - all were empty - 1k swf and 1k
    .fla's after saving.
    when attempting to preview the fla's i had been using and is
    working fine on my site. Flash stated it had preformed and illigal
    something? and crashed and keeps crashing upon attempting a preview
    whethr browser or flash.
    I checked all code and code in the xml's js nad action
    scripts html etc etc - it was fine
    Now here is the kicker - my flash player ? seems to be
    missing over and over - i go to the adobe site - it shows it's not
    installed - i've installed it at least 8 damn times today. I dont'
    know if this is realated - but - it seems to be happening
    after deleting the 1k .swf's and fla files it produced
    I coped and pasted a back up copies of the .swfs and .fla's -
    which worked fine while in the back up folder - worked perfectly -
    till i opened it up the .fla in flash ( rechecking code to be sure
    i didn't miss something.
    Flash did it again, emptied or changed the back-up copy of
    the .swf and .fla down to .1k - empty nothing there. all i did was
    open it up?
    did a virus scan - a spy ware scan - nothing - didnt' think
    there would be - but better safe than sorry.
    These issues just really kicked in today - while i was
    working on a final .fla and considering some changes additions -
    going to experiment and get deeper into what i wanted to create.
    Till around 4pm today my .fla's and .swf Previewed fine and
    played fine - then just quit - and though it won't preview - i
    tested a export movie - the new .swf worked???
    any thoughts on the cause?
    Possible software conflict - maybe?
    but that wouldn't explain the Flash player not showing as
    installed on the adobe site or would it.
    I need to finish this fla soon, so i could use some help with
    this if any one has some suggestions as to what may be causing the
    issues.
    tia
    - c -

    thanx for the reply jdmajor -
    as mentioned - i scanned yesterday - first thing was a boot
    scan - memory scan - file scan - took 3 hrs to scan everything so
    many times - nothing popped up - well.....
    a Avast stated a cab file was corrupted on the boot scan -
    reinstalled Avast - re-updated signatures and Re-Boot scanned,
    memory scanned.
    Nothing showing as corrupted as far as viruses trojans worms
    etc
    did the usual maintanence - defrag - etc etc which
    maintanance is done nightly anyway.
    checked all updates for wares - nothing.
    drivers - nothing new.
    The flash player needing to be re-installed has been from the
    begining - lasts usually a couple days - then it shows as not being
    installed and i have to re-install it - now it's worse - yet
    thoughit shows not installed via the Flash Player page - it plays
    flash fine so i know it's installed.
    there are no hacked warz on the comp.
    Tried again last night - with some other back-up copies of
    the fla. -
    it keeps bring the 12k file to 1k and it refuses to work -
    now claiming it can't load the .xml file which is ...
    aaaarrggh! frustrating to say the least... lol up till 2:30am
    trying to fix it
    rebilt another mini file - worked fine - maybe there is
    something conflicting with paper vision.
    though there shouldn't be - i'm not re-writting the files.
    Just opening an existing previously working .fla file.
    I downed flash again last night - thought maybe a re-install
    of flash cs3
    - but...??? haven't done it yet
    tried debugging the script - nothing other than it keeps
    staing now that it can't load the .xml file
    checked pathways - a hundred times - they're correct.
    issue is somewhere... that's for sure.
    thanx for the suggestion
    i'll try a safemode scan - maybe it will reviel somthing
    though to be honest i hope not - not wishing for virus or worm I'd
    rather it be something else to be honest.
    Doesn't anyone come up with viruses and hacks that do good
    things ?
    lol theres a thought

  • Flash CS3 swf viewing @ hyper-speed on IE

    Hello-
    I have created a slide show from the Flash CS3 template...
    inserted in a DW CS3 document. Views/Tests GREAT except from IE...
    I'm thinking there must be a special "IE" code... but cannot find
    documentation. What's also interesting, I also created a Flash
    slide show from a version 6 Flash and inserted in the MX DW...
    works like a charm... hmmm???
    The examples are found:
    http://www.bonanzapress.com/chipsproducts.html
    (hyper-speed in IE)
    http://www.islandsanctuaryproperties.com/photos.html
    (created with the older version of Flash)
    THANKS in advance!!
    Krys

    What version of IE? I would actually strongly discourage
    coding anything for IE. It has always been broken. Did you know
    that to display PNG graphics properly, you need to enable Active-X
    controls? Probably the same thing with Flash. For that reason, I
    suggest adding a line to your website that can only be viewed by IE
    users that says "Please visit this site using any 32-bit web
    browser other than Internet Explorer. Adobe just doesn't have
    anyone that is able to compile a 64-bit browser at this time, and
    does not support those who know what they are doing. Thank
    you."

  • Can I use AS2 in Flash CS3 ?

    Is it possible to use in Flash Cs3 the AS2 and not just AS3 ?
    I am only trying to do a web link from a button to some web
    site.....
    I wrote
    on (release) {
    getURL ("
    http://www.yahoo.com", "_blank");
    and nothing happen....some women here asked same question a
    month ago...people told her it is different from the AS2.....still
    I cant used AS2 in falsh cs3 ?
    or can I ?

    you can mix as1 and as2 in an swf created in flash cs3 or you
    can use as3 in a swf created in flash cs3. but you cannot mix as3
    with either of the other two languages.
    use the publish settings to choose which language you want to
    use in your swf.

  • Flash CS3 versus Dreamweaver CS3! Or Other??

    Hi all,
    i am about constructing a profoshionnal web site...
    and i don't know the best and more wide and advanced software doing that,
    i am ezitated between Adobe Flash CS3 and Adobe Dreamweaver CS3 ??
    Please advise me,
    Thanks

    Dreamweaver and Flash are different, but complimentary, tools. They do different things.
    I would say that if you're not not familiar enough with Flash to judge how well it might work for you, then you're better off putting Flash to the side and worry about a tool like Dreamweaver for now.
    Dreamweaver has many competitors, but you're unlikely to find any to match it for production work. However, for iTunes U, the tough part is getting your transfer CGI working -- that is your biggest concern -- and neither Flash nor Dreamweaver is going to help you much in that department. Best to concentrate on getting the transfer CGI working, in my humble opinion. 'Course no harm in learning Dreamweaver while doing so.

  • How do I update Java for Adobe Flash CS3?

    Hi,
    When I ran Secunia Software Inspector today it told me that
    the version of Java I have installed on my computer is out of date.
    It tells me that it is finding 3 out-of-date files:
    Once here:
    C:\Program Files\Java\jre1.6.0_04\bin\java.exe
    Twice here:
    C:\Windows\System32\java.exe
    and three times here:
    C:\Program Files\Adobe\Adobe Flash CS3\JVM\bin\java.exe
    I updated Java via the Sun website and consequently the first
    and second warnings disappeared when I reran the Software
    Inspector.
    The software inspector however is still finding an
    out-of-date Java version here:
    C:\Program Files\Adobe\Adobe Flash CS3\JVM\bin\java.exe
    Question is: How do I update Java for Adobe Flash CS3?
    Is it adequate to copy the updated file "java.exe" from
    "C:\Program Files\Java\jre1.6.0_04\bin\" to "C:\Program
    Files\Adobe\Adobe Flash CS3\JVM\bin\" or do I need to do anything
    else?
    Any help will be much appreciated.

    Hi
    I have the same problem of you, and the same dont find a
    solution. Me it's Kaspersky Anti Virus (AV) which find this
    problem.
    So (and I dont know if this solution is perfect), but I open
    Flash CS3 with the Java update choiced and apparently Flash
    fonctionnely well and Kaspersky dont find this
    prob now. But I dont never use Java in Flash (or without that
    I know that..), and same, I dont know at what Java is used in Flash
    I think that "JRE v 1.6.0_04" and more recent Java version is
    not good, because it's not quite the same Java application that in
    Flash CS3, In Flash CS3 it's "J2RE" and
    not "JRE".
    The history of all Java versions (and this) is here (
    http://java.sun.com/products/archive/)
    (but in all this versions... seriousely it's a true shambles !)
    If you want the last version for J2RE in this archives it's v
    1.4.2.18 but the last version is J2RE 1.4.2.19 but dont again in
    this archives
    (search on Java site, maybe first page ? I dont remember
    where I to find it...). But the problem... it's that this last
    version (19) is always detected bad by my AV...
    So I decide to use just the next version (v 1.5) and last
    version in this series (in archives site) which is the "JDK/JRE -
    5.0 v 5.0.16" but again named "Java 2 Platform
    Standard Edition (J2SE) 5.0 Update 16" in this dowload next
    archives page
    http://java.sun.com/products/archive/j2se/5.0_16/index.html),
    so well again named "Java 2" in this page (that which dont
    the case for the equivalent same download page for Java 6...)
    (Choice "JRE 5.0 Update 16" in this page)
    For instal "JRE 5.0 Update 16":
    1) Supp all files and folders in "JVM" (Java Virtual Machine)
    folder in Flash CS3 (but dont supp this folder, empty now) and save
    this contents in archive in you have
    affraid.
    2) dl "JRE 5.0 Update 16", directly in this page if you want:
    (https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/View ProductDetail-Start?ProductRef=jre-1.5.0_16-oth-JPR@CDS-CDS_Dev
    eloper)
    3) In install, choice "personal instal" (or +/- the same
    terms) and choice the "JVM" folder of you Flash CS3
    and AV dont detect this version same a bad file

  • Flash CS3 - Odd button problem

    Hello, Ive upgraded to Flash CS3 and I'm having a problem
    with buttons.
    When I open up my site, the old buttons work fine to navigate
    the site and open up URL links. I have the actions on their own
    layer instead of having an onRelease on each button.
    However, when I create new buttons, they don't work.
    I've even tried copying the existing working buttons,
    applying the exact same actionscript to figure out what's going on,
    but that also doesn't work, those buttons won't open up the URLs.
    Am I perhaps using the wrong publish settings/flash player
    choice?
    Thanks

    The answer is "skins" just search under "Creating skins for
    some instances" in the Flash CS3 help file.

  • How to build a custom Flash CS3 component

    I just googled in the hope to find some resources about how
    to build custom Flash CS3 components, but nothing turned up. I also
    couldn't find any info on Adobe's Flash developers center.
    Do you know of any resource that sheds some light on this
    subject?
    If not then I'll have to try to find my way around custom
    components by learning from the ones that came with Flash CS3 I
    guess.

    Flash CS3 has been out for a few weeks. At this point, your
    best bet is Amazon books or Barnes & Noble. I've read a few
    books that should shed light on the subject. Otherwise, you'll need
    to wait a few more weeks while people start hashing it out and
    posting it to blogs and other sites.

  • Dreamwaver CS3 & Flash CS3 or GoLive 9 on Mac?

    I have a PowerBook G4 with 10.5.2 on it. I am wanting to do
    more interactive website design so I was looking at DW & Flash
    but I have used GL 9. I have used DW MX 2004 but I did not like it
    at the time. I am more of a visual type person so I prefer being
    able to use the design over having to do a lot of code. I want
    something that saves time because I run a small business and so web
    deisigning as much as I like to do it, is not my only job.
    I have been looking through all the forums and trying to
    weigh the pros and cons but I am getting really confused. With all
    the problems that people are talking about with DW CS3 and Lepard
    is it worth it... on the other hand I have been reading that some
    are not having any problems with DW CS3 on macs.
    If I go with DW CS3 should I get the flash program to go with
    it? or can I do an interactive site with out that?
    As far as GoLive 9 goes, I like it, but will it do what I
    want it to when it comes to having interactive sites and ease of
    use in designing?
    Some adobe programs I have/use, are photoshop CS2,
    Illustrator CS2, InDesign CS2, & ImageReady CS2 (I understand
    PhotoShop & Illustartor the best and have only dabbled with the
    others.). Will they work with the DW CS3, Flash CS3 & GoLive 9?
    and if they do how well with each of them?
    I'm still a beginner in many ways with web design and using
    the adobe programs so I would greatly apreciate your help on
    figuring out witch direction to go in. I don't want to spend a lot
    of money on something and then not like it and have to go find
    something else.
    Please Help!

    You have to switch the focus back to the application and then
    to the test window. Evidently between Flash MX04 (the one I have to
    test) and CS3, they made it so that just clicking in the AS editor
    window doesn't return the focus to the application. In that case
    the Testing Environment intercepts the apple-enter and just
    re-tests the already compiled version.
    If you click the application window, then click the
    actionscript window, it will recompile the swf. However I
    personally don't find apple-w to close the window so
    onerous.

  • Flash CS3 timeline display problems

    I have just upgraded to Flash CS3 and immediately noticed a
    problem when viewing and working with the Timeline window. When I
    click on a frame (keyframe or other) it highlights that frame
    completely white, which means I can no longer tell what type of
    frame it is. The same happens if I highlight a series of frames,
    they are all white and hard to interact with. If I highlight a
    series of frames and attempt to Right-Click, I can rarely get a
    sub-menu to show for quick options like 'Remove Frames' and 'Create
    Motion Tween'. Most of the time my Right-Click is ignored
    completely (ie nothing happens).
    I have searched Google, Flashkit and Adobe site for help with
    this, but no love. Has anyone else experienced this problem? The
    rest of my CS3 install is working perfectly.
    Computer: 20" iMac Intel 2.16Ghz Core 2 Duo, 2Gb RAM, 250Gb
    HDD (~100Gb Free)
    OS: Mac OS X 10.4.9
    Version: Adobe Flash CS3 Version 9.0

    quote:
    Originally posted by:
    sczulu
    Since upgrading from Flash V8, I'm having an issue where
    prominent fonts (such as Myriad Pro) appear jaggy until the file is
    published, making layout and design difficult. I've checked the
    text display settings with now change in appearance. The files do
    publish with anti-aliased text.
    I've noticed this issue as well and was wondering why I was
    having a problem, thanks for answering that question.

Maybe you are looking for

  • I can't sync my ipad3 with iTunes.

    it works until the last phase and iTunes stops trying to transfer from iTunes to iPad. I have to force to quit Itunes and plug iPad again etc... So i re-install iTunes, no change. I have the latest Mac Os Version and ios 6 on my ipad It's perfectly w

  • Composite primary key mapping in JBoss

    I tried to make a CMP bean that has two database columns as its primary-key. I defined a PK class with the two fields in it to be used in ejbCreate. What is not clear to me however is how I can specify in the XML how to create the PK from the two dat

  • Initialisation option for source system in schedular tab

    What initialisation option for system in schedular tab signifies? Does it acts as pointer and points to the last record loaded in cube or ods?

  • Can you use apple tv on a pc?

    is there any way to use apple tv on a pc via a tv / capture card or even video card that has HDMI?

  • Can't upgrade Windows Server 2008 R2 Enterprise to Windows Server 2012 R2 Standard

    Even though the "Windows Server Installation and Upgrade" TechNet article (DN627667) claims that I can upgrade Windows Server 2008 R2 SP1 to Windows Server 2012 R2 Standard, it seems I can't. I get an error message saying "Windows 2008 R2 Enterprise