Best way to include 1-800, 866, 877, 888 into Device/line approach to CSS

I am running Call Mgr 4.1.3. Due to the number of small remote sites that we are expanding to, I have been using the Device/Line approach to Class of Service to minimize the number of CSSs and PTs. I used the textbook method of defining BlockLocal, BlockLD, BlockIntl, Block nothing. My LongDistance Translation Pattern is 9.1[2-9]XX[2-9]XXXXXX. This blocks 800, 866, 877, and 888 in my BlockLD partition. What is the best way to include these 8xx series toll free numbers into the Device/Line method so that they are included into the COS that allows local calling? My guess is that in the 9.1[2-9]XX[2-9]XXXXXX translation pattern assigned to the BlockLD partition, I would add 9.1800XXXXXXX, 9.1866XXXXXXX, etc, translations and click "route this pattern" and associate it also with the BlockLD partition.
Is that the correct approach - or is there a better approach? Thank you.

Thank you so much for the fast reply Preran. But for me the tricky part is to implement the html code from the sample page into actions within Edge and to those images I want to be affected.
The html-code on the sample file is;
<div id="cubeCarousel">
    <div id="cubeSpinner">
        <div class="face one">
             <img class="img_slider active" src="img/black.jpg">
        </div>
        <div class="face two">
            <img class="img_slider" src="img/blue.jpg">
        </div>
        <div class="face three">
            <img class="img_slider" src="img/purple.jpg">
        </div>
        <div class="face four">
            <img class="img_slider" src="img/red.jpg">
        </div>
    </div>
        <div class="nav">
            <div class="left arrow"></div>
            <div class="right arrow"></div>
        </div>
</div>
What I don't understand is how write this code in Adobe Edge so the jQuery scripts connect to images in my Edge composition.
Is there any guidelines for the syntax and how I should write these lines in Edge, or any tutorial that show this? Or do you have anu code example that I can use as "dummy"?
BR
/Bengt

