Question about getURL working with html frame

My page has two parts, the left part is the
"link" part, and the right part shows what it links. It's
name is "right".
usually, i just use <a href="newpage.htm"
target="right">link</a>.
Now, I use the left part as Flash.
As you know in Flash, getURL("./newpage.htm", "right"), it
does the same thing
and it works very well.
Next, I put some # mark in the newpage. which means if u type
newpage.htm#1
then it goes to the first part of that page and /#2 goes to
the second.
Now, If you use <a href="newpage.htm#2" target="right">
, it works perfectly.
It loads the newpage on the right frame and goes to #2
directly.
Now let's try Flash, I use getURL("./newpage.htm#2",
"right"),
But, It doesn't work for the # sign! It only loads the page
but not goes to #2.
Someone would help me? Thanks a lot

Hi,
1.Place your .PDF file under the resources folder of our project.
2. Specify the path of the file in the value of the Hyperlink.
<h:outputLink binding="#{Page1.hyperlink1}" id="hyperlink1" style="left: 240px; top: 216px; position: absolute" value="resources/abcd.pdf">
Regards.

Similar Messages

  • Hi. Quick question I am working with Panasonic GH3 footage and it is playing back in slow motion?

    Hi. Quick question I am working with Panasonic GH3 footage shot using .MOV wrapper with their IPB 50mbps and All-Intra 72MBPS codecs and they are playing back in slow motion in Sg CC. The footage works fine in PP CC and I have no clue on how to fix it. Is this a bug or do I a have a setting wrong some place?

    Yes it turns red this is silly PP and AE have no problem with playback for these codecs. So it is indeed Sg not handling the codec correctly and not my system?
    What if I transcoded it to something else other than the previous what would you reccommend?
    I was going to transcode to ProRes but 5DtoRGB does not work on Windows with GH3 codecs.
    What is the correct time warp seting under clip properties? I screwed with it and forgot the default setting.
    Is there a way to reset Sg back to defaults settings globaly. I tried to many settings trying to fix the playback and may have left something in the wrong state.
    Thanks...

  • Questions about supporting TLF with Halo components in Flex 4.1

    We recently decided to upgrade to the Flex 4.1 SDK after a year or so at 3.2.  We have been asked to not use the new SPARK components yet because our products would then have a mistmatch of Halo and Spark components in the UI.  We have built support for our Halo components to display html through the ".htmlText" property for the Text components.  For example, we can display strings such as "<p>Choose <b>one</b> option:</p>".  With the upgrade to Flex 4.1 a couple of questions about supporting bi-directional text have come up.  My understanding is that in order to support bi-directional text we need to use the Text Layout Framework.  Does anyone have a suggestion on how we can utilize the TLF with the Halo components in Flex 4.1?    Can we still use the ".htmlText" property somehow or is there a new property that understands the TextFormat markup?  We would love to still be able to use the limited html tags that are supported for the "htmlText" property.  Is there an option where that syntax is still understood?
    Thanks in advance!
    David

    The halo components use TextField, and the spark components use TLF. Both sets have support for some html markup to import and export text. To use bidi text, you have to use TLF; TextField won't work properly.
    It is possible to use TLF to build your own components, and this can work well particularly for applications with specialized needs. But if you need bidi support for advanced components like DataGrid and List, then you should use the spark components.
    Thanks!
    - robin

  • Any success with html frames + JSF

    Hi all, did anybody succeed in building a JSF-based application which uses HTML frames ? If yes, could be an example (jsp pages) posted here ?
    I read that JSF navigation should not work with frames. If true, what about alternatives ? Facelets ?
    Thanks -- Renzo

    Well, it worked perfectly for me...
    index.html :
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title>InteliIdent 0.1a</title>
        </head>
        <frameset rows="10%,80%,10%">
            <frame name="_header" src="layout/header.jsp" noresize scrolling=no>
            <frameset cols="15%,*">
                <frame name="_menu" src="layout/menu.jsp" noresize scrolling=no>
                <frame name="_home" src="layout/home.jsp" noresize>
            </frameset>
            <frame name="_footer" src="layout/footer.jsp" noresize scrolling=no>
        </frameset>
    </html>Every page is simple JSP page, but it is also possible to use JSF pages by modifing the links to /faces/layout/footer.jsp" (if you JSF servlet is configured to listen to /faces/*) or /layout/footer.faces (if you JSF servlet is configured to listen to *.faces)

  • A question about a method with generic bounded type parameter

    Hello everybody,
    Sorry, if I ask a question which seems basic, but
    I'm new to generic types. My problem is about a method
    with a bounded type parameter. Consider the following
    situation:
    abstract class A{     }
    class B extends A{     }
    abstract class C
         public abstract <T extends A>  T  someMethod();
    public class Test extends C
         public <T extends A>  T  someMethod()
              return new B();
    }What I want to do inside the method someMethod in the class Test, is to
    return an instance of the class B.
    Normally, I'm supposed to be able to do that, because an instance of
    B is also an instance of A (because B extends A).
    However I cannot compile this program, and here is the error message:
    Test.java:16: incompatible types
    found   : B
    required: T
                    return new B();
                           ^
    1 errorany idea?
    many thanks,

    Hello again,
    First of all, thank you very much for all the answers. After I posted the comment, I worked on the program
    and I understood that in fact, as spoon_ says the only returned value can be null.
    I'm agree that I asked you a very strange (and a bit stupid) question. Actually, during recent months,
    I have been working with cryptography API Core in Java. I understood that there are classes and
    interfaces for defining keys and key factories specification, such as KeySpec (interface) and
    KeyFactorySpi (abstract class). I wanted to have some experience with these classes in order to
    understand them better. So I created a class implementing the interface KeySpec, following by a
    corresponding Key subclass (with some XOR algorithm that I defined myself) and everything was
    compiled (JDK 1.6) and worked perfectly. Except that, when I wanted to implement a factory spi
    for my classes, I saw for the first time this strange method header:
    protected abstract <T extends KeySpec> T engineGetKeySpec
    (Key key, Class<T> keySpec) throws InvalidKeySpecExceptionThat's why yesterday, I gave you a similar example with the classes A, B, ...
    in order to not to open a complicated security discussion but just to explain the ambiguous
    part for me, that is, the use of T generic parameter.
    The abstract class KeyFactorySpi was defined by Sun Microsystem, in order to give to security
    providers, the possibility to implement cryptography services and algorithms according to a given
    RFC (or whatever technical document). The methods in this class are invoked inside the
    KeyFactory class (If you have installed the JDK sources provided by Sun, You can
    verify this, by looking the source code of the KeyFactory class.) So here the T parameter is a
    key specification, that is, a class that implements the interface KeySpec and this class is often
    defined by the provider and not Sun.
    stefan.schulz wrote:
    >
    If you define the method to return some bound T that extends A, you cannot
    return a B, because T would be declared externally at invocation time.
    The definition of T as is does not make sense at all.>
    He is absolutely right about that, but the problem is, as I said, here we are
    talking about the implementation and not the invocation. The implementation is done
    by the provider whereas the invocation is done by Sun in the class KeyFactory.
    So there are completely separated.
    Therefore I wonder, how a provider can finally impelment this method??
    Besides, dannyyates wrote
    >
    Find whoever wrote the signature and shoot them. Then rewrite their code.
    Actually, before you shoot them, ask them what they were trying to achieve that
    is different from my first suggestion!
    >
    As I said, I didn't choose this method header and I'm completely agree
    with your suggestion, the following method header will do the job very well
    protected abstract KeySpec engineGetKeySpec (Key key, KeySpec key_spec)
    throws InvalidKeySpecException and personally I don't see any interest in using a generic bounded parameter T
    in this method header definition.
    Once agin, thanks a lot for the answers.

  • Question about Logon ticket with user mapping at BI-JAVA environment

    We're implementing BI 7.0 including BI Java and SAP EP for end user
    access.
    I have two question about SSO method when we're using BI Java.
    I know we can simply configure SSO logon ticket with BI-Java(EP
    included) and BI-ABAP through BI template installer and we already
    succeeded in that case.
    But the problem is we want to change it to user mapping SSO method for
    some our internal reason.
    After we configure user mapping SSO, we've got SSO failed error when we
    call BI-Java stuff like BEx Web Application iView.
    After many testing implemented, we found SSO Logon ticket with user
    mapping (using SAP reference system). It seems working now.
    But our question is "Is it no problem when we use SSO logon ticket with
    user mapping?" Is there any restriction or issue?
    One more question is we can ONLY use user base mapping when reference
    system used. How can we assign BI-ABAP users to EP Group?

    Using an SAP Reference system is allright. But if the reason u r going for this is because of different usernames in EP and BI, why dont you go for user mapping.
    Anyways, on restriction of reference syetms is that you can have ONLY ONE reference system defined in portal. In you case you can only have the BI system defined.
    Hope this helps!!

  • Questions about PDF exporting with InDe CS5.5

    Hey all,
    A couple questions about exporting to PDF from the latest version of InDe.
    First, I have noticed that it seems to take a lot longer to get to a PDF. Any suggestions for how to speed up the process? It took 8 minutes or so to generate a low-res PDF (for print) of a 24pp document with a few placed images and vector graphics. Wow, that's a long time to wait, especially for a proof.
    Second, the background task... if I get it going on making that 8-minute PDF and then work some more on the document, what exactly is in the PDF? Usually I save before making a PDF or printing. So, is the last version saved what will be in the PDF?
    (As an aside, this ability to work on the doc while generating a PDF seems kind of weird. Generally one makes a PDF for proofing, or even for printing, when all the changes have been made and everything is "final". So, I see no benefit to being able to work on my document while it's making a PDF, as I'm probably finished making revisions for the time being. I have to say that I kind of like the progress bar you get when you make an interactive PDF, as you know you can't work on the document when that's on the screen... )
    Thanks as always.

    First, I have noticed that it seems to take a lot longer to get to a PDF. Any suggestions for how to speed up the process? It took 8 minutes or so to generate a low-res PDF (for print) of a 24pp document with a few placed images and vector graphics. Wow, that's a long time to wait, especially for a proof.
    Yes, this is abnormally long (and too long), something is wrong. What's the full version of InDesign you are running, as reported by holding down Cmd or Control and selecting About InDesign?
    Second, the background task... if I get it going on making that 8-minute PDF and then work some more on the document, what exactly is in the PDF? Usually I save before making a PDF or printing. So, is the last version saved what will be in the PDF?
    Saving is not related. InDesign makes a database snapshot of your document the moment you begin the PDF export, and makes the export relative to that snapshot, regardless of edits you continue to make during the export process, and regardless of saving. Of course saving first is a good idea, for several reasons, not the least of which it sounds like something's fairly seriously wrong with your document or your InDesign installation.
    We recommend you trash your preferences and export your document to IDML and see if either of those things changes this 8-minute behavior...err, assuming you're running 7.5.2.318.
    (As an aside, this ability to work on the doc while generating a PDF seems kind of weird. Generally one makes a PDF for proofing, or even for printing, when all the changes have been made and everything is "final". So, I see no benefit to being able to work on my document while it's making a PDF, as I'm probably finished making revisions for the time being. I have to say that I kind of like the progress bar you get when you make an interactive PDF, as you know you can't work on the document when that's on the screen... )
    Yeah, I think the primary benefit is if you are likely to work on 2 or more files in parallel, so you can finish A and export A and then switch to B. If you'd like a dialog box to pop up when export is done, check out my exportPop script from this post: ANN: automatic dialog after background export (exportPop.jsx.

  • A few questions about using PS3 with 27" iMac display...

    Hey people, I had a few questions about how I could possibly get my ps3 connected to the iMac's 27" screen. First of all, could you guys list some adapters that would be able to convert the HDMI to Mini displayport? That would be great. The only one I know of is that Dr. Bott Digital Video link.
    Okay secondly, I was wondering if I do get the the ps3 connected with the iMac's display with an adapter to convert HDMI to mini DisplayPort, would it be in HD? Would I be able to play ps3 games or watch blu-ray movies in 1080p HD format?
    Thanks!

    Welcome to the Apple Discussions!
    This has been asked a number of times here since the intro of the 27" iMac. The answer is very expensive US$149 or more converters and sometimes even more expensive to maintain the resolutions that you seek.
    http://lowendmac.com/ed/bashur/09db/dvi-to-mini-displayport.html
    Dah•veed

  • Win7-64 Photoshop CC blank Save As dialog, then crash, when working with video / frame animations

    Hi, I recently updated to CC from CS6 and am having issues when working with PSDs containing video layers, or are set up as frame animations:  When attempting to Save As, the dialog will be completely blank except for the Save and Cancel buttons.   If I press cancel, then return to Save As, CC then often crashes.
    Here is the Error Event from Event Viewer:
    Faulting application name: Photoshop.exe, version: 14.0.0.0, time stamp: 0x5176451b
    Faulting module name: MediaCoreIF.DLL, version: 7.0.0.0, time stamp: 0x51573a21
    Exception code: 0xc0000005
    Fault offset: 0x00000000001fca98
    Faulting process id: 0x750
    Faulting application start time: 0x01ce9e1925a5045b
    Faulting application path: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Photoshop.exe
    Faulting module path: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\MediaCoreIF.DLL
    Report Id: db6d5f8f-0a0c-11e3-9df9-0026b9cc01d1
    So far I am only having these issues if I have been working with video layers and then frame animations.  Frame animations in particular seem to cause instability as I can often work with video layers all day without a problem.  Then if I import video frames to layers, or open a PSD containing a frame animation, the Save As may not necessarily work.
    Sometimes closing and restarting Photoshop will allow me to save again, but then sometimes a whole system reboot is required.  It is only temporary though.
    I am not running antivirus software or other apps aside from what starts at boot.

    Frustrating that this thread has petered out, since I'm having the exact same issue. Did you ever find a way to improved stability?
    Also of note, the issue followed me across machines. Two weeks ago I purchased a new machine, figured if that didn't solve the problem nothing would... It didn't. :\
    The only similar factors are that the machines both are 64bit Windows 7 (a fresh OEM install on the new box) and have nVidia-brand graphics cards. (Again, though - not the SAME graphics card, picked up a new one with the new machine.) No drive cloning was involved: this is completely new hardware, a fresh factory install of Windows 7, different antivirus (went from AVG to Avast), and new download of Photoshop CC from CreativeCloud.
    Looks like our event details are quite similar, too.
    Log Name: 
    Application
    Source:   
    Application Error
    Date:     
    4/6/2014 1:57:39 PM
    Event ID: 
    1000
    Task Category: (100)
    Level:    
    Error
    Keywords: 
    Classic
    User:     
    N/A
    Computer: 
    REDACTED
    Description:
    Faulting application name: Photoshop.exe, version: 14.2.1.570, time stamp: 0x52f4a9f2
    Faulting module name: MediaCoreIF.DLL, version: 7.0.0.0, time stamp: 0x51573a21
    Exception code: 0xc0000005
    Fault offset: 0x00000000001fca98
    Faulting process id: 0x1ca4
    Faulting application start time: 0x01cf51c68639ec43
    Faulting application path: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Photoshop.exe
    Faulting module path: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\MediaCoreIF.DLL
    Report Id: 5268f22b-bdbd-11e3-b9df-d850e65afc6f

  • Does lightbox work with html files (or only png, jpeg, other image files)?

    The following image is not displaying in lightbox when I click on the thumb:
    <a href="images/example.html"
    But it does appear when I don't allow Active X.
    Is there something i need to change for lightbox to accept html files?
    Thanks!
    Ken D

    AFAIK, Lokesh Dhakar's Lightbox scripts only work with web images (PNG, GIF, JPG).
    For other modal window systems that DO support multiple file types -- including HTML, Media, Ajax and iframes, see links below.
    FloatBox
    http://floatboxjs.com/demo
    HighSlide
    http://highslide.com/
    PrettyPhoto Lightbox Clone
    http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/
    FancyBox
    http://fancybox.net/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • How do we work with Text Frames in a structured xml template

    Hi ,
    I am working with structured template using Framemaker 7.2. I need to add Text Frame in the structured template. Could you please tell me how do I add text frame with the body page of a strcutred template.
    Thanks
    Manas.

    Hi Manas,
    Text frames work the same whether the template is structured or unstructured. The only thing you should be aware of is that a text frame creates another flow, which can be structured or unstructured. In either case, you will not be able to export its contents to XML. You didn't mention XML specifically, just thought I would note that.
    Do you need general instructions on inserting a text frame? If so, I think the user guide should have that.
    Russ

  • Question about 360 movieclip with cursor action

    Hello Flash Forum
    We have a question about a 360 flash / movieclip which comes
    to a halt or jumps to whereever the cursor is moved horizontally
    while any vertical movements is ignored. We are having difficulties
    to implement this and would like to ask whether someone can point
    us into the right direction in Flash 8 - read somewhere that this
    is extremely easy in Flash 8 but we cannot find out how!?
    An example would be:
    http://www.kswiss.com/cgi-bin/kswiss/store/product_detail.html?mv_arg=x&pid=01190:177
    and then chosing 'Go 360'
    Thank you for any assistance and/or direction.
    Alex

    Alex, took a look at your sample - looks to me like
    start_drag and stop_drag on mouse_over. Hope this helps. ash

  • Indesign crashes when I work with rectangular frames.

    I just bought Adobe Creative Suite 6 Design Standard. Now Indesign CS 6 crashes when I scale a rectangle frame. All the rest works fine, only these rectangle frames can't be scaled. It's horroble.
    I installed Indesgin new, I deleted the Indesign preferences, I made a totally new document and copied the stuff from the old document, I made the rectangulars totally new, but it's still the same.
    Does anyone have an idea. I work on a new IMac, OS X, Version 10.9.5.
    Thanks!

    It might not make a difference, but what method are you using to scale the frames?
    Text frames, image frames or both?
    One at a time, or several, and if several, are they grouped?
    By Command-dragging a handle, using the scale tool, or using the percentage fields at the top?
    paulina2014 wrote:
    I made a totally new document and copied the stuff from the old document…
    Does it work in totally new documents that you haven't copied stuff to from the old document? If so, try copying just one item from the old doc and see if it works with that item or new items created in the new doc. It could be that one, some, or all of the elements of the old doc are bringing in some bad code. If some of the items don't cause the problem, you could use the divide-by-half method to try to find the one or ones that is/are causing the problem. It's how you would find a bad page in a long document. You try copying half of the elements and see if it fails. If it does, you try the other half (on a new document that hasn't been affected by the first try). If that one works, the problem is in the first half. If it doesn't, you may have to try in quarters, eighths, or (depending on how much time you are prepared to spend on this) one at a time. If it looks like that will take more time than starting over, that's something to consider.

  • Question about using FaceTime with an external monitor!

    Greetings!
    Is it possible to use a third party webcam for FaceTime chat when connected to an external monitor?
    I am currently using a mid-2012 macbook pro.
    Thank you!

    ThatKid26 wrote:...Is it possible to use a third party webcam for FaceTime chat when connected to an external monitor?...
    Yes if the camera is Mac compatible.  It will work with an Apple external monitor with camera.
     As shown in this image using my old Mac Pro and LED Cinema Display:
    when your Mac recognizes more than one connected camera, you can select the camera you want by clicking the appropriate item in the FaceTime > Video menu item.
    Your choices will be different.  In your case of using a MPB, you may also see its built-in FaceTime HD camera.  However, you will be able to choose from compatible cameras that your Mac recognizes.
    If you haven't yet bought, take your MBP along when you shop so you can try before you buy.  That way you will KNOW the answer to your compatibility questions.
    Message was edited by: EZ Jim
    Mac OSX 10.9

  • E-recruimtment: Question about landscape standalone with several HR Systems

    Hi,
    We are going to start with the implementation of E-recruitment , normally version 6.0.
    The aim is to install 1 e-recruitment system as a standalone system who shall communicate with several HR systems of several companies (subsidiary company in different coountries Luxembourg, France, Belgium) and probably those HR systems (backend) runs on different versions.
    So the aim is that every company shall search for its own candidates in the e-recruitment system and shall do its own hirings. 
    Up till now it isn't clear for us how this works ?
    Thus anybody have already experience of such a landsccape who is willing to share his information ?
    Wat are the benefits, the disadvantages, the difficulties, are there things we have to think about , ...
    Kind Regards
    Pascale

    Hello Rachael,
    you cannot split the so called pool of talents. every applicant has the option to release his profile in the system. if he does so, he agrees to be assigned / checked to any other requisition (=position) you open in your e-recruiting system. When you open a new requisition you can check if you already have suitable candidates in the system to get in contact with instead of finding new ones (you can just put him on the requisition). In the more strategic overall talent management topic one goal is to have a pool filled with critical applicant groups (engineers, sales people, researchers. ... - the short and strategic necessary applicant groups according to your business) to hire fast (and cheap).
    This pool is accessable to every recruiter in standard. There is no restriction that if an applicant applied for company A a recruiter from company B cannot take him and get in contact with him.
    For the requisition handling. Requisitions are always restricted to its recruiting team. If you create a requisition you assing the people who have to work with it (and the roles they have for the process). Recruiters can only access the requisitions they belong to. So this should not be a problem. By maintaining the company and branch for a requisition you can always find out which requisition belongs to which company and react on this in correspondences for example.
    Managers are not really assigned to requisitions. Their task is restricted to request requisitions (of course in this case they become a member of the recruiting team). The candidate handling works by questionairs. The manager gets a list of requisitions and assigned candidates he is supposed to evaluate. The evaluation is done via filling the questionaire. He has no direct access to all candidates in the system.
    The 2 ECC systems for one E-Recruiting standalone system are possible - unfortunately with some restrictions.
    There are 2 ways of communication. The HR system has to deliver all employees and if you want to integrate OM all org.units, positions and jobs to the e-recruiting system. The employees get internal candidates for internal recruitment and even if you do not plan do use this every recruiter, manager needs a candidate to work with the system. The standard way for this is ALE. If you have a consolidated HR system infrastructure with non overlapping employee IDs and organizational unit IDs you can easily transfere data from both system into the e-recruiting system. If the number ranges overlap you will need special adaptions for mapping Ids for global identification. This might get a very chalanging task exp. if you include OM.
    The other way is transfering hirings to the HR systems. This is more tricky. If you really plan to use this function (note that due to the restrictions in the function not all implementations use it anyways) you will need some custome developments. How much effort is needed for that would need more info on the systems and the requirements. I think in the best scenario I could imaging it would take me 5 days but as usual the sky is the limit if it's more complex.
    Best Regards
    Roman Weise

Maybe you are looking for