How do you Create a hyperlink in Configurator?

Greetings all,
Just curious: I'd like to put a link to my blog in the panel
I've created - - how would I do that? I'm quite new at programming,
so this may be a simple thing, but I'm ignorant on how...
Thanks,
John :-)

Download Deke's panel.
http://www.deke.com/content/the-first-ever-custom-cs4-palette
There's code in there to do it.
The gist of it is you execute a file (HTML or BAT file) to
open a URL.
var strSamplesFolderDirectory = localize(
"$$$/LocalizedFilenames.xml/SourceDirectoryName/id/Extras/[LOCALE]/[LOCALE]_Plug-ins/valu e=Plug-ins"
);var macFileName = app.path.toString() + "/" +
strSamplesFolderDirectory + "/Panels/Channels+Masks/index.html";var
windowsFileName = app.path.toString() + "/" +
strSamplesFolderDirectory + "/Panels/Channels+Masks/url.bat";if
(File.fs == "Windows") { File(windowsFileName).execute(); } else {
File(macFileName).execute();}

Similar Messages

  • How do you create a link to a pdf in Muse? Thought it was going to show that with Katie's menu and can"t find in any of the tutorials.

    How do you create a link to a pdf in Muse? Thought it was going to show that with Katie's menu and can't find in any of the tutorials.

    The steps would be :
    - Add files from file menu > select pdf > add to site
    - Select the content (rectangle,text etc) and click on hyperlink dropdown > it should show you the added files list
    - Select the file you want to link
    Thanks,
    Sanjit

  • Re: How do you create and use "common" type classes?

    Hi,
    You have 2 potential solutions in your case :
    1- Sub-class TextNullable class of Framework and add your methods in the
    sub-class.
    This is the way Domain class work. Only Nullable classes are sub-classable.
    This is usefull for Data Dictionary.
    The code will be located in any partition that uses or references the supplier
    plan.
    2- Put your add on code on a specific class and instanciate it in your user
    classes (client or server).
    You could also use interface for a better conception if needed. The code will
    also be in any partition that uses or references the supplier plan where your
    add on class is located.
    If you don't want that code to be on each partition, you could use libraries :
    configure as library the utility plan where is your add-on class.
    You can find an example of the second case (using a QuickSort class,
    GenericArray add-on) with the "QuickSort & List" sample on my personal site
    http://perso.club-internet.fr/dnguyen/
    Hope this helps,
    Daniel Nguyen
    Freelance Forte Consultant
    http://perso.club-internet.fr/dnguyen/
    Robinson, Richard a écrit:
    I'm relatively new to forte and I'd like to know how can you handle utility
    type classes that you want to use through out your application? Ideally
    what I want is a static class with static methods.
    Let's say that I have a StringUtil class that has a bunch of methods for
    manipulating strings.
    My problem is that we have code that runs on the client and code that runs
    on the server. Both areas could use the StringUtil class, but from what I
    understand, I have to create StringUtil in a plan and then create a server
    object of type StringUtil. The server object will eventually get assigned
    to a partition. That's not good since I really want the server object to
    physically reside at the server end and at the client end. (Actually, I
    don't want a server object, I just want to invoke a static method of a
    static class).
    Any clues on how to solve this problem would be appreciated.
    Also, what is the url at Sage-it that has a summary of all emails that have
    been posted to [email protected]? Perhaps this question has been
    answered previously.
    Thanks in advance
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Richard,
    Your question about "utility classes" brings up a number of issues, all of
    which are important to long-term success with Forte.
    There is no such thing as a static method (method that is associated with a
    class but without an implicit object reference - this/self/me "pointer") in
    TOOL, nor is there such thing as a global method (method not associated
    with a class at all). This is in contrast to C++, which has both, and
    Java, which has static methods, but not global classes. Frequently, Forte
    developers will write code like this:
    result, num : double;
    // get initial value for num....
    tmpDoubleData : DoubleData = new;
    tmpDoubleData.DoubleValue = num;
    result = tmpDoubleData.Sqrt().DoubleValue;
    tmpDoubleData = NIL; // send a hint to the garbage collector
    in places where a C++ programmer would write:
    double result, num;
    // get initial value for num....
    result = Math::Sqrt(num);
    or a Java programmer would write:
    double result, num;
    // get initial value for num....
    result = Math.sqrt(num);
    The result of this is that you end up allocating an extra object now and
    then. In practice, this is not a big deal memory-wise. If you have a
    server that is getting a lot of hits, or if you are doing some intense
    processing, then you could pre-allocate and reuse the data object. Note
    that optimization has its own issues, so you should start by allocating
    only when you need the object.
    If you are looking for a StringUtil class, then you will want to use an
    instance of TextData or TextNullable. If you are looking to add methods,
    you could subclass from TextNullable, and add methods. Note that you will
    still have to instantiate an object and call methods on that object.
    The next issue you raise is where the object resides. As long as you do
    not have an anchored object, you will always have a copy of an object on a
    partition. If you do not pass the object in a call to another partition,
    the object never leaves. If you pass the object to another partition, then
    the other partition will have its own copy of the object. This means that
    the client and the server will have their own copies, which is the effect
    you are looking for.
    Some developers new to Forte will try to get around the lack of global
    methods in TOOL by creating a user-visible service object and then calling
    methods on it. If you have a general utility, like string handling, this
    is a bad idea, since a service object can reside only on a single
    partition.
    Summary:
    * You may find everything you want in TextData.
    * Unless you anchor the object, the instance will reside where you
    intuitively expect it.
    * To patch over the lack of static methods in TOOL, simply allocate an
    instance when required.
    Feel free to email me if you have more questions on this.
    At the bottom of each message that goes through the mailing list server,
    the address for the list archive is printed:
    http://pinehurst.sageit.com/listarchive/.
    Good Luck,
    CSB
    -----Original Message-----
    From: Robinson, Richard
    Sent: Tuesday, March 02, 1999 5:44 PM
    To: '[email protected]'
    Subject: How do you create and use "common" type classes?
    I'm relatively new to forte and I'd like to know how can you handle utility
    type classes that you want to use through out your application? Ideally
    what I want is a static class with static methods.
    Let's say that I have a StringUtil class that has a bunch of methods for
    manipulating strings.
    My problem is that we have code that runs on the client and code that runs
    on the server. Both areas could use the StringUtil class, but from what I
    understand, I have to create StringUtil in a plan and then create a server
    object of type StringUtil. The server object will eventually get assigned
    to a partition. That's not good since I really want the server object to
    physically reside at the server end and at the client end. (Actually, I
    don't want a server object, I just want to invoke a static method of a
    static class).
    Any clues on how to solve this problem would be appreciated.
    Also, what is the url at Sage-it that has a summary of all emails that have
    been posted to [email protected]? Perhaps this question has been
    answered previously.
    Thanks in advance

  • How do you create a custom Photograph folder

    If you have a webcam configured to PhotoBooth then you have a 'PhotoBooth' folder which is in the file system (under the current users 'Pictures' folder) and is visible in iMovie.
    Now if I create a folder on the same level as the 'PhotoBooth' folder (ie again under the active users Pictures folder) then iMovie cannot see it but if I create a folder within the 'PhotoBooth' folder then iMovie can see it... I hope this makes sense.
    So my question is, how do you create a folder in the file system which is visible from iMovie? or how do you add custom folders to the Photographs window in iMovie?
    Sadie.

    If you have a webcam configured to PhotoBooth then you have a 'PhotoBooth' folder which is in the file system (under the current users 'Pictures' folder) and is visible in iMovie.
    Now if I create a folder on the same level as the 'PhotoBooth' folder (ie again under the active users Pictures folder) then iMovie cannot see it but if I create a folder within the 'PhotoBooth' folder then iMovie can see it... I hope this makes sense.
    So my question is, how do you create a folder in the file system which is visible from iMovie? or how do you add custom folders to the Photographs window in iMovie?
    Sadie.

  • How do I create a hyperlink to another file?

    How can I create a hyperlink to another file on my Mac?

    Do you really mean "Hyperlink" as in a web page link to your file?
    Or do you want a Mac OS X Alias icon placed in a different folder or on your desktop to a file?  Hold Command-Option keys while dragging the file to a new folder, will create an Alias.
    Or perhaps a Unix Symbolic Link (similar to a Mac OS X Alias, only different).  This is done from a Terminal session using "ln -s /path/to/your/file /path/to/folder/where/symlink/to/be/placed"

  • How do I Create a Hyperlink to other text within same email?

    I want to use Mail to send out Newsletters.
    Content section would contain hyperlinked text to each section (or Heading in PC world) below.
    How do I create a hyperlink to text within the same email?
    It's not hard to do in the PC world, how about the Mac world?
    I bought the book "Mac OS X 10.5 (ISBN: 978-0-321-50263-6) and it does not help with this matter but I've also asked the question at www.ExplainMyBook.com because I thought the book "Mac OS X 10.5 Leopard" might help me out.

    not possible AFAIK. Mail html capabilities are pretty rudimentary and this is one of the things it can't do. You might be able to achieve it if you create an html file with such internal anchors in a some html editor, then open that file in safari and embed it into an outgoing email from there. i couldn't make it to work though when I tried.
    You should probably stick with a different email client if you want things like that. I know Thunderbird can do it for example.

  • How do I create a hyperlink (youtube) in powerpoint

    How do I create a hyperlink (to youtube) in Powerpoint ( Mac Book Pro)

    In Captivate you do this by adding an interactive object (e.g. button or click box) and then setting the Action > On Success option to Send e-mail to.
    Specify the email address in the field provided.

  • How do i create a hyperlink in adobe illustrator

    how do I create a hyperlink in illustrator?

    You can create hyperlinks using slices and Save for Web.
    Mylenium

  • How do i create a hyperlink in Captivate 4?

    How do I create a hyperlink in Captivate 4? I tried using a clickbox set to 'open url...' but that is not working when I publish the project.
    What am I doing wrong?

    In Captivate you do this by adding an interactive object (e.g. button or click box) and then setting the Action > On Success option to Send e-mail to.
    Specify the email address in the field provided.

  • How do you create Busines transa in cash journal ex. in Business transactio

    Hi experts,
    I have one problem ie.How do you create Business Transaction in cash journal example in Business Transaction.
    with Thanks,
    Devendra.

    Hi,
    To create business transaction for Cash Journal, use Tcode FBCJC2. Its a configuration activity.
    From 4.7 onwards SAP does not allow the creation of business transaction directly from cash journal.
    Regards,

  • How do you create a save as default folder for MP3 files used Captivate text to audio voices files?

    How do you create a save as default folder for MP3 files used Captivate text to audio voices files?

    Hi Ed
    Thank you for contacting me, however I already know how to save text to
    audio files via timeline using the Export feature.
    So my question was not entirely clear and I apologize for that.  To explain
    further, whenever I save a text to audio file, captivate takes me to a
    default save as folder where I then have browse back to my production
    folder where I am keeping all my Txt to Aud files.  This is very tedious
    process when you have alot of files to save.  So my question was is there a
    way to configure captivate so I can make my production folder the default
    file for whenever I save a Txt to Audio file through Export feature that
    the system automatically takes me to that production folder, and I am
    spared the long tedious process of saving the file manually to the
    prodcution folder I want.
    I have copy the pathway to the production folder in the URL filed in the
    Save As dialoge box and that workaround as cut the work down but I still
    have to paste that URL field to point the file to the right folder. So it
    would be nice if I could do everything automatically.  Microsoft makes this
    capability in their MS Office applications, so I was thinking Adobe might
    do the same thing.  Your help with this would be appreicated,
    Thanks
    Merrill Roberts
    Sr. Training Specialist
    SunGard Availability Services
    Direct 925-831-7730
    Mobile:415-215-9280

  • How do you create a podcast playlist and get all unplayed podcasts copied to it?

    How do you create a podcast playlist and get all unplayed podcasts copied to it?

    Creat a Smart Playlist in iTunes (File -> New Smart Playlist) that looks like the following:
    Once you have successfully done that you can set it up to sync to your iPod Shuffle from under the Shuffle's Podcast configuration tab/pane in iTunes.
    B-rock
    B-rock

  • How does labview create a hyperlink in a web page?

    Hi
    I was wondering, how does labview create a hyperlink in a web page?
    Thank you.

    Hi,
    What do you wish to do?
    The most primitive way is to generate a .HTML file.
    Type your HTML codes (Using string constant) and save it using "Write Chars To File.vi" using a filename with extension .html
    Hope I am addressing your question.
    Cheers!
    Ian F
    Since LabVIEW 5.1... 7.1.1... 2009, 2010
    依恩与LabVIEW
    LVVILIB.blogspot.com

  • How do you create a new apple id on the iphone

    how do you create a new apple id on the iphone 4?

    Why do you want to do that?

  • How would you create a read/display only applicaiton montior role for SRM

    Hello,
    I was hoping to get some insight on how to create a display/read only SRM Application monitor role.  This role would be used by our Service Desk to perform basic trouble shooting before escalating.  Currently in our system it is tied into a tab named SAP Administration and has the capability of doing more than read.  How do you create a read version of this to only display the application monitoring in read mode? We currently have an SRP role that has the followiing auths below.  Would a EPP portal role need to be created and if so how>  Thank you for any assistance.
       Manually   BBP Component                                                BBP
              Manually   SRM: General Access Authorizations in EBP                    BBP_FUNCT
               Manually   SRM: General Access Authorizations in EBP                    T-SD59003000
                 Function in SRM (for Authoriza MON_ALERTS                                                                  BBP_FUNCT
    - Todd

    Hello,
    I was hoping to get some insight on how to create a display/read only SRM Application monitor role.  This role would be used by our Service Desk to perform basic trouble shooting before escalating.  Currently in our system it is tied into a tab named SAP Administration and has the capability of doing more than read.  How do you create a read version of this to only display the application monitoring in read mode? We currently have an SRP role that has the followiing auths below.  Would a EPP portal role need to be created and if so how>  Thank you for any assistance.
       Manually   BBP Component                                                BBP
              Manually   SRM: General Access Authorizations in EBP                    BBP_FUNCT
               Manually   SRM: General Access Authorizations in EBP                    T-SD59003000
                 Function in SRM (for Authoriza MON_ALERTS                                                                  BBP_FUNCT
    - Todd

Maybe you are looking for

  • How to make form field transparent?

    I would like to change the blue color of the fields to transparent. How can I do it?

  • Flash Install on pc

    I've got my new win7 computer with chrome, but I need flash on my actual PC to run a few processes. Unfortunately, the downloader is only recognizing that I have the flash plug-in for chrome and doesn't let me get a desktop/pc version of flash. Ideas

  • ERROR:MapLib:973 - Tri-state buffers are not supported in this architecture.

    Hi, I face a ERROR:MapLib:973 problem with inout port in a pcore component. I need ton instantiate an inout port at the top level to communicate wih my peripherical. This inout port is driven by an XPS IP core (pcore). The .mpd is  : PORT fdata = "",

  • Wifi access for tungsten E2

    I need to select a internet service provider for access.  I'm clueless where to begin. Should I go with the satellite wildblue.net who provides service to my home computer or something like boingo for 9.95/month? Post relates to: Tungsten E2

  • What do I need to do to see twitter widgets?

    When I create a twitter widget after logging into my twitter account, it doesn't preview when using Firefox. If I log on with other browsers it is there. Is there a setting in Firefox that is preventing me from seeing it?