Similar Messages

  • What's he best way to include Adobe PDFs on my blog?

    What's he best way to include Adobe PDFs on my blog?
    I create worksheets as a teacher and would like to share them from my blog. Currently I am linking to Scribd etc to share PDFs. If I upload the worksheets as an image is there a way to adjust the size/resolution of the PDF for easier viewing? 
    Thanks!

    PDFs are just files. Can you upload files to your blog space? If yes, just upload the PDFs then, in a blog entry, provide the web link (URL) for each file (PDF).
    Or, place the PDFs into your free acrobat.com "files" storage (5GB free). You have one as you have an Adobe ID (needed to make your post here eh).
    https://cloud.acrobat.com/
    You can have acrobat.com provide a "share" link to the PDF. Place that into a blog entry.
    Or - same idea as above (use a "file share" service) -- Microsoft's OneDrive, Adobe's Creative Cloud, Google drive, DropBox, others ...
    Be well...

  • What is the best way to include an xml file in JSP?

    I have a jsp page that I need to include an xml file. The xml file
              uses an xsl to render the file. What is the best way to include the
              xml file and still maintain the structure of the style sheet?
              Thanks
              Jennifer
              

              The best way is using the tag lib. If you cannot, but you can use JAXP, you can
              try
              javax.xml.transform.Transformer.transform(Source xmlSource,
              Result outputTarget)
              throws TransformerException
              You construct the transformer with you xsl, use you xml file or DOM to form xmlSource,
              and use JSPWriter "out" to form outputTarget (StreamResult). But if your JSP page
              generates the xml itself, tag lib is the only way.
              [email protected] (Jennifer) wrote:
              >[email protected] (Jennifer) wrote in message news:<[email protected]>...
              >> I have a jsp page that I need to include an xml file. The xml file
              >> uses an xsl to render the file. What is the best way to include the
              >> xml file and still maintain the structure of the style sheet?
              >>
              >> Thanks
              >>
              >> Jennifer
              >
              >Or is there a way to parse the xml file with the jsp page to display
              >the information. I cannot use the Java Standard Tag Libraries as the
              >version of iplanet we are running does not support the JSTL
              >
              >Thanks
              >
              >Jennifer
              

  • What is the best way to export the data out of BW into a flat file on the S

    Hi All,
    We are BW 7.01 (EHP 1, Service Pack Level 7).
    As part of our BW project scope for our current release, we will be developing certain reports in BW, and for certain reports, the existing legacy reporting system based out of MS Access and the old version of Business Objects Release 2 would be used, with the needed data supplied from the BW system.
    What is the best way to export the data out of BW into a flat file on the Server on regular intervals using a process chain?
    Thanks in advance,
    - Shashi

    Hello Shashi,
    some comments:
    1) An "open hub license" is required for all processes that extract data from BW to a non-SAP system (including APD). Please check with your SAP Account Executive for details.
    2) The limitation of 16 key fields is only valid when using open hub for extracting to a DB table. There's no such limitation when writing files.
    3) Open hub is the recommended solution since it's the easiest to implement, no programming is required, and you don't have to worry much about scaling with higher data volumes (APD and CRM BAPI are quite different in all of these aspects).
    For completeness, here's the most recent documentation which also lists other options:
    http://help.sap.com/saphelp_nw73/helpdata/en/0a/0212b4335542a5ae2ecf9a51fbfc96/frameset.htm
    Regards,
    Marc
    SAP Customer Solution Adoption (CSA)

  • Best way to include javascript-script into different struts-pages

    Hi,
    I'm running a struts-based webapplication using the tiles-templates for my layout. Now I have to use some javascript-code for a pop-up window and another javascript for tracing on multiple pages but in different combinations. As I do n't want to copy-paste it on every page, but put it on a single place for better maintenance I'm wondering what would be the best way to do this together with the struts-logic.
    I thought about the following options:
    1.) Using the "template:put" feature like this:
    <template:put name='js' content="/myJavascripts.jsp"> I don't think this would be a good option, as I always have to include the whole javascript and I cannot distinguish between my two different javascripts
    2.) Using the template:insert feature like this:
    <template:insert template="/myJavascripts.jsp"/>. This is a lot better, as I can split my two javascripts into two different files and can always decide, which one to include with the template:insert tag. But I'm not sure, if this is conforming with the struts-concept, as I do not use any template:put or template:set tags
    3.) Using simple jsp:include or <%@ include ... %> tags.
    This would be the easiest way to include my pages with <%@ include file='/myJavascripts.jsp' %>. Same advantages like template:insert but I don't need the additionally features of the template:insert-tag. But still the same question: is this the concept of struts? Or will I become any difficulties with this concept later??
    Any recommendations or further ideas are greatly appriciated.
    Thanx for your help
    Thomas

    Getting PDFs to download is fairly easy and the method is described here.....
    http://www.iwebformusicians.com/WebMusic/PDFs.html
    To get multi page docs to display in the browser requires the use of Google Docs viewer, ISSUU or some such thing....
    http://www.iwebformusicians.com/PromoPage/ISSUU.html
    Safari is the only browser I know of that will display PDFs in an iFrame without a plugin.

  • Best way to include appendices to pages document

    I am trying to transition from using MS office (for over a decade now) to using the Apple suite of apps.
    I am in grad school so I write a lot of papers. I am working on one now that requires appendices at the end. I am working on the paper in sections right now (main body, appendices 1, 2, 3, etc..) and was curious what the best way to do something this is in pages?
    Can you create different sections within one one document instead of simply copying and pasting the appendices at the end of my document? That would be a big hassle, going back and forth between different files. Like I said, I would like to be able to keep them all on one document.
    Any ideas? Do you think it's perfectly doable in grad school to use only Pages for your word processing needs? (I've had to many crashes with Office on my mac, and am ready for the full change over.) Any advice, or suggestions?

    Rick
    I am not a real user of Word but I can give you some of the obvious things that Word has that Pages does not.
    1. More layouts: Draft/Web/Outline/Print/Notebook/Publishing
    2. A real desktop in Publishing that you can move objects to and off that surrounds the page
    3. Themes which set basic fonts and color schemes
    4. Non-printing characters
    5. Much bigger collection of Objects/Shapes
    6. Sophisticated diagramming tools (SmartArt)
    7. ClipArt
    8. Symbols palette
    9. Libraries
    10. Citations
    11. Scrapbook for clippings
    12. Bilingual dictionaries with translation service
    13. Projects, a way of co-ordinating your files across MsOffice software including Entourage to merge/create bulk email
    14. Templates for tables
    15. WordArt a way of altering text decoratively
    16. Autofit
    17. Macros
    18. Labels/Envelopes/Letter Wizzard/Pre-Printed
    19. Format Painter to copy apply formatting
    20. Inbuilt Sorting
    21. A Work Menu
    22. Multiple (customizable) Toolbars
    23. Much bigger and extendable Autotext feature
    24. Much bigger selection of Auto-shapes
    25. Line Numbering
    26. Much bigger and more flexible T.O.C.
    27. Much wider choice of Hyperlinking both within and between documents, email and web pages
    28. Much bigger selection of languages
    29. More flexible document protection
    30. Customizable keyboard
    31. Document tiling
    32. Audio notes
    33. Proofing tools
    34. Much bigger preference choices
    35. 3D objects
    36. Multiple Master pages
    37. Varied page orientation and sizes within the same document
    38. Ability to swap images
    39. Hyphenation control
    40. Open XML
    41. Automator support
    42. Wider range of document formats
    43. Greater compatibility with PC formats
    44. Direct link to user community
    45. Autosave/Recovery
    This was what a quick browse revealed. I suggest you try both sets of applications and explore, as I have done, for things that you find interesting.
    Peter

  • Best way to include mathematical formulas?

    Hi all,
    my primary interest in possibles uses of iBooks Author are textbooks with heavy load of mathematical formulas. Without serious testing there appear some ideas how it may work.
    Folks, did anyone made experiences (especially with the final appearance on the ipad) including formulas both inline the main text and in individual paragraphs? Any idea about automatic referencing/numbering?
    Any comments are very appreciated. Thanks for your help!
    hwg_ros

    I don't know which is the best way but there are a couple that may work for you. 1 - check out the movie on this demo page (a description of how it was created is included) and 2-read Tutorial #18 and this example of the method.
    OT

  • Best way of including timing in a waveform graph?

    Hello all,
    I've been toying with a number of different ways to do this, but so far I haven't had all that much luck. I've posted a picture so you can see what's going on. All I have is 4 plots that need to be plotted with accurate timing information on the x-axis. I guess I'm just wondering what the best way to go about this is. This method seems to be the most cluttered and messy that I've done, but is the only one I've gotten to have the actual correct timing info on the graph. I would put a wait in the loop, but I need to acquire this data as fast as possible. Thanks for any help!
    Geoff
    Attachments:
    Graphing Test.jpg ‏74 KB

    The display options you have chosen are OK on their own.
    If you're looking to get more speed out of the code, try only graphing the data every 10 iterations or so. You can save the processed data (your waveforms) in a shift register where they can then be appended every 10 iterations.
    This will obviously not clean up your code. The best way to clean up your code might be to simply throw the conversions you're performing into a sub-vi. Or create a time input for your "meters" VI and have thr processing done there with correctly-scaled values being outputted.
    Hope this helps
    Shane.
    Using LV 6.1 and 8.2.1 on W2k (SP4) and WXP (SP2)

  • What's the best way to include many files into a website?

    I have a several hundred documents that I would like to load onto my website. I'm trying to find a faster way than hyperlinking them all one by one. Right now they are in pdf format but that can change. I'm hoping for the end result to be one page (possibly with subpages) with the different links for the documents on them. The visitor doesn't necessarily need the ability to download them, just the ability to view them. Is there a faster way to bulk or batch load multiple files into a site? Thanks in advance.

    Getting PDFs to download is fairly easy and the method is described here.....
    http://www.iwebformusicians.com/WebMusic/PDFs.html
    To get multi page docs to display in the browser requires the use of Google Docs viewer, ISSUU or some such thing....
    http://www.iwebformusicians.com/PromoPage/ISSUU.html
    Safari is the only browser I know of that will display PDFs in an iFrame without a plugin.

  • What is the best way of converting everything in a result set into a string

    hello folks
    What do you think is the best way of converting everything in a resultset into a string???
    At the moment I'm using
    rs.getString(i);
    everywhere (no matter if the underlying datatype is a date or whatever..) it converts automatically evertything expect NULL into a valid string.
    Are there better (simple to use..) ways?

    I don't see a big switch construct. How about trying the following:
    Call this method from your original method by passing the resultset obtained.
    public String[] convert(ResultSet rs) {
         int col = ((ResultSetMetaData) rs.getMetaData()).getColumnCount();
         String[] record = new String[col];
         int i=0;
         while(rs.next()) {
              if(rs.wasNull()) record[i] = new String();
              else record[i] = rs.getString(i);
              i++;
         return record;
    iDriZ

  • What is the best way to create a Scheduler app for ALL mobile devices?

    I've used indesign to make apps before, (more like interactive/digital publications) and now I'm trying to make a scheduling app. What's the best way for me to accomplish this since it's a little more intricate? Indesign + DPS?? Any other recommendations?

    Skipping InDesign & using HTML5/something such as Appcelerator's Titanium would be your best bet.
    If you're set on using DPS, however, you'll need to make multiple multi-folio apps, single issue apps aren't supported iPhone or Android. DPS folios are also not responsive, although in some cases renditions will scale to support different devices.

  • Best way to sync contacts and calendars to non apple devices

    Hi. I need to be ale to share my calendars and contacts so I can access them on non apple devices.
    I've tried using google but find the syncing of contacts from osx address book to be really unreliable. Does anyone have any advice on the best way to do it?

    If you want a more open system use Google instead of iCloud, but iCloud is supported on OSX, IOS, Windows, and with the purchase of a few apps can be made to work (although not with all features) on Android systems.
    I have no idea if it will work on a Windows phone.

  • What is the best way to import my VHS or Laserdisc Movies into iTunes??

    What is the best way for me to import my vhs movies and laserdisc movies into itunes so I can store them for my family to keep??
    Any suggestions would be great.
    If I get them into itunes I would like to be able to view them on my Apple tv via the computer.
    Can this be done???

    csnolan wrote:
    What is the best way for me to import my vhs movies and laserdisc movies into itunes so I can store them for my family to keep??
    I know this is an old thread, but I've been researching ripping my Laserdiscs to my Mac.  Did you ever get it worked out?  I've been reading here about the Grassvalley ADVC300 to capture and convert analog video to digital.  Still learning about it.  Also, here's a wiki that has a lot of information about ripping laserdiscs:
    http://www.noobelodeon.org/w/How_to_Rip_Laserdisc

  • Best way to get 3/4 inch tape material into FCP?

    I have several 3/4 inch tapes I would like to edit on my FCP system.
    I can only Capture through firewire.
    Is it better to transfer the 3/4 material to DVD or create QT files?
    (I can create the QT files on an Avid Adrenaline)
    I need to keep the material at the best quality.
    Thanks.

    OK, I'm back now. Let's get to the first part of your question... and some tips.
    To start with let me clear up some semantic errors that I may have inadvertently created. When I say "up-rez" I'm not talking about it the way you would use the term in print production and Photoshop. I was using the term "up-rez" as a more generic term meaning a general improvement in picture quality and upgrade of color space.
    Now, to the improvement I have seen by taking my DV source material into a sequence using PhotoJPEG 75% or DVCPRO50 codecs with a 4:2:2 color space.
    First, as a baseline, to all of my DV clips in the timeline I add the "4:1:1 Color Smoothing" filter as the first in line, and the final filter is always "Broadcast Safe" set to the lowest preset of "100" or "Extremely Conservative." If I use any color correction filter I always use it after the color smoothing and before "Broadcast Safe." Unless it works better using a different order, but this is where I start. However "Color Smoothing" is almost always the first filter.
    It is the "Color Smoothing" filter that provides the extra chroma data that is used by the 4:2:2 codec to "improve" the color after rendering. Now understand, this is an interpolation process. The computer is guessing at what the extra color data should be. But in most cases where my goal is to provide "pleasing color" the computer usually makes some pretty good guesses.
    Especially if you use color correction to remove any exising color casts from the clips in question. If you have a definite color cast in your original clip, you may find it necessary to color correct that cast out, then add the Color Smoothing, and then do your "primary" or "balancing" color correction by adding that filter a second time in the list to get things to look right. Confused yet? Don't be - if you have a good calibrated video monitor, then you can really trust your eyes a lot more than you might think. The point is, if you present the "Color Smoothing" filter with reasonably good color when it looks at the DV clip, then it will do a good job of "enhancing" your color after you render with a 4:2:2 codec.
    Oh yeah, make sure your rendering quality level in the "Video Processing" tab of the sequence "Settings" is set to the best you have. FCP 4.5 and FCP 5.x differ slightly in how they word this setting, but the intent is the same.
    So that's how I "improve" the color of a DV clip by taking it into a sequence with a 4:2:2 color space. I hope I explained it clearly enough.
    BTW - Nattress suggests using PhotoJPEG 75% over DVCPRO50 for content that comes from an analog capture. He says that an unintended but positive consequence of the "lossy" compression in the PhotoJPEG codec is to remove some of the latent analog noise from the video during final rendering and encoding. I had my doubts about this at first since the specs would suggest that DVCPRO50 is the best way to go. But after trying it out I must say that Graeme is dead-on with this. A lot of the minor video noise in the luminence and chroma that comes in with the analog video is removed pretty cleanly when you look at your final rendered digital video. So once again we learn that Graeme Nattress is "The Man."
    The truly scary thing is that among his peers in the community of this forum, Nattress is only one of several similar intellects. This forum is a gold mine for all of us FCP users. Nattress, Shane, Sheffield, and all the rest who I am probably making mad because I forgot to mention them -- wow! We couldn't afford to take classes from all these guys, and here they give it all for free. I hope everyone appreciates the value of the resource we have in this forum. I certainly do. Belated and future thanks to all you gurus out there.
    Anyway, back to your analog capture issues. Here's some tips from my own experience. When doing my initial capture from analog via the A-to-D converter...
    1) I always find I need to boost the saturation levels a bit. Use a vectorscope to keep track of this, but my analog source material always seems to come in 20 to 25% light in the chroma value. Boosting the saturation setting a little bit in the convertor fixes this.
    2) I know I'll get some arguments about this one. In my ADVC-300 I have a "Sharpening" setting, with "0" being no enhancement, "-100" being totally blurred, and "+100" being totally sharpened. I find that adding a significant amount of "sharpening" to my capture settings really improves the quality of the analog input without leaving a lot of visible and unpleasant artifacts in the picture. So I always add between +15 and +35 of sharpening. Usually +25 works best so that's where I start.
    Now, understand that I find this completely counter-intuitive after my years of experience with digital image editors and scanning software like "Photoshop" and "Scantastic," and the generally complete uselessness of the vanilla "sharpen" tools for sophisticated image enhancement. But for some reason, with these tools in this environment, "sharpening" works wonders.
    The way it looks to me when I compare the "before" and "after" by switching the inputs on my video monitor is that the "after" picture looks like someone properly backlit the scene. The entire effect is to give that look of 3D depth to the picture that still photographers call "snap," and that I was taught to try to achieve by the guys who taught me TV lighting. When used in a subtle and appropriate fashion, the effect of this "sharpening" filter is stunning. But this is a matter of personal taste. To my eye the sharpened picture looks better, but you may disagree. Like I said, it's a matter of taste.
    I must add that I am unable to duplicate these results by adding FCP's sharpening filter to an already digitized clip. This says to me that either you need to sharpen before digitizing, or the sharpening algorithm in my Canopus ADVC-300 is way better than the FCP filter. I don't know which it is, but I really don't need to know, practically speaking. It's practical results we are after here, so I can live with the mystery.
    3) Always go back to the earliest generation of analog source tapes you can find. If this means re-editing the program, then be prepared to do it if max quality is your goal.
    In 3/4-inch U-matic format (and especially with 1/2-inch S-VHS or lesser formats) the difference in picture quality between a third-generation dub and a second-generation edit master is immense. Look at the degradation of edge definition and the increase in noise between the generations. It's huge. It's even more striking if you compare the first-generation master tapes with a distribution dub or duplication master.
    Conversely, don't even waste your time if you have a fourth-gen or later distribution dub. If you are dealing with a late generation tape source, then none of our digital and computer editing or enhancement wizardry will matter a hoot. Garbage in equals garbage out. So if you really care about quality, be prepared to go back to the earliest generation tape you can find, even if that means re-editing the program from the first-gen shooting masters.
    OK, that's all I have for you right now. Please post any additional questions or any comments you have on my missives and I'll be glad to get into this further - at least until you suck me dry of usable info.
    Let me leave you with this. It's funny how viewers don't seem to mind poor video quality when watching a late-gen dub on a VHS player. But when you offer them a DVD, they expect to see feature film or broadcast TV quality, and if they don't see something close they won't watch the program with the same degree of receptivity.
    In my experience, picture quality really matters in its effect on the communication process, and that's why we should all take it seriously. Worrying about quality is not a purely technical exercise important only to technicians. Poor audio and poor video quality will negatively impact the communication process. That's why we care about quality.
    After all, it's our business - the COMMUNICATION business. That's the perspective I try to maintain in my work.
    Good Luck in your endeavor. Please let me know how it works out. My e-mail address is in my posted profile.

  • Best way to include a jpg file in a project (where to locate the file)

    Inside of my main VI - I am "building a path to the current VIs" directory where I have a jpg file. This jpg file displays fine when running this VI.  To do this I get the current path, strip the VI name and then add the jpg name to the path.
    Now when I build an exe file and run it the jpg is not displayed.  In the build specification it appears to force the jpg file to be in the support (or data) directory.   Because of this it can no longer find the jpg when running in exe form.  I also notice that the path returned when running a exe includes the VI name as well as the exe name.
         My question is what is the correct way to set up a path to this jpg (and perform an exe build) that will work both when I run the VI normally and when I use it as an exe?

    See e.g.: http://forums.ni.com/ni/board/message?board.id=170​&message.id=270985#M270985
    Another option would be to add the image data as a diagram constant inside the VI if it the image should be an integral part of the VI. .
    LabVIEW Champion . Do more with less code and in less time .

Maybe you are looking for

  • Attachments not saving to Downloads

    For some reason when I push the "save" button to send attachments to the Downloads folder they are not going there. I can open attachments fine, and always just saved them to the Downloads folder on the dock - and opened them from there, but now they

  • Can't install OS

    Just assembled new system. K8N Neo4 Platinum board (non-SLI), 1024 mb Corsair Xms Platinum ram 2 X 512, 400 mhz. XFX 6600 GT vid card 128 mb DDR3, 1 X 160 gb SATA HD, Ultra 600 watt PSU. Will boot from Windows CD, won't allow pressing of F6 at starup

  • When I iMessage on my iPad my email pops up, how do I change that?

    How do I hide my email in my iMessages

  • The latest email frozzen in INBOX in MAIL

    I can return and access the other boxes (draft, trash etc.) but i can not see any new mails because the latest email i have open are totaly frozzen on the screen ( can not scroll up or down or delete it) what to do ??

  • Mail quits when trying to open one sent message

    I finally deleted it with a few others, holding down the cursor. But when I tried to open this one out of eight new messages, it kept quitting. It was from a regular sender, so my instincts tell me it might have been tainted.