Comunidad de diseño web y desarrollo en internet online

Pasar Paginas Con botones En PageFLip2.2

Citar            
MensajeEscrito el 24 Oct 2008 04:46 am
Estimados amigos estoy haciendo un catalogo con este asombroso efecto de page flip, tengo un problemita ... quiero agrgarle unos botones para hacer la navegacion entre paginas con estos y tambien con el mouse. Si alguien puede ayudar please se agradecere ...

Por iviydinet

45 de clabLevel



Genero:Masculino  

firefox
Citar            
MensajeEscrito el 24 Oct 2008 10:41 am
Mira este post, exactamente el comentario que saldrá.

Por elchininet

Claber

3921 de clabLevel

17 tutoriales

Genero:Masculino  

Front-end developer at Booking.com

firefox
Citar            
MensajeEscrito el 24 Oct 2008 03:03 pm
y si te paso el FLA. lo checarias ... por que he buscado dentro del codigo pero aun no logro entenderlo ...

Por iviydinet

45 de clabLevel



Genero:Masculino  

msie7
Citar            
MensajeEscrito el 24 Oct 2008 03:08 pm
@iviydinet, que parte no entiendes de mis palabras:

Debes revisar la documentación de tu componente como tal


No se hace nada con revisar el código, sino me das un link a la documentación o al menos el sitio de los creadores, dificilmente pueda saber que métodos y propiedades usa tu pageflip.

Por elchininet

Claber

3921 de clabLevel

17 tutoriales

Genero:Masculino  

Front-end developer at Booking.com

firefox
Citar            
MensajeEscrito el 24 Oct 2008 03:47 pm
Chequea esto please ....

[color=]/*

PageFlip - Help ----------------------------------------------------------

frame1: Self loader
(never export items to the first frame, and copy one instance
to the layer exported/frame4 of every exported items)
//sorry for my bad english...
frame4: layer exported: here is all the exported items
frame5: here is the main code.
frame6: the main code is activated here.


- This code is opensource (don't buy it from anywhere)
- This script don't support dynamic content loading!!!
- If you have an animation on a page, it must be controlled by the _global.mcnt counter!
- Buttons, or events can be enabled/disabled by a simple script showed in templates!



adding pages: ------------------------------------------------------------

you have template pages in the library:
page_templateLEFT
page_templateRIGHT

If you want a new page, DUPLICATE on of the templates (depending on what side your page will be).
Edit the content of the layer "content".
Export your new page (Library/linkage), and don't forget to uncheck "Export in first frame",
then copy an instance to the exported items! (Main timeline/Layer: exported/ frame 4)
The last step, is to change the page data (layer actions/frame5/from line26):

add a new line:
addPage("yourPagesExportName"); or
addPage("yourPagesExportName",true); if you want to enable tearing of it!

Always insert pages in pair!!!



variables: ----------------------------------------------------------------

removedPages array hold page numbers of removed pages (teared off).
page hold the current left page's number.
at the beginning you can set page variable to the page you want to start the book with it.
canflip it's a variable. setting its value to false disables flipping



functions: ----------------------------------------------------------------

gotoPage( destinationPageNo, skip ); quick jump to the page number: destinationPageNo; values = 0-maxpages;
skip: boolean; if true, pages will be skipped to the destination!
autoflip(); start autoflip (direction is calculated from _xmouse)
removeML(); REMOVES THE MOUSE LISTENER!!!!
must called if you want to unload the pageflip, then load an other!



PageFlip v2.13 coded by Macc/iparigrafika
[email protected]

if you have any idea to discuss it in this help topic,
or you think my english is so bad that you would rewrite it,
just send me a mail.

Donations are welcome.

*/
[/color]

Por iviydinet

45 de clabLevel



Genero:Masculino  

firefox
Citar            
MensajeEscrito el 24 Oct 2008 06:00 pm
@iviydinet, lo que posteas parece estar dentro del documento flash, pues resulta que esa es tu documentación...
Si lo que te sucedía era el problema del inglés lo hubieras aclarado desde el principio: :)

gotoPage( destinationPageNo, skip ); quick jump to the page number: destinationPageNo; values = 0-maxpages;
skip: boolean; if true, pages will be skipped to the destination!


Código ActionScript :

//---Este código hará que tu libro vaya a la página 10 pasando las páginas una a una
gotoPage(10, false);

