How-to flash with external static page? Help!

Hello all. I am new to posting so please be nice. I am
building a flash site and would like a page or something on how-to
link my flash.swf file to a page outside of the flash file (.fla) .
Let me explain a bit more... I would like a way for my wife to be
able to use Dreamweaver or something and edit a .html file that the
flash links to that would then show the page. So, basically when yo
goto the website it would show the smal flash at the beginning and
some flash page links but the actual content is really just a
static .html file. Make sense? Can someone please point me to a
how-to page or something?

Hi,
Bellow you find some references to the documentation related to CQ and DB configuration and developments:
http://dev.day.com/docs/en/cq/current/developing/jdbc.html
https://helpx.adobe.com/cq/kb/HowToConfigureSlingDatasource.html
Regards,
kasq

Similar Messages

  • Ending with a static page

    How do I end with a static page? I have a design with two
    parts, 1 design with several layers fades into another design and
    ends there. There are just a few items that will continue to move
    but I want this part of the page to be where it stays. Can someone
    give some advice? Thanks

    webmaster-liztapanes wrote:
    > How do I end with a static page? I have a design with
    two parts, 1 design with
    > several layers fades into another design and ends there.
    There are just a few
    > items that will continue to move but I want this part of
    the page to be where
    > it stays. Can someone give some advice? Thanks
    What is that you need ?
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    Happy New Year
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • How to interact with external database in CQ5

    Hi,
    I need to interact with external database like SQL or Oracle to store some/fetch some data in CQ5. Can someone pls provide some help regarding the same. I guess I need to do it through JDBC. Please guide me step by step how to do this.
    Thanks

    Hi,
    Bellow you find some references to the documentation related to CQ and DB configuration and developments:
    http://dev.day.com/docs/en/cq/current/developing/jdbc.html
    https://helpx.adobe.com/cq/kb/HowToConfigureSlingDatasource.html
    Regards,
    kasq

  • How can i get external html page source code

    Hello,
    You can get the source code of a web page in a WDA application?
    It would be a common web page yourself.
    Does anyone know answer me?
    Tks
    Wille

    You want to run an external web page within your Web Dynpro? If so the UI element iFrame is probably what you should use.  Caution: The iFrame was deprecated in 7.0 and 7.01, although it will return to full support again in 7.02.
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/15/c07941601b1d09e10000000a155106/frameset.htm

  • Help with printing static page on even pages of dynamic form

    Hi folks in the OD universe!
    I am relatively new to OD and I am trying like the dickens to get a form to duplex in a very specific way. I have slogged through all of the messages on duplexing and related issues, but haven't seen a solution that fits my problem.
    I have an page of instructions that needs to print on the even (or odd don't really care as long as it is always there) pages of an existing dynamic PO form (with 4 subgroups - header, detail header, data, and footer).
    So I made a working copy of the PO form and added the instructions page. My first thought was to try and use the instructions page as an extra footer piece, so I pointed to it from the footer on the old PO form in the At End-Of-Page part of the subform thing and then pointed the instruction page back to the headers of the PO form so it could continue on. Right now, the instructions are on page 1, so it prints the instructions, then the first page of a PO, then a bunch of instruction pages (infinite - I have to cancel the job on the printer). Making it duplex was the easy part.
    So is this possible using the Subform Page Full and At End-Of-Page stuff or do I need to do some scripting to accomplish this (if so, any ideas on how to proceed). I am trying to make multi-page POs have the instructions on the front or back of each page of the PO.
    Any advice on how to tackle this would be appreciated. I am going to continue my efforts and will reply to this thread once I figure something out.
    Cheers!
    Lucas

    Hi Lucas,
    The information below is from the print_ag.pdf which can be found on your server in the documentation directory
    \checksurface (Duplex Mode and Surface)
    Format
    \checksurface
    To check which surface of a page is currently printing, use the \checksurface command.
    \checksurface detects the current print surface and causes a group event handler to activate.
    Depending upon the actual surface, the event handler is one of:
    A typical use for \checksurface is to force the printer to switch to a new front page when
    printing in duplex mode, by conditionally inserting a blank surface on the back of the current
    page. For example:
    ^define group:SECTION \checksurface\page1\fieldPOS
    ^define group:SECTION!DuplexFront \page3
    Here the group SECTION uses the \checksurface command to determine the current duplex
    surface. The event handler for the !DuplexFront event activates when the current print surface
    is a front page. The event handler inserts page 3 from the current template as a filler surface on
    the back before moving to page 1 on the next front surface. As a result, the new page 1 will be
    on a duplex front surface, regardless of whether the previous page was a front or a back
    surface. The filler surface may be entirely blank, contain static text, such as “This page
    intentionally left blank”, or contain fields which are filled by global definitions active at the time
    \checksurface is used. It may also contain a dummy field that can trigger a !FieldNotAvail
    event specific to the insertion. In any case, Intelligent Pagination commands directly
    referencing fields on that page should not be depended on, because the page is only
    conditionally inserted.
    For another method of performing surface specific processing, see “$duplexsurface (Duplex
    Mode and Surface)” on page 281.
    Regards,
    Matt

  • Problem with external .swf, please help

    Hello.
    I'm new here so cheers to all. Sorry if I chose wrong forum for posting this question.
    I'm newbie in Flash and started building flash website with some tutorial. Now, I built navigation and content with this lines of code:
    var myMenyArray = [najave, onama, asesoar, kontakt, ponuda, klub, arhiva];
    for each (var btn in myMenyArray){
        btn.addEventListener(MouseEvent.CLICK, onBtnClick);
    function onBtnClick(event:MouseEvent):void{
        pages.gotoAndStop(event.target.name);
    and then added this one for loading .swf
    var Xpos:Number = 150;
    var Ypos:Number = 180;
    var swf:MovieClip;
    var loader:Loader = new Loader();
    addChild(loader);
    function btnClick(event:MouseEvent):void {
    removeChild(loader);
    var newSWFRequest:URLRequest = new URLRequest("swfs/" + event.target.name + ".swf");
    loader.load(newSWFRequest);
    loader.x = Xpos;
    loader.y = Ypos;
    addChild(loader);
    galerija.addEventListener(MouseEvent.CLICK, btnClick);
    Now, my gallery loads when I press "Galerija" in navigation like I wanted, but when I want to show Home or some other content from the nav bar, gallery.swf still appears in front of content.
    Can anyone help me with this? It's probably eas, I don't know, but I spent a whole night trying to fix that and I'm here now like last chance.
    Hope that I've explained right my problem.
    Thanks anyone who can answer me.
    Cheers

    use:
            var myMenyArray = [najave, onama, asesoar, kontakt, ponuda, klub, arhiva];
            var loader:Loader;
            for each (var btn in myMenyArray){
                btn.addEventListener(MouseEvent.CLICK, onBtnClick);
            function onBtnClick(event:MouseEvent):void{
            if(loader){
            removeChild(loader);
            loader=null;
                pages.gotoAndStop(event.target.name);
            var Xpos:Number = 150;
            var Ypos:Number = 180;
            var swf:MovieClip;
            function btnClick(event:MouseEvent):void {
    if(loader){
            removeChild(loader);
            loader=null;
            loader = new Loader();
            addChild(loader);
            var newSWFRequest:URLRequest = new URLRequest(event.target.name + ".swf");
            loader.load(newSWFRequest);
            loader.x = Xpos;
            loader.y = Ypos;
            galerija.addEventListener(MouseEvent.CLICK, btnClick);
    And for every frame stop(); where content should load.
    My gallery .swf is in the same folder with this .swf.

  • Embedding Flash with a holding page to start

    I have an embedded .flv file on my webpage with a
    controllable skin. This is not started automatically.
    I want to add a holding image on the flash player to be
    displayed when the page opens and then when the user chooses to
    play the video they then view it. I do not want to add this into
    the video as i recieve them in .flv format ready. This is the
    current object code:
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
    width="280" height="158" id="FLVPlayer">
    <param name="movie" value="FLVPlayer_Progressive.swf"
    />
    <param name="salign" value="lt" />
    <param name="quality" value="high" />
    <param name="scale" value="noscale" />
    <param name="FlashVars"
    value="&MM_ComponentVersion=1&skinName=Clear_Skin_3&streamName=test&autoPlay=false&autoRe wind=false"
    />
    <embed src="FLVPlayer_Progressive.swf"
    flashvars="&MM_ComponentVersion=1&skinName=Clear_Skin_3&streamName=test&autoPlay=false&au toRewind=false"
    quality="high" scale="noscale" width="280" height="158"
    name="FLVPlayer" salign="LT" type="application/x-shockwave-flash"
    pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    />
    </object>

    Play the flv and do a screen capture of your choice of scene
    "Wallad123" <[email protected]> wrote in
    message
    news:frrc5u$lpr$[email protected]..
    >I have an embedded .flv file on my webpage with a
    controllable skin. This
    >is
    > not started automatically.
    > I want to add a holding image on the flash player to be
    displayed when the
    > page opens and then when the user chooses to play the
    video they then view
    > it.
    > I do not want to add this into the video as i recieve
    them in .flv format
    > ready. This is the current object code:
    >
    > <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    > codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
    > rsion=8,0,0,0" width="280" height="158"
    id="FLVPlayer">
    > <param name="movie" value="FLVPlayer_Progressive.swf"
    />
    > <param name="salign" value="lt" />
    > <param name="quality" value="high" />
    > <param name="scale" value="noscale" />
    > <param name="FlashVars"
    >
    value="&MM_ComponentVersion=1&skinName=Clear_Skin_3&streamName=test&autoPlay=fal
    > se&autoRewind=false" />
    > <embed src="FLVPlayer_Progressive.swf"
    >
    flashvars="&MM_ComponentVersion=1&skinName=Clear_Skin_3&streamName=test&autoPlay
    > =false&autoRewind=false" quality="high"
    scale="noscale" width="280"
    > height="158" name="FLVPlayer" salign="LT"
    > type="application/x-shockwave-flash"
    > pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Versio
    > n=ShockwaveFlash" />
    > </object>
    >

  • Bricked nokia 5230, how to flash with orignal firm...

    yesterday, I was trying to update my firmware from "RM-588 51.6.002" to symbian anna 7.5 (RM-594) in my nokia 5230 using JAF tool. In JAF, at the bottom of the window, where the progress is shown, when it tried "pooling", my device's screen strangely lit up and down several times, and JAF said that it didn't find my phone. After that, I couldn't turn the phone on (pressing the "power on" key resulted in the phone vibrating for a moment (as usual) but nothing after that. How can I reflash it with original firmware which will bring my 5230 back to life??? or I should go to nokia care???
    Solved!
    Go to Solution.

    @RG001
    Please be aware that this is beyond the remit of this manufacturer's sponsored forum, irrespective of whether CFW is techinically feasible or not:http://discussions.nokia.com/t5/Cseries/Warning-concerning-unofficial-software-packages-offered-by-t...
    Happy to have helped forum with a Support Ratio = 42.5

  • Trouble with external hard drive. help.

    I was formatting my hard drive to allow larger GB files with a lot of trouble so I got my other hard drive which I have previously formatted to find the program that worked. It was formatted with NTFS so I downloaded NTFS 3G and restarted my computer (iMac intel) after trying to format my portable hard drive to ntfs the software didnt work so I uninstalled it. Now my external hard drive will not read on my iMac but it will on my TV and Windows computer. When I installed the software a little error message popped up but i made no changes to the external hard drive and now it wont read on my mac.
    The hard drive is a Western Digital My Book 1TB

    Did you read this section of the ntfs 3g website?  I don't use the program but it may have left pieces of itself on your mac causing your current problems.
    You can type the following in a terminal window to see what "non-apple" drivers are still loaded on your system.
    kextstat | grep -v com.apple
    Post the results if you need to
    2.2 Uninstalling Tuxera NTFS for Mac
    Tuxera NTFS for Mac can be easily uninstalled using the Uninstall Tuxera NTFS... button in the Tuxera NTFS preference pane, which will be available in System Preferencesonce you have installed the package. See section 4 for a description of the other features in the preference pane.
    If this should fail for some reason, an uninstall script exists at the following location:
                    /System/Library/Filesystems/fusefs_txantfs.fs/Support/uninstall-package.sh

  • How to comunicate with external services which needs to  authorizated

    Hi,
    I hope i describe the problem cleary.
    Let say we have any oracle job (any plsql procedure) which needs to connect to ftp or smtp where is needed login/password authorization.
    How can i do it? Or where I can save crendentials when I dont want to write it direct to job?
    And how to do it in opposite manner? When i need to connet from os script to database?
    Thank you.
    Regards,
    Tom

    For file transfer the best option is to use scp, then you use keys instead of username/password.
    SMTP can be configured with no password. If it requires username/password then you can keep them in an encrypted plsql package, or an encrypted table.

  • How to do with restriction of search help

    my requirement is that F4 one field, you can get popup dialog and can input some value of field1 field2. i want to get data of condition is field1 OR field2, but the relationship is AND. how to do it?

    hi,
    You can implement self programmed value help using value request at selection screen.
    Sample code for your reference
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_WAERS.
      CLEAR: DYFIELDS[], DYFIELDS.
    *--- select currency
      CALL FUNCTION 'HELP_VALUES_GET'
           EXPORTING
                fieldname        =  'WAERS'
                tabname          =  'TCURT'
           IMPORTING
                SELECT_VALUE     =   P_WAERS.
    *--- get long text for the selected currency
      SELECT SINGLE LTEXT FROM TCURT
        INTO DYFIELDS-FIELDVALUE
        WHERE SPRAS = SY-LANGU
        AND   WAERS = P_WAERS.
      IF SY-SUBRC <> 0.
        CLEAR DYFIELDS-FIELDVALUE.
      ENDIF.
    *--- update another field
      DYFIELDS-FIELDNAME = 'P_LTEXT'.
      APPEND DYFIELDS.
      CALL FUNCTION 'DYNP_VALUES_UPDATE'
           EXPORTING
                DYNAME               = SY-CPROG
                DYNUMB               = SY-DYNNR
           tables
                dynpfields           = DYFIELDS .
    Hope this will solve your issue.
    Thanks &Regards,
    Kimaya

  • How sync ipad with mac os vonci help 787-780-0000

    Why  apple makes peoples lives so miserable with something so basic? the iTunes app is a headache! the file sync is not available between my $600 bucks iPad and my $2,400.00 Macbook pro! ohh yess I  do it with a basic Windows laptop and a cheap android device! what a waste of money and time.

    TainoCaribe wrote:
    Why  apple makes peoples lives so miserable with something so basic? the iTunes app is a headache! the file sync is not available between my $600 bucks iPad and my $2,400.00 MacBook pro
    Then YOU are doing something wrong

  • Still getting 3256 error with external speakers.  Help!

    I've done all the thing in the article, http://support.apple.com/kb/TS2278?viewlocale=en_US. I also have the most up to date firmware for the AirTunes. In other words whatever I could find on the forum. But still, I get the message but only after the computer has been asleep. One thing of interest is that the problem can be corrected by selecting "computer" then reselecting the stereo. After that it works fine until the next time the computer is asleep. Any more ideas?

    Sorry wrong thread.

  • Embed external HTML page in Flash

    Does anybody know how to embed an external HTML page into Flash? I am envisioning something like an iFrame, but can't really figure how this would work. I've attempted using a scrollpane, but it didn't work at all.
    Any suggestions?

    you can display it in a popup window or in the same window or in an iframe in the same html page that displays your swf.
    When you say this, do you mean I can create an iFrame on the same html page that displays my swf, and have it be dynamically populated by what the user clicks on the swf?
    yes, exactly.
    use getULR() (as2) or navigateToURL() (as3) with the 1st parameter being the html page you want to display and the 2nd parameter being the iframe "name" property.

  • Displaying External Web Page With HTTPService

    Hi,
    Does anyone know how to display an external web page with
    HTTPService? I have an application here that I am trying to display
    certain portions of the web page. Has anyone done this before
    without feeding items of the web page into RSS?
    Thanks in advance.
    Alice

    Hi,
    Does anyone know how to display an external web page with
    HTTPService? I have an application here that I am trying to display
    certain portions of the web page. Has anyone done this before
    without feeding items of the web page into RSS?
    Thanks in advance.
    Alice

Maybe you are looking for

  • Difficulty obtaining open DNS IP using any network config tool.

    Hey everyone...  I've searched the thread archives and haven't found a solution to this yet... I'm having a hard time connecting to any of my school networks. One is a guest network, one is a wpa2 encrypted network. Using nmcli to connect (after crea

  • Problem with ejecting a CD

    How can I get a CD out from my macbook? I tried every ways to eject the CD, but it doesnt work. Also my mac sounds really weird when I pressed eject the CD, it sounds like the CD is going to come out and  like it was putting back in again.

  • Help will not load games on new classic ipod

    I purchase a game that showes up in i tunes but will not load into my new i pod classic. when i pull it up in itunes above the game symbol it says I pod fifth gen. I have a grey ipod so i know it is a classic. it just dosen't load onto the ipod when

  • Purpose of Tax payment wizard.

    Deat All, Please can you expalin me the purpose of tax payment wizard. (If possible gibe me example Pls.) BR, mahesh

  • Cant accept incoming calls

    Just bought an iphone 3g from a friend and I am currently on a pay as you go contract. Anyone who tries to contact me gets an engaged tone, I have altered the sim card threetimes with O2 to no avail. Please can anyone advise or help Awaiting in antic