//---Este código hará que tu libro vaya a la página 5 pasando sólo una página
gotoPage(5, true);

Por elchininet

Claber

3921 de clabLevel

17 tutoriales

Genero:Masculino  

Front-end developer at Booking.com

firefox
Citar            
MensajeEscrito el 25 Oct 2008 05:39 pm
Amigo, eso puede funcionar cuando el boton se encuentra dentro del movie(Pagina) pero como se puede hacer para que funcione fuera ... como en esta paginita que estoy haciendo pa mi revista ... chequea http://www.cpi21.com/~gourmet2

En la parte inferior derecha en el recuadro negro habran 2 botones que permitiran avanzar en la paginas ... ah y es posible agreagrle numeros?? osea si presiono el boton que los numeros que estan se refrensquen e indiquen en que pagina estoy ... Es posible?

Ah y como hago pa que la pagina no sea tan pesada ... Es posible cargar SWFs externos?

Gracias

Por iviydinet

45 de clabLevel



Genero:Masculino  

firefox
Citar            
MensajeEscrito el 25 Oct 2008 05:52 pm
Según la documentación de tu componente es una función, por lo que no tienes que estar dentro de la página para llamarla, desde cualquier lugar la puedes llamar incluso desde botones fuera de la página.

Lo segundo lo puedes lograr si trabajas con una variable que sea la página actual y los botones lo que hagan sea incrementar la variable e ir a la página indicada y por último actualizar algún campo dinámico con el valor de esta.

Lamentablemente con el pageflip que cuentas tendrás que tener todas las páginadentro del SWF sugún su documentación:

adding pages: ------------------------------------------------------------

you have template pages in the library:
page_templateLEFT
page_templateRIGHT

If you want a new page, DUPLICATE on of the templates (depending on what side your page will be).
Edit the content of the layer "content".
Export your new page (Library/linkage), and don't forget to uncheck "Export in first frame",
then copy an instance to the exported items! (Main timeline/Layer: exported/ frame 4)
The last step, is to change the page data (layer actions/frame5/from line26):

add a new line:
addPage("yourPagesExportName"); or
addPage("yourPagesExportName",true); if you want to enable tearing of it!

Always insert pages in pair!!!

Por elchininet

Claber

3921 de clabLevel

17 tutoriales

Genero:Masculino  

Front-end developer at Booking.com

firefox
Citar            
MensajeEscrito el 25 Oct 2008 06:51 pm
Existe alguno donde pueda cargar SWFs externos??

Por iviydinet

45 de clabLevel



Genero:Masculino  

msie7
Citar            
MensajeEscrito el 26 Oct 2008 01:31 pm

Por elchininet

Claber

3921 de clabLevel

17 tutoriales

Genero:Masculino  

Front-end developer at Booking.com

firefox
Citar            
MensajeEscrito el 05 Mar 2009 01:52 pm

elchininet escribió:


Código ActionScript :

//---Este código hará que tu libro vaya a la página 10 pasando las páginas una a una
gotoPage(10, false);

//---Este código hará que tu libro vaya a la página 5 pasando sólo una página
gotoPage(5, true);


Al fin encuentro lo que buscaba ^_^

Por cierto una pregunta, ¿qué código hay que poner para que un botón simplemente pase a la página siguiente?. El cógigo "gotoPage(5, true)" pasa directamente a la página 5, pero ¿cómo sería para simplemente pase a la siguiente página? he probado varias opciones pero no me sale :(

Por Kawa

1 de clabLevel



Genero:Masculino  

chrome
Citar            
MensajeEscrito el 06 Sep 2012 10:14 pm
Hola, me encuentro modificando una versión del Page Flip, con la cual se puede cargar el contenido externo, ya logre modificar el tamaño de las paginas y la escala de las mascaras para que se vea bien el efecto, mi duda es ¿Como puedo añadirle botones para que vaya a la siguiente pagina? y/o añadir un campo donde escriba el numero de pagina y me lleve a dicha pagina???? Ya vi en la parte de arriba el código para el botón pero no se si se coloca así nada mas en un botón o mas bien se tiene que crear un objeto como movieclip que funcione como botón???? y cual seria la sintaxis de la función de estos botones???

Aquí les dejo el archivo original, para que lo tengan de paso y le puedan revisar y dar uso
http://dl.dropbox.com/u/100462961/FlipBook/pageflip_dinamic.rar

Por yamahid

4 de clabLevel



 

chrome

